import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sn
import requests as req
import json
%matplotlib inline
#importing all the possible extensions that will be useful for the project
In the cell below, gather all three pieces of data for this project and load them in the notebook. Note: the methods required to gather each data are different.
TA = pd.read_csv('twitter-archive-enhanced.csv')
#downloading the twitter images using the requests libary
url = 'https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv'
response = req.get(url)
response
<Response [200]>
# Saving the dwonloaded image files
open('image-predictions.tsv',mode = 'wb').write(response.content)
335079
#converting the tsv file into an accesible and readable file in notebooks
images = pd.read_csv('image-predictions.tsv', sep ='\t')
#viewing(testing the code) the file
images .head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
import tweepy
from tweepy import OAuthHandler
import json
from timeit import default_timer as timer
#importing the neccessary packages
# Query Twitter API for each tweet in the Twitter archive and save JSON in a text file
# These are hidden to comply with Twitter's API terms and conditions
consumer_key = 'HIDDEN'
consumer_secret = 'HIDDEN'
access_token = 'HIDDEN'
access_secret = 'HIDDEN'
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
#OAuthHander is used for authentication of password without exposing it .
api = tweepy.API(auth, wait_on_rate_limit=True)
# NOTE TO STUDENT WITH MOBILE VERIFICATION ISSUES:
# df_1 is a DataFrame with the twitter_archive_enhanced.csv file. You may have to
# change line 17 to match the name of your DataFrame with twitter_archive_enhanced.csv
# NOTE TO REVIEWER: this student had mobile verification issues so the following
# Twitter API code was sent to this student from a Udacity instructor
# Tweet IDs for which to gather additional data via Twitter's API
df_1 = pd.read_csv('twitter-archive-enhanced.csv')
tweet_ids = df_1.tweet_id.values
len(tweet_ids)
# Query Twitter's API for JSON data for each tweet ID in the Twitter archive
count = 0
fails_dict = {}
start = timer()
# Save each tweet's returned JSON as a new line in a .txt file
with open('tweet_json.txt', 'w') as outfile:
#The code above saves each tweet returned from the loop into a combined file called 'tweet_json.txt', which can be seen in the file directory.
# This loop will likely take 20-30 minutes to run because of Twitter's rate limit
for tweet_id in tweet_ids:
count += 1
print(str(count) + ": " + str(tweet_id))
try:
tweet = api.get_status(tweet_id, tweet_mode='extended')
print("Success")
json.dump(tweet._json, outfile)
outfile.write('\n')
except tweepy.errors.TweepyException as e:
print("Fail")
fails_dict[tweet_id] = e
pass
end = timer()
print(end - start)
print(fails_dict)
1: 892420643555336193
Fail
2: 892177421306343426
Fail
3: 891815181378084864
Fail
4: 891689557279858688
Fail
5: 891327558926688256
Fail
6: 891087950875897856
Fail
7: 890971913173991426
Fail
8: 890729181411237888
Fail
9: 890609185150312448
Fail
10: 890240255349198849
Fail
11: 890006608113172480
Fail
12: 889880896479866881
Fail
13: 889665388333682689
Fail
14: 889638837579907072
Fail
15: 889531135344209921
Fail
16: 889278841981685760
Fail
17: 888917238123831296
Fail
18: 888804989199671297
Fail
19: 888554962724278272
Fail
20: 888202515573088257
Fail
21: 888078434458587136
Fail
22: 887705289381826560
Fail
23: 887517139158093824
Fail
24: 887473957103951883
Fail
25: 887343217045368832
Fail
26: 887101392804085760
Fail
27: 886983233522544640
Fail
28: 886736880519319552
Fail
29: 886680336477933568
Fail
30: 886366144734445568
Fail
31: 886267009285017600
Fail
32: 886258384151887873
Fail
33: 886054160059072513
Fail
34: 885984800019947520
Fail
35: 885528943205470208
Fail
36: 885518971528720385
Fail
37: 885311592912609280
Fail
38: 885167619883638784
Fail
39: 884925521741709313
Fail
40: 884876753390489601
Fail
41: 884562892145688576
Fail
42: 884441805382717440
Fail
43: 884247878851493888
Fail
44: 884162670584377345
Fail
45: 883838122936631299
Fail
46: 883482846933004288
Fail
47: 883360690899218434
Fail
48: 883117836046086144
Fail
49: 882992080364220416
Fail
50: 882762694511734784
Fail
51: 882627270321602560
Fail
52: 882268110199369728
Fail
53: 882045870035918850
Fail
54: 881906580714921986
Fail
55: 881666595344535552
Fail
56: 881633300179243008
Fail
57: 881536004380872706
Fail
58: 881268444196462592
Fail
59: 880935762899988482
Fail
60: 880872448815771648
Fail
61: 880465832366813184
Fail
62: 880221127280381952
Fail
63: 880095782870896641
Fail
64: 879862464715927552
Fail
65: 879674319642796034
Fail
66: 879492040517615616
Fail
67: 879415818425184262
Fail
68: 879376492567855104
Fail
69: 879130579576475649
Fail
70: 879050749262655488
Fail
71: 879008229531029506
Fail
72: 878776093423087618
Fail
73: 878604707211726852
Fail
74: 878404777348136964
Fail
75: 878316110768087041
Fail
76: 878281511006478336
Fail
77: 878057613040115712
Fail
78: 877736472329191424
Fail
79: 877611172832227328
Fail
80: 877556246731214848
Fail
81: 877316821321428993
Fail
82: 877201837425926144
Fail
83: 876838120628539392
Fail
84: 876537666061221889
Fail
85: 876484053909872640
Fail
86: 876120275196170240
Fail
87: 875747767867523072
Fail
88: 875144289856114688
Fail
89: 875097192612077568
Fail
90: 875021211251597312
Fail
91: 874680097055178752
Fail
92: 874434818259525634
Fail
93: 874296783580663808
Fail
94: 874057562936811520
Fail
95: 874012996292530176
Fail
96: 873697596434513921
Fail
97: 873580283840344065
Fail
98: 873337748698140672
Fail
99: 873213775632977920
Fail
100: 872967104147763200
Fail
101: 872820683541237760
Fail
102: 872668790621863937
Fail
103: 872620804844003328
Fail
104: 872486979161796608
Fail
105: 872261713294495745
Fail
106: 872122724285648897
Fail
107: 871879754684805121
Fail
108: 871762521631449091
Fail
109: 871515927908634625
Fail
110: 871166179821445120
Fail
111: 871102520638267392
Fail
112: 871032628920680449
Fail
113: 870804317367881728
Fail
114: 870726314365509632
Fail
115: 870656317836468226
Fail
116: 870374049280663552
Fail
117: 870308999962521604
Fail
118: 870063196459192321
Fail
119: 869988702071779329
Fail
120: 869772420881756160
Fail
121: 869702957897576449
Fail
122: 869596645499047938
Fail
123: 869227993411051520
Fail
124: 868880397819494401
Fail
125: 868639477480148993
Fail
126: 868622495443632128
Fail
127: 868552278524837888
Fail
128: 867900495410671616
Fail
129: 867774946302451713
Fail
130: 867421006826221569
Fail
131: 867072653475098625
Fail
132: 867051520902168576
Fail
133: 866816280283807744
Fail
134: 866720684873056260
Fail
135: 866686824827068416
Fail
136: 866450705531457537
Fail
137: 866334964761202691
Fail
138: 866094527597207552
Fail
139: 865718153858494464
Fail
140: 865359393868664832
Fail
141: 865006731092295680
Fail
142: 864873206498414592
Fail
143: 864279568663928832
Fail
144: 864197398364647424
Fail
145: 863907417377173506
Fail
146: 863553081350529029
Fail
147: 863471782782697472
Fail
148: 863432100342583297
Fail
149: 863427515083354112
Fail
150: 863079547188785154
Fail
151: 863062471531167744
Fail
152: 862831371563274240
Fail
153: 862722525377298433
Fail
154: 862457590147678208
Fail
155: 862096992088072192
Fail
156: 861769973181624320
Fail
157: 861383897657036800
Fail
158: 861288531465048066
Fail
159: 861005113778896900
Fail
160: 860981674716409858
Fail
161: 860924035999428608
Fail
162: 860563773140209665
Fail
163: 860524505164394496
Fail
164: 860276583193509888
Fail
165: 860184849394610176
Fail
166: 860177593139703809
Fail
167: 859924526012018688
Fail
168: 859851578198683649
Fail
169: 859607811541651456
Fail
170: 859196978902773760
Fail
171: 859074603037188101
Fail
172: 858860390427611136
Fail
173: 858843525470990336
Fail
174: 858471635011153920
Fail
175: 858107933456039936
Fail
176: 857989990357356544
Fail
177: 857746408056729600
Fail
178: 857393404942143489
Fail
179: 857263160327368704
Fail
180: 857214891891077121
Fail
181: 857062103051644929
Fail
182: 857029823797047296
Fail
183: 856602993587888130
Fail
184: 856543823941562368
Fail
185: 856526610513747968
Fail
186: 856330835276025856
Fail
187: 856288084350160898
Fail
188: 856282028240666624
Fail
189: 855862651834028034
Fail
190: 855860136149123072
Fail
191: 855857698524602368
Fail
192: 855851453814013952
Fail
193: 855818117272018944
Fail
194: 855459453768019968
Fail
195: 855245323840757760
Fail
196: 855138241867124737
Fail
197: 854732716440526848
Fail
198: 854482394044301312
Fail
199: 854365224396361728
Fail
200: 854120357044912130
Fail
201: 854010172552949760
Fail
202: 853760880890318849
Fail
203: 853639147608842240
Fail
204: 853299958564483072
Fail
205: 852936405516943360
Fail
206: 852912242202992640
Fail
207: 852672615818899456
Fail
208: 852553447878664193
Fail
209: 852311364735569921
Fail
210: 852226086759018497
Fail
211: 852189679701164033
Fail
212: 851953902622658560
Fail
213: 851861385021730816
Fail
214: 851591660324737024
Fail
215: 851464819735769094
Fail
216: 851224888060895234
Fail
217: 850753642995093505
Fail
218: 850380195714523136
Fail
219: 850333567704068097
Fail
220: 850145622816686080
Fail
221: 850019790995546112
Fail
222: 849776966551130114
Fail
223: 849668094696017920
Fail
224: 849412302885593088
Fail
225: 849336543269576704
Fail
226: 849051919805034497
Fail
227: 848690551926992896
Fail
228: 848324959059550208
Fail
229: 848213670039564288
Fail
230: 848212111729840128
Fail
231: 847978865427394560
Fail
232: 847971574464610304
Fail
233: 847962785489326080
Fail
234: 847842811428974592
Fail
235: 847617282490613760
Fail
236: 847606175596138505
Fail
237: 847251039262605312
Fail
238: 847157206088847362
Fail
239: 847116187444137987
Fail
240: 846874817362120707
Fail
241: 846514051647705089
Fail
242: 846505985330044928
Fail
243: 846153765933735936
Fail
244: 846139713627017216
Fail
245: 846042936437604353
Fail
246: 845812042753855489
Fail
247: 845677943972139009
Fail
248: 845459076796616705
Fail
249: 845397057150107648
Fail
250: 845306882940190720
Fail
251: 845098359547420673
Fail
252: 844979544864018432
Fail
253: 844973813909606400
Fail
254: 844704788403113984
Fail
255: 844580511645339650
Fail
256: 844223788422217728
Fail
257: 843981021012017153
Fail
258: 843856843873095681
Fail
259: 843604394117681152
Fail
260: 843235543001513987
Fail
261: 842892208864923648
Fail
262: 842846295480000512
Fail
263: 842765311967449089
Fail
264: 842535590457499648
Fail
265: 842163532590374912
Fail
266: 842115215311396866
Fail
267: 841833993020538882
Fail
268: 841680585030541313
Fail
269: 841439858740625411
Fail
270: 841320156043304961
Fail
271: 841314665196081154
Fail
272: 841077006473256960
Fail
273: 840761248237133825
Fail
274: 840728873075638272
Fail
275: 840698636975636481
Fail
276: 840696689258311684
Fail
277: 840632337062862849
Fail
278: 840370681858686976
Fail
279: 840268004936019968
Fail
280: 839990271299457024
Fail
281: 839549326359670784
Fail
282: 839290600511926273
Fail
283: 839239871831150596
Fail
284: 838952994649550848
Fail
285: 838921590096166913
Fail
286: 838916489579200512
Fail
287: 838831947270979586
Fail
288: 838561493054533637
Fail
289: 838476387338051585
Fail
290: 838201503651401729
Fail
291: 838150277551247360
Fail
292: 838085839343206401
Fail
293: 838083903487373313
Fail
294: 837820167694528512
Fail
295: 837482249356513284
Fail
296: 837471256429613056
Fail
297: 837366284874571778
Fail
298: 837110210464448512
Fail
299: 837012587749474308
Fail
300: 836989968035819520
Fail
301: 836753516572119041
Fail
302: 836677758902222849
Fail
303: 836648853927522308
Fail
304: 836397794269200385
Fail
305: 836380477523124226
Fail
306: 836260088725786625
Fail
307: 836001077879255040
Fail
308: 835685285446955009
Fail
309: 835574547218894849
Fail
310: 835536468978302976
Fail
311: 835309094223372289
Fail
312: 835297930240217089
Fail
313: 835264098648616962
Fail
314: 835246439529840640
Fail
315: 835172783151792128
Fail
316: 835152434251116546
Fail
317: 834931633769889797
Fail
318: 834786237630337024
Fail
319: 834574053763584002
Fail
320: 834477809192075265
Fail
321: 834458053273591808
Fail
322: 834209720923721728
Fail
323: 834167344700198914
Fail
324: 834089966724603904
Fail
325: 834086379323871233
Fail
326: 833863086058651648
Fail
327: 833826103416520705
Fail
328: 833732339549220864
Fail
329: 833722901757046785
Fail
330: 833479644947025920
Fail
331: 833124694597443584
Fail
332: 832998151111966721
Fail
333: 832769181346996225
Fail
334: 832757312314028032
Fail
335: 832682457690300417
Fail
336: 832645525019123713
Fail
337: 832636094638288896
Fail
338: 832397543355072512
Fail
339: 832369877331693569
Fail
340: 832273440279240704
Fail
341: 832215909146226688
Fail
342: 832215726631055365
Fail
343: 832088576586297345
Fail
344: 832040443403784192
Fail
345: 832032802820481025
Fail
346: 831939777352105988
Fail
347: 831926988323639298
Fail
348: 831911600680497154
Fail
349: 831670449226514432
Fail
350: 831650051525054464
Fail
351: 831552930092285952
Fail
352: 831322785565769729
Fail
353: 831315979191906304
Fail
354: 831309418084069378
Fail
355: 831262627380748289
Fail
356: 830956169170665475
Fail
357: 830583320585068544
Fail
358: 830173239259324417
Fail
359: 830097400375152640
Fail
360: 829878982036299777
Fail
361: 829861396166877184
Fail
362: 829501995190984704
Fail
363: 829449946868879360
Fail
364: 829374341691346946
Fail
365: 829141528400556032
Fail
366: 829011960981237760
Fail
367: 828801551087042563
Fail
368: 828770345708580865
Fail
369: 828708714936930305
Fail
370: 828650029636317184
Fail
371: 828409743546925057
Fail
372: 828408677031882754
Fail
373: 828381636999917570
Fail
374: 828376505180889089
Fail
375: 828372645993398273
Fail
376: 828361771580813312
Fail
377: 828046555563323392
Fail
378: 828011680017821696
Fail
379: 827933404142436356
Fail
380: 827653905312006145
Fail
381: 827600520311402496
Fail
382: 827324948884643840
Fail
383: 827228250799742977
Fail
384: 827199976799354881
Fail
385: 826958653328592898
Fail
386: 826848821049180160
Fail
387: 826615380357632002
Fail
388: 826598799820865537
Fail
389: 826598365270007810
Fail
390: 826476773533745153
Fail
391: 826240494070030336
Fail
392: 826204788643753985
Fail
393: 826115272272650244
Fail
394: 825876512159186944
Fail
395: 825829644528148480
Fail
396: 825535076884762624
Fail
397: 825147591692263424
Fail
398: 825120256414846976
Fail
399: 825026590719483904
Fail
400: 824796380199809024
Fail
401: 824775126675836928
Fail
402: 824663926340194305
Fail
403: 824325613288833024
Fail
404: 824297048279236611
Fail
405: 824025158776213504
Fail
406: 823939628516474880
Fail
407: 823719002937630720
Fail
408: 823699002998870016
Fail
409: 823581115634085888
Fail
410: 823333489516937216
Fail
411: 823322678127919110
Fail
412: 823269594223824897
Fail
413: 822975315408461824
Fail
414: 822872901745569793
Fail
415: 822859134160621569
Fail
416: 822647212903690241
Fail
417: 822610361945911296
Fail
418: 822489057087389700
Fail
419: 822462944365645825
Fail
420: 822244816520155136
Fail
421: 822163064745328640
Fail
422: 821886076407029760
Fail
423: 821813639212650496
Fail
424: 821765923262631936
Fail
425: 821522889702862852
Fail
426: 821421320206483457
Fail
427: 821407182352777218
Fail
428: 821153421864615936
Fail
429: 821149554670182400
Fail
430: 821107785811234820
Fail
431: 821044531881721856
Fail
432: 820837357901512704
Fail
433: 820749716845686786
Fail
434: 820690176645140481
Fail
435: 820494788566847489
Fail
436: 820446719150292993
Fail
437: 820314633777061888
Fail
438: 820078625395449857
Fail
439: 820013781606658049
Fail
440: 819952236453363712
Fail
441: 819924195358416896
Fail
442: 819711362133872643
Fail
443: 819588359383371776
Fail
444: 819347104292290561
Fail
445: 819238181065359361
Fail
446: 819227688460238848
Fail
447: 819015337530290176
Fail
448: 819015331746349057
Fail
449: 819006400881917954
Fail
450: 819004803107983360
Fail
451: 818646164899774465
Fail
452: 818627210458333184
Fail
453: 818614493328580609
Fail
454: 818588835076603904
Fail
455: 818536468981415936
Fail
456: 818307523543449600
Fail
457: 818259473185828864
Fail
458: 818145370475810820
Fail
459: 817908911860748288
Fail
460: 817827839487737858
Fail
461: 817777686764523521
Fail
462: 817536400337801217
Fail
463: 817502432452313088
Fail
464: 817423860136083457
Fail
465: 817415592588222464
Fail
466: 817181837579653120
Fail
467: 817171292965273600
Fail
468: 817120970343411712
Fail
469: 817056546584727552
Fail
470: 816829038950027264
Fail
471: 816816676327063552
Fail
472: 816697700272001025
Fail
473: 816450570814898180
Fail
474: 816336735214911488
Fail
475: 816091915477250048
Fail
476: 816062466425819140
Fail
477: 816014286006976512
Fail
478: 815990720817401858
Fail
479: 815966073409433600
Fail
480: 815745968457060357
Fail
481: 815736392542261248
Fail
482: 815639385530101762
Fail
483: 815390420867969024
Fail
484: 814986499976527872
Fail
485: 814638523311648768
Fail
486: 814578408554463233
Fail
487: 814530161257443328
Fail
488: 814153002265309185
Fail
489: 813944609378369540
Fail
490: 813910438903693312
Fail
491: 813812741911748608
Fail
492: 813800681631023104
Fail
493: 813217897535406080
Fail
494: 813202720496779264
Fail
495: 813187593374461952
Fail
496: 813172488309972993
Fail
497: 813157409116065792
Fail
498: 813142292504645637
Fail
499: 813130366689148928
Fail
500: 813127251579564032
Fail
501: 813112105746448384
Fail
502: 813096984823349248
Fail
503: 813081950185472002
Fail
504: 813066809284972545
Fail
505: 813051746834595840
Fail
506: 812781120811126785
Fail
507: 812747805718642688
Fail
508: 812709060537683968
Fail
509: 812503143955202048
Fail
510: 812466873996607488
Fail
511: 812372279581671427
Fail
512: 811985624773361665
Fail
513: 811744202451197953
Fail
514: 811647686436880384
Fail
515: 811627233043480576
Fail
516: 811386762094317568
Fail
517: 810984652412424192
Fail
518: 810896069567610880
Fail
519: 810657578271330305
Fail
520: 810284430598270976
Fail
521: 810254108431155201
Fail
522: 809920764300447744
Fail
523: 809808892968534016
Fail
524: 809448704142938112
Fail
525: 809220051211603969
Fail
526: 809084759137812480
Fail
527: 808838249661788160
Fail
528: 808733504066486276
Fail
529: 808501579447930884
Fail
530: 808344865868283904
Fail
531: 808134635716833280
Fail
532: 808106460588765185
Fail
533: 808001312164028416
Fail
534: 807621403335917568
Fail
535: 807106840509214720
Fail
536: 807059379405148160
Fail
537: 807010152071229440
Fail
538: 806629075125202948
Fail
539: 806620845233815552
Fail
540: 806576416489959424
Fail
541: 806542213899489280
Fail
542: 806242860592926720
Fail
543: 806219024703037440
Fail
544: 805958939288408065
Fail
545: 805932879469572096
Fail
546: 805826884734976000
Fail
547: 805823200554876929
Fail
548: 805520635690676224
Fail
549: 805487436403003392
Fail
550: 805207613751304193
Fail
551: 804738756058218496
Fail
552: 804475857670639616
Fail
553: 804413760345620481
Fail
554: 804026241225523202
Fail
555: 803773340896923648
Fail
556: 803692223237865472
Fail
557: 803638050916102144
Fail
558: 803380650405482500
Fail
559: 803321560782307329
Fail
560: 803276597545603072
Fail
561: 802952499103731712
Fail
562: 802624713319034886
Fail
563: 802600418706604034
Fail
564: 802572683846291456
Fail
565: 802323869084381190
Fail
566: 802265048156610565
Fail
567: 802247111496568832
Fail
568: 802239329049477120
Fail
569: 802185808107208704
Fail
570: 801958328846974976
Fail
571: 801854953262350336
Fail
572: 801538201127157760
Fail
573: 801285448605831168
Fail
574: 801167903437357056
Fail
575: 801127390143516673
Fail
576: 801115127852503040
Fail
577: 800859414831898624
Fail
578: 800855607700029440
Fail
579: 800751577355128832
Fail
580: 800513324630806528
Fail
581: 800459316964663297
Fail
582: 800443802682937345
Fail
583: 800388270626521089
Fail
584: 800188575492947969
Fail
585: 800141422401830912
Fail
586: 800018252395122689
Fail
587: 799774291445383169
Fail
588: 799757965289017345
Fail
589: 799422933579902976
Fail
590: 799308762079035393
Fail
591: 799297110730567681
Fail
592: 799063482566066176
Fail
593: 798933969379225600
Fail
594: 798925684722855936
Fail
595: 798705661114773508
Fail
596: 798701998996647937
Fail
597: 798697898615730177
Fail
598: 798694562394996736
Fail
599: 798686750113755136
Fail
600: 798682547630837760
Fail
601: 798673117451325440
Fail
602: 798665375516884993
Fail
603: 798644042770751489
Fail
604: 798628517273620480
Fail
605: 798585098161549313
Fail
606: 798576900688019456
Fail
607: 798340744599797760
Fail
608: 798209839306514432
Fail
609: 797971864723324932
Fail
610: 797545162159308800
Fail
611: 797236660651966464
Fail
612: 797165961484890113
Fail
613: 796904159865868288
Fail
614: 796865951799083009
Fail
615: 796759840936919040
Fail
616: 796563435802726400
Fail
617: 796484825502875648
Fail
618: 796387464403357696
Fail
619: 796177847564038144
Fail
620: 796149749086875649
Fail
621: 796125600683540480
Fail
622: 796116448414461957
Fail
623: 796080075804475393
Fail
624: 796031486298386433
Fail
625: 795464331001561088
Fail
626: 795400264262053889
Fail
627: 795076730285391872
Fail
628: 794983741416415232
Fail
629: 794926597468000259
Fail
630: 794355576146903043
Fail
631: 794332329137291264
Fail
632: 794205286408003585
Fail
633: 793962221541933056
Fail
634: 793845145112371200
Fail
635: 793614319594401792
Fail
636: 793601777308463104
Fail
637: 793500921481273345
Fail
638: 793286476301799424
Fail
639: 793271401113350145
Fail
640: 793256262322548741
Fail
641: 793241302385262592
Fail
642: 793226087023144960
Fail
643: 793210959003287553
Fail
644: 793195938047070209
Fail
645: 793180763617361921
Fail
646: 793165685325201412
Fail
647: 793150605191548928
Fail
648: 793135492858580992
Fail
649: 793120401413079041
Fail
650: 792913359805018113
Fail
651: 792883833364439040
Fail
652: 792773781206999040
Fail
653: 792394556390137856
Fail
654: 792050063153438720
Fail
655: 791821351946420224
Fail
656: 791784077045166082
Fail
657: 791780927877898241
Fail
658: 791774931465953280
Fail
659: 791672322847637504
Fail
660: 791406955684368384
Fail
661: 791312159183634433
Fail
662: 791026214425268224
Fail
663: 790987426131050500
Fail
664: 790946055508652032
Fail
665: 790723298204217344
Fail
666: 790698755171364864
Fail
667: 790581949425475584
Fail
668: 790337589677002753
Fail
669: 790277117346975746
Fail
670: 790227638568808452
Fail
671: 789986466051088384
Fail
672: 789960241177853952
Fail
673: 789903600034189313
Fail
674: 789628658055020548
Fail
675: 789599242079838210
Fail
676: 789530877013393408
Fail
677: 789314372632018944
Fail
678: 789280767834746880
Fail
679: 789268448748703744
Fail
680: 789137962068021249
Fail
681: 788908386943430656
Fail
682: 788765914992902144
Fail
683: 788552643979468800
Fail
684: 788412144018661376
Fail
685: 788178268662984705
Fail
686: 788150585577050112
Fail
687: 788070120937619456
Fail
688: 788039637453406209
Fail
689: 787810552592695296
Fail
690: 787717603741622272
Fail
691: 787397959788929025
Fail
692: 787322443945877504
Fail
693: 787111942498508800
Fail
694: 786963064373534720
Fail
695: 786729988674449408
Fail
696: 786709082849828864
Fail
697: 786664955043049472
Fail
698: 786595970293370880
Fail
699: 786363235746385920
Fail
700: 786286427768250368
Fail
701: 786233965241827333
Fail
702: 786051337297522688
Fail
703: 786036967502913536
Fail
704: 785927819176054784
Fail
705: 785872687017132033
Fail
706: 785639753186217984
Fail
707: 785533386513321988
Fail
708: 785515384317313025
Fail
709: 785264754247995392
Fail
710: 785170936622350336
Fail
711: 784826020293709826
Fail
712: 784517518371221505
Fail
713: 784431430411685888
Fail
714: 784183165795655680
Fail
715: 784057939640352768
Fail
716: 783839966405230592
Fail
717: 783821107061198850
Fail
718: 783695101801398276
Fail
719: 783466772167098368
Fail
720: 783391753726550016
Fail
721: 783347506784731136
Fail
722: 783334639985389568
Fail
723: 783085703974514689
Fail
724: 782969140009107456
Fail
725: 782747134529531904
Fail
726: 782722598790725632
Fail
727: 782598640137187329
Fail
728: 782305867769217024
Fail
729: 782021823840026624
Fail
730: 781955203444699136
Fail
731: 781661882474196992
Fail
732: 781655249211752448
Fail
733: 781524693396357120
Fail
734: 781308096455073793
Fail
735: 781251288990355457
Fail
736: 781163403222056960
Fail
737: 780931614150983680
Fail
738: 780858289093574656
Fail
739: 780800785462489090
Fail
740: 780601303617732608
Fail
741: 780543529827336192
Fail
742: 780496263422808064
Fail
743: 780476555013349377
Fail
744: 780459368902959104
Fail
745: 780192070812196864
Fail
746: 780092040432480260
Fail
747: 780074436359819264
Fail
748: 779834332596887552
Fail
749: 779377524342161408
Fail
750: 779124354206535695
Fail
751: 779123168116150273
Fail
752: 779056095788752897
Fail
753: 778990705243029504
Fail
754: 778774459159379968
Fail
755: 778764940568104960
Fail
756: 778748913645780993
Fail
757: 778650543019483137
Fail
758: 778624900596654080
Fail
759: 778408200802557953
Fail
760: 778396591732486144
Fail
761: 778383385161035776
Fail
762: 778286810187399168
Fail
763: 778039087836069888
Fail
764: 778027034220126208
Fail
765: 777953400541634568
Fail
766: 777885040357281792
Fail
767: 777684233540206592
Fail
768: 777641927919427584
Fail
769: 777621514455814149
Fail
770: 777189768882946048
Fail
771: 776819012571455488
Fail
772: 776813020089548800
Fail
773: 776477788987613185
Fail
774: 776249906839351296
Fail
775: 776218204058357768
Fail
776: 776201521193218049
Fail
777: 776113305656188928
Fail
778: 776088319444877312
Fail
779: 775898661951791106
Fail
780: 775842724423557120
Fail
781: 775733305207554048
Fail
782: 775729183532220416
Fail
783: 775364825476165632
Fail
784: 775350846108426240
Fail
785: 775096608509886464
Fail
786: 775085132600442880
Fail
787: 774757898236878852
Fail
788: 774639387460112384
Fail
789: 774314403806253056
Fail
790: 773985732834758656
Fail
791: 773922284943896577
Fail
792: 773704687002451968
Fail
793: 773670353721753600
Fail
794: 773547596996571136
Fail
795: 773336787167145985
Fail
796: 773308824254029826
Fail
797: 773247561583001600
Fail
798: 773191612633579521
Fail
799: 772877495989305348
Fail
800: 772826264096874500
Fail
801: 772615324260794368
Fail
802: 772581559778025472
Fail
803: 772193107915964416
Fail
804: 772152991789019136
Fail
805: 772117678702071809
Fail
806: 772114945936949249
Fail
807: 772102971039580160
Fail
808: 771908950375665664
Fail
809: 771770456517009408
Fail
810: 771500966810099713
Fail
811: 771380798096281600
Fail
812: 771171053431250945
Fail
813: 771136648247640064
Fail
814: 771102124360998913
Fail
815: 771014301343748096
Fail
816: 771004394259247104
Fail
817: 770787852854652928
Fail
818: 770772759874076672
Fail
819: 770743923962707968
Fail
820: 770655142660169732
Fail
821: 770414278348247044
Fail
822: 770293558247038976
Fail
823: 770093767776997377
Fail
824: 770069151037685760
Fail
825: 769940425801170949
Fail
826: 769695466921623552
Fail
827: 769335591808995329
Fail
828: 769212283578875904
Fail
829: 768970937022709760
Fail
830: 768909767477751808
Fail
831: 768855141948723200
Fail
832: 768609597686943744
Fail
833: 768596291618299904
Fail
834: 768554158521745409
Fail
835: 768473857036525572
Fail
836: 768193404517830656
Fail
837: 767884188863397888
Fail
838: 767754930266464257
Fail
839: 767500508068192258
Fail
840: 767191397493538821
Fail
841: 767122157629476866
Fail
842: 766864461642756096
Fail
843: 766793450729734144
Fail
844: 766714921925144576
Fail
845: 766693177336135680
Fail
846: 766423258543644672
Fail
847: 766313316352462849
Fail
848: 766078092750233600
Fail
849: 766069199026450432
Fail
850: 766008592277377025
Fail
851: 765719909049503744
Fail
852: 765669560888528897
Fail
853: 765395769549590528
Fail
854: 765371061932261376
Fail
855: 765222098633691136
Fail
856: 764857477905154048
Fail
857: 764259802650378240
Fail
858: 763956972077010945
Fail
859: 763837565564780549
Fail
860: 763183847194451968
Fail
861: 763167063695355904
Fail
862: 763103485927849985
Fail
863: 762699858130116608
Fail
864: 762471784394268675
Fail
865: 762464539388485633
Fail
866: 762316489655476224
Fail
867: 762035686371364864
Fail
868: 761976711479193600
Fail
869: 761750502866649088
Fail
870: 761745352076779520
Fail
871: 761672994376806400
Fail
872: 761599872357261312
Fail
873: 761371037149827077
Fail
874: 761334018830917632
Fail
875: 761292947749015552
Fail
876: 761227390836215808
Fail
877: 761004547850530816
Fail
878: 760893934457552897
Fail
879: 760656994973933572
Fail
880: 760641137271070720
Fail
881: 760539183865880579
Fail
882: 760521673607086080
Fail
883: 760290219849637889
Fail
884: 760252756032651264
Fail
885: 760190180481531904
Fail
886: 760153949710192640
Fail
887: 759943073749200896
Fail
888: 759923798737051648
Fail
889: 759846353224826880
Fail
890: 759793422261743616
Fail
891: 759566828574212096
Fail
892: 759557299618865152
Fail
893: 759447681597108224
Fail
894: 759446261539934208
Fail
895: 759197388317847553
Fail
896: 759159934323924993
Fail
897: 759099523532779520
Fail
898: 759047813560868866
Fail
899: 758854675097526272
Fail
900: 758828659922702336
Fail
901: 758740312047005698
Fail
902: 758474966123810816
Fail
903: 758467244762497024
Fail
904: 758405701903519748
Fail
905: 758355060040593408
Fail
906: 758099635764359168
Fail
907: 758041019896193024
Fail
908: 757741869644341248
Fail
909: 757729163776290825
Fail
910: 757725642876129280
Fail
911: 757611664640446465
Fail
912: 757597904299253760
Fail
913: 757596066325864448
Fail
914: 757400162377592832
Fail
915: 757393109802180609
Fail
916: 757354760399941633
Fail
917: 756998049151549440
Fail
918: 756939218950160384
Fail
919: 756651752796094464
Fail
920: 756526248105566208
Fail
921: 756303284449767430
Fail
922: 756288534030475264
Fail
923: 756275833623502848
Fail
924: 755955933503782912
Fail
925: 755206590534418437
Fail
926: 755110668769038337
Fail
927: 754874841593970688
Fail
928: 754856583969079297
Fail
929: 754747087846248448
Fail
930: 754482103782404096
Fail
931: 754449512966619136
Fail
932: 754120377874386944
Fail
933: 754011816964026368
Fail
934: 753655901052166144
Fail
935: 753420520834629632
Fail
936: 753398408988139520
Fail
937: 753375668877008896
Fail
938: 753298634498793472
Fail
939: 753294487569522689
Fail
940: 753039830821511168
Fail
941: 753026973505581056
Fail
942: 752932432744185856
Fail
943: 752917284578922496
Fail
944: 752701944171524096
Fail
945: 752682090207055872
Fail
946: 752660715232722944
Fail
947: 752568224206688256
Fail
948: 752519690950500352
Fail
949: 752334515931054080
Fail
950: 752309394570878976
Fail
951: 752173152931807232
Fail
952: 751950017322246144
Fail
953: 751937170840121344
Fail
954: 751830394383790080
Fail
955: 751793661361422336
Fail
956: 751598357617971201
Fail
957: 751583847268179968
Fail
958: 751538714308972544
Fail
959: 751456908746354688
Fail
960: 751251247299190784
Fail
961: 751205363882532864
Fail
962: 751132876104687617
Fail
963: 750868782890057730
Fail
964: 750719632563142656
Fail
965: 750506206503038976
Fail
966: 750429297815552001
Fail
967: 750383411068534784
Fail
968: 750381685133418496
Fail
969: 750147208377409536
Fail
970: 750132105863102464
Fail
971: 750117059602808832
Fail
972: 750101899009982464
Fail
973: 750086836815486976
Fail
974: 750071704093859840
Fail
975: 750056684286914561
Fail
976: 750041628174217216
Fail
977: 750026558547456000
Fail
978: 750011400160841729
Fail
979: 749996283729883136
Fail
980: 749981277374128128
Fail
981: 749774190421639168
Fail
982: 749417653287129088
Fail
983: 749403093750648834
Fail
984: 749395845976588288
Fail
985: 749317047558017024
Fail
986: 749075273010798592
Fail
987: 749064354620928000
Fail
988: 749036806121881602
Fail
989: 748977405889503236
Fail
990: 748932637671223296
Fail
991: 748705597323898880
Fail
992: 748699167502000129
Fail
993: 748692773788876800
Fail
994: 748575535303884801
Fail
995: 748568946752774144
Fail
996: 748346686624440324
Fail
997: 748337862848962560
Fail
998: 748324050481647620
Fail
999: 748307329658011649
Fail
1000: 748220828303695873
Fail
1001: 747963614829678593
Fail
1002: 747933425676525569
Fail
1003: 747885874273214464
Fail
1004: 747844099428986880
Fail
1005: 747816857231626240
Fail
1006: 747651430853525504
Fail
1007: 747648653817413632
Fail
1008: 747600769478692864
Fail
1009: 747594051852075008
Fail
1010: 747512671126323200
Fail
1011: 747461612269887489
Fail
1012: 747439450712596480
Fail
1013: 747242308580548608
Fail
1014: 747219827526344708
Fail
1015: 747204161125646336
Fail
1016: 747103485104099331
Fail
1017: 746906459439529985
Fail
1018: 746872823977771008
Fail
1019: 746818907684614144
Fail
1020: 746790600704425984
Fail
1021: 746757706116112384
Fail
1022: 746726898085036033
Fail
1023: 746542875601690625
Fail
1024: 746521445350707200
Fail
1025: 746507379341139972
Fail
1026: 746369468511756288
Fail
1027: 746131877086527488
Fail
1028: 746056683365994496
Fail
1029: 745789745784041472
Fail
1030: 745712589599014916
Fail
1031: 745433870967832576
Fail
1032: 745422732645535745
Fail
1033: 745314880350101504
Fail
1034: 745074613265149952
Fail
1035: 745057283344719872
Fail
1036: 744995568523612160
Fail
1037: 744971049620602880
Fail
1038: 744709971296780288
Fail
1039: 744334592493166593
Fail
1040: 744234799360020481
Fail
1041: 744223424764059648
Fail
1042: 743980027717509120
Fail
1043: 743895849529389061
Fail
1044: 743835915802583040
Fail
1045: 743609206067040256
Fail
1046: 743595368194129920
Fail
1047: 743545585370791937
Fail
1048: 743510151680958465
Fail
1049: 743253157753532416
Fail
1050: 743222593470234624
Fail
1051: 743210557239623680
Fail
1052: 742534281772302336
Fail
1053: 742528092657332225
Fail
1054: 742465774154047488
Fail
1055: 742423170473463808
Fail
1056: 742385895052087300
Fail
1057: 742161199639494656
Fail
1058: 742150209887731712
Fail
1059: 741793263812808706
Fail
1060: 741743634094141440
Fail
1061: 741438259667034112
Fail
1062: 741303864243200000
Fail
1063: 741099773336379392
Fail
1064: 741067306818797568
Fail
1065: 740995100998766593
Fail
1066: 740711788199743490
Fail
1067: 740699697422163968
Fail
1068: 740676976021798912
Fail
1069: 740373189193256964
Fail
1070: 740365076218183684
Fail
1071: 740359016048689152
Fail
1072: 740214038584557568
Fail
1073: 739979191639244800
Fail
1074: 739932936087216128
Fail
1075: 739844404073074688
Fail
1076: 739623569819336705
Fail
1077: 739606147276148736
Fail
1078: 739544079319588864
Fail
1079: 739485634323156992
Fail
1080: 739238157791694849
Fail
1081: 738891149612572673
Fail
1082: 738885046782832640
Fail
1083: 738883359779196928
Fail
1084: 738537504001953792
Fail
1085: 738402415918125056
Fail
1086: 738184450748633089
Fail
1087: 738166403467907072
Fail
1088: 738156290900254721
Fail
1089: 737826014890496000
Fail
1090: 737800304142471168
Fail
1091: 737678689543020544
Fail
1092: 737445876994609152
Fail
1093: 737322739594330112
Fail
1094: 737310737551491075
Fail
1095: 736736130620620800
Fail
1096: 736392552031657984
Fail
1097: 736365877722001409
Fail
1098: 736225175608430592
Fail
1099: 736010884653420544
Fail
1100: 735991953473572864
Fail
1101: 735648611367784448
Fail
1102: 735635087207878657
Fail
1103: 735274964362878976
Fail
1104: 735256018284875776
Fail
1105: 735137028879360001
Fail
1106: 734912297295085568
Fail
1107: 734787690684657664
Fail
1108: 734776360183431168
Fail
1109: 734559631394082816
Fail
1110: 733828123016450049
Fail
1111: 733822306246479872
Fail
1112: 733482008106668032
Fail
1113: 733460102733135873
Fail
1114: 733109485275860992
Fail
1115: 732732193018155009
Fail
1116: 732726085725589504
Fail
1117: 732585889486888962
Fail
1118: 732375214819057664
Fail
1119: 732005617171337216
Fail
1120: 731285275100512256
Fail
1121: 731156023742988288
Fail
1122: 730924654643314689
Fail
1123: 730573383004487680
Fail
1124: 730427201120833536
Fail
1125: 730211855403241472
Fail
1126: 730196704625098752
Fail
1127: 729854734790754305
Fail
1128: 729838605770891264
Fail
1129: 729823566028484608
Fail
1130: 729463711119904772
Fail
1131: 729113531270991872
Fail
1132: 728986383096946689
Fail
1133: 728760639972315136
Fail
1134: 728751179681943552
Fail
1135: 728653952833728512
Fail
1136: 728409960103686147
Fail
1137: 728387165835677696
Fail
1138: 728046963732717569
Fail
1139: 728035342121635841
Fail
1140: 728015554473250816
Fail
1141: 727685679342333952
Fail
1142: 727644517743104000
Fail
1143: 727524757080539137
Fail
1144: 727314416056803329
Fail
1145: 727286334147182592
Fail
1146: 727175381690781696
Fail
1147: 727155742655025152
Fail
1148: 726935089318363137
Fail
1149: 726887082820554753
Fail
1150: 726828223124897792
Fail
1151: 726224900189511680
Fail
1152: 725842289046749185
Fail
1153: 725786712245440512
Fail
1154: 725729321944506368
Fail
1155: 725458796924002305
Fail
1156: 724983749226668032
Fail
1157: 724771698126512129
Fail
1158: 724405726123311104
Fail
1159: 724049859469295616
Fail
1160: 724046343203856385
Fail
1161: 724004602748780546
Fail
1162: 723912936180330496
Fail
1163: 723688335806480385
Fail
1164: 723673163800948736
Fail
1165: 723179728551723008
Fail
1166: 722974582966214656
Fail
1167: 722613351520608256
Fail
1168: 721503162398597120
Fail
1169: 721001180231503872
Fail
1170: 720785406564900865
Fail
1171: 720775346191278080
Fail
1172: 720415127506415616
Fail
1173: 720389942216527872
Fail
1174: 720340705894408192
Fail
1175: 720059472081784833
Fail
1176: 720043174954147842
Fail
1177: 719991154352222208
Fail
1178: 719704490224398336
Fail
1179: 719551379208073216
Fail
1180: 719367763014393856
Fail
1181: 719339463458033665
Fail
1182: 719332531645071360
Fail
1183: 718971898235854848
Fail
1184: 718939241951195136
Fail
1185: 718631497683582976
Fail
1186: 718613305783398402
Fail
1187: 718540630683709445
Fail
1188: 718460005985447936
Fail
1189: 718454725339934721
Fail
1190: 718246886998687744
Fail
1191: 718234618122661888
Fail
1192: 717841801130979328
Fail
1193: 717790033953034240
Fail
1194: 717537687239008257
Fail
1195: 717428917016076293
Fail
1196: 717421804990701568
Fail
1197: 717047459982213120
Fail
1198: 717009362452090881
Fail
1199: 716802964044845056
Fail
1200: 716791146589110272
Fail
1201: 716730379797970944
Fail
1202: 716447146686459905
Fail
1203: 716439118184652801
Fail
1204: 716285507865542656
Fail
1205: 716080869887381504
Fail
1206: 715928423106027520
Fail
1207: 715758151270801409
Fail
1208: 715733265223708672
Fail
1209: 715704790270025728
Fail
1210: 715696743237730304
Fail
1211: 715680795826982913
Fail
1212: 715360349751484417
Fail
1213: 715342466308784130
Fail
1214: 715220193576927233
Fail
1215: 715200624753819648
Fail
1216: 715009755312439296
Fail
1217: 714982300363173890
Fail
1218: 714962719905021952
Fail
1219: 714957620017307648
Fail
1220: 714631576617938945
Fail
1221: 714606013974974464
Fail
1222: 714485234495041536
Fail
1223: 714258258790387713
Fail
1224: 714251586676113411
Fail
1225: 714214115368108032
Fail
1226: 714141408463036416
Fail
1227: 713919462244790272
Fail
1228: 713909862279876608
Fail
1229: 713900603437621249
Fail
1230: 713761197720473600
Fail
1231: 713411074226274305
Fail
1232: 713177543487135744
Fail
1233: 713175907180089344
Fail
1234: 712809025985978368
Fail
1235: 712717840512598017
Fail
1236: 712668654853337088
Fail
1237: 712438159032893441
Fail
1238: 712309440758808576
Fail
1239: 712097430750289920
Fail
1240: 712092745624633345
Fail
1241: 712085617388212225
Fail
1242: 712065007010385924
Fail
1243: 711998809858043904
Fail
1244: 711968124745228288
Fail
1245: 711743778164514816
Fail
1246: 711732680602345472
Fail
1247: 711694788429553666
Fail
1248: 711652651650457602
Fail
1249: 711363825979756544
Fail
1250: 711306686208872448
Fail
1251: 711008018775851008
Fail
1252: 710997087345876993
Fail
1253: 710844581445812225
Fail
1254: 710833117892898816
Fail
1255: 710658690886586372
Fail
1256: 710609963652087808
Fail
1257: 710588934686908417
Fail
1258: 710296729921429505
Fail
1259: 710283270106132480
Fail
1260: 710272297844797440
Fail
1261: 710269109699739648
Fail
1262: 710153181850935296
Fail
1263: 710140971284037632
Fail
1264: 710117014656950272
Fail
1265: 709918798883774466
Fail
1266: 709901256215666688
Fail
1267: 709852847387627521
Fail
1268: 709566166965075968
Fail
1269: 709556954897764353
Fail
1270: 709519240576036864
Fail
1271: 709449600415961088
Fail
1272: 709409458133323776
Fail
1273: 709225125749587968
Fail
1274: 709207347839836162
Fail
1275: 709198395643068416
Fail
1276: 709179584944730112
Fail
1277: 709158332880297985
Fail
1278: 709042156699303936
Fail
1279: 708853462201716736
Fail
1280: 708845821941387268
Fail
1281: 708834316713893888
Fail
1282: 708810915978854401
Fail
1283: 708738143638450176
Fail
1284: 708711088997666817
Fail
1285: 708479650088034305
Fail
1286: 708469915515297792
Fail
1287: 708400866336894977
Fail
1288: 708356463048204288
Fail
1289: 708349470027751425
Fail
1290: 708149363256774660
Fail
1291: 708130923141795840
Fail
1292: 708119489313951744
Fail
1293: 708109389455101952
Fail
1294: 708026248782585858
Fail
1295: 707995814724026368
Fail
1296: 707983188426153984
Fail
1297: 707969809498152960
Fail
1298: 707776935007539200
Fail
1299: 707741517457260545
Fail
1300: 707738799544082433
Fail
1301: 707693576495472641
Fail
1302: 707629649552134146
Fail
1303: 707610948723478529
Fail
1304: 707420581654872064
Fail
1305: 707411934438625280
Fail
1306: 707387676719185920
Fail
1307: 707377100785885184
Fail
1308: 707315916783140866
Fail
1309: 707297311098011648
Fail
1310: 707059547140169728
Fail
1311: 707038192327901184
Fail
1312: 707021089608753152
Fail
1313: 707014260413456384
Fail
1314: 706904523814649856
Fail
1315: 706901761596989440
Fail
1316: 706681918348251136
Fail
1317: 706644897839910912
Fail
1318: 706593038911545345
Fail
1319: 706538006853918722
Fail
1320: 706516534877929472
Fail
1321: 706346369204748288
Fail
1322: 706310011488698368
Fail
1323: 706291001778950144
Fail
1324: 706265994973601792
Fail
1325: 706169069255446529
Fail
1326: 706166467411222528
Fail
1327: 706153300320784384
Fail
1328: 705975130514706432
Fail
1329: 705970349788291072
Fail
1330: 705898680587526145
Fail
1331: 705786532653883392
Fail
1332: 705591895322394625
Fail
1333: 705475953783398401
Fail
1334: 705442520700944385
Fail
1335: 705428427625635840
Fail
1336: 705239209544720384
Fail
1337: 705223444686888960
Fail
1338: 705102439679201280
Fail
1339: 705066031337840642
Fail
1340: 704871453724954624
Fail
1341: 704859558691414016
Fail
1342: 704847917308362754
Fail
1343: 704819833553219584
Fail
1344: 704761120771465216
Fail
1345: 704499785726889984
Fail
1346: 704491224099647488
Fail
1347: 704480331685040129
Fail
1348: 704364645503647744
Fail
1349: 704347321748819968
Fail
1350: 704134088924532736
Fail
1351: 704113298707505153
Fail
1352: 704054845121142784
Fail
1353: 703774238772166656
Fail
1354: 703769065844768768
Fail
1355: 703631701117943808
Fail
1356: 703611486317502464
Fail
1357: 703425003149250560
Fail
1358: 703407252292673536
Fail
1359: 703382836347330562
Fail
1360: 703356393781329922
Fail
1361: 703268521220972544
Fail
1362: 703079050210877440
Fail
1363: 703041949650034688
Fail
1364: 702932127499816960
Fail
1365: 702899151802126337
Fail
1366: 702684942141153280
Fail
1367: 702671118226825216
Fail
1368: 702598099714314240
Fail
1369: 702539513671897089
Fail
1370: 702332542343577600
Fail
1371: 702321140488925184
Fail
1372: 702276748847800320
Fail
1373: 702217446468493312
Fail
1374: 701981390485725185
Fail
1375: 701952816642965504
Fail
1376: 701889187134500865
Fail
1377: 701805642395348998
Fail
1378: 701601587219795968
Fail
1379: 701570477911896070
Fail
1380: 701545186879471618
Fail
1381: 701214700881756160
Fail
1382: 700890391244103680
Fail
1383: 700864154249383937
Fail
1384: 700847567345688576
Fail
1385: 700796979434098688
Fail
1386: 700747788515020802
Fail
1387: 700518061187723268
Fail
1388: 700505138482569216
Fail
1389: 700462010979500032
Fail
1390: 700167517596164096
Fail
1391: 700151421916807169
Fail
1392: 700143752053182464
Fail
1393: 700062718104104960
Fail
1394: 700029284593901568
Fail
1395: 700002074055016451
Fail
1396: 699801817392291840
Fail
1397: 699788877217865730
Fail
1398: 699779630832685056
Fail
1399: 699775878809702401
Fail
1400: 699691744225525762
Fail
1401: 699446877801091073
Fail
1402: 699434518667751424
Fail
1403: 699423671849451520
Fail
1404: 699413908797464576
Fail
1405: 699370870310113280
Fail
1406: 699323444782047232
Fail
1407: 699088579889332224
Fail
1408: 699079609774645248
Fail
1409: 699072405256409088
Fail
1410: 699060279947165696
Fail
1411: 699036661657767936
Fail
1412: 698989035503689728
Fail
1413: 698953797952008193
Fail
1414: 698907974262222848
Fail
1415: 698710712454139905
Fail
1416: 698703483621523456
Fail
1417: 698635131305795584
Fail
1418: 698549713696649216
Fail
1419: 698355670425473025
Fail
1420: 698342080612007937
Fail
1421: 698262614669991936
Fail
1422: 698195409219559425
Fail
1423: 698178924120031232
Fail
1424: 697995514407682048
Fail
1425: 697990423684476929
Fail
1426: 697943111201378304
Fail
1427: 697881462549430272
Fail
1428: 697630435728322560
Fail
1429: 697616773278015490
Fail
1430: 697596423848730625
Fail
1431: 697575480820686848
Fail
1432: 697516214579523584
Fail
1433: 697482927769255936
Fail
1434: 697463031882764288
Fail
1435: 697270446429966336
Fail
1436: 697259378236399616
Fail
1437: 697255105972801536
Fail
1438: 697242256848379904
Fail
1439: 696900204696625153
Fail
1440: 696894894812565505
Fail
1441: 696886256886657024
Fail
1442: 696877980375769088
Fail
1443: 696754882863349760
Fail
1444: 696744641916489729
Fail
1445: 696713835009417216
Fail
1446: 696518437233913856
Fail
1447: 696490539101908992
Fail
1448: 696488710901260288
Fail
1449: 696405997980676096
Fail
1450: 696100768806522880
Fail
1451: 695816827381944320
Fail
1452: 695794761660297217
Fail
1453: 695767669421768709
Fail
1454: 695629776980148225
Fail
1455: 695446424020918272
Fail
1456: 695409464418041856
Fail
1457: 695314793360662529
Fail
1458: 695095422348574720
Fail
1459: 695074328191332352
Fail
1460: 695064344191721472
Fail
1461: 695051054296211456
Fail
1462: 694925794720792577
Fail
1463: 694905863685980160
Fail
1464: 694669722378485760
Fail
1465: 694356675654983680
Fail
1466: 694352839993344000
Fail
1467: 694342028726001664
Fail
1468: 694329668942569472
Fail
1469: 694206574471057408
Fail
1470: 694183373896572928
Fail
1471: 694001791655137281
Fail
1472: 693993230313091072
Fail
1473: 693942351086120961
Fail
1474: 693647888581312512
Fail
1475: 693644216740769793
Fail
1476: 693642232151285760
Fail
1477: 693629975228977152
Fail
1478: 693622659251335168
Fail
1479: 693590843962331137
Fail
1480: 693582294167244802
Fail
1481: 693486665285931008
Fail
1482: 693280720173801472
Fail
1483: 693267061318012928
Fail
1484: 693262851218264065
Fail
1485: 693231807727280129
Fail
1486: 693155686491000832
Fail
1487: 693109034023534592
Fail
1488: 693095443459342336
Fail
1489: 692919143163629568
Fail
1490: 692905862751522816
Fail
1491: 692901601640583168
Fail
1492: 692894228850999298
Fail
1493: 692828166163931137
Fail
1494: 692752401762250755
Fail
1495: 692568918515392513
Fail
1496: 692535307825213440
Fail
1497: 692530551048294401
Fail
1498: 692423280028966913
Fail
1499: 692417313023332352
Fail
1500: 692187005137076224
Fail
1501: 692158366030913536
Fail
1502: 692142790915014657
Fail
1503: 692041934689402880
Fail
1504: 692017291282812928
Fail
1505: 691820333922455552
Fail
1506: 691793053716221953
Fail
1507: 691756958957883396
Fail
1508: 691675652215414786
Fail
1509: 691483041324204033
Fail
1510: 691459709405118465
Fail
1511: 691444869282295808
Fail
1512: 691416866452082688
Fail
1513: 691321916024623104
Fail
1514: 691096613310316544
Fail
1515: 691090071332753408
Fail
1516: 690989312272396288
Fail
1517: 690959652130045952
Fail
1518: 690938899477221376
Fail
1519: 690932576555528194
Fail
1520: 690735892932222976
Fail
1521: 690728923253055490
Fail
1522: 690690673629138944
Fail
1523: 690649993829576704
Fail
1524: 690607260360429569
Fail
1525: 690597161306841088
Fail
1526: 690400367696297985
Fail
1527: 690374419777196032
Fail
1528: 690360449368465409
Fail
1529: 690348396616552449
Fail
1530: 690248561355657216
Fail
1531: 690021994562220032
Fail
1532: 690015576308211712
Fail
1533: 690005060500217858
Fail
1534: 689999384604450816
Fail
1535: 689993469801164801
Fail
1536: 689977555533848577
Fail
1537: 689905486972461056
Fail
1538: 689877686181715968
Fail
1539: 689835978131935233
Fail
1540: 689661964914655233
Fail
1541: 689659372465688576
Fail
1542: 689623661272240129
Fail
1543: 689599056876867584
Fail
1544: 689557536375177216
Fail
1545: 689517482558820352
Fail
1546: 689289219123089408
Fail
1547: 689283819090870273
Fail
1548: 689280876073582592
Fail
1549: 689275259254616065
Fail
1550: 689255633275777024
Fail
1551: 689154315265683456
Fail
1552: 689143371370250240
Fail
1553: 688916208532455424
Fail
1554: 688908934925697024
Fail
1555: 688898160958271489
Fail
1556: 688894073864884227
Fail
1557: 688828561667567616
Fail
1558: 688804835492233216
Fail
1559: 688789766343622656
Fail
1560: 688547210804498433
Fail
1561: 688519176466644993
Fail
1562: 688385280030670848
Fail
1563: 688211956440801280
Fail
1564: 688179443353796608
Fail
1565: 688116655151435777
Fail
1566: 688064179421470721
Fail
1567: 687841446767013888
Fail
1568: 687826841265172480
Fail
1569: 687818504314159109
Fail
1570: 687807801670897665
Fail
1571: 687732144991551489
Fail
1572: 687704180304273409
Fail
1573: 687664829264453632
Fail
1574: 687494652870668288
Fail
1575: 687480748861947905
Fail
1576: 687476254459715584
Fail
1577: 687460506001633280
Fail
1578: 687399393394311168
Fail
1579: 687317306314240000
Fail
1580: 687312378585812992
Fail
1581: 687127927494963200
Fail
1582: 687124485711986689
Fail
1583: 687109925361856513
Fail
1584: 687102708889812993
Fail
1585: 687096057537363968
Fail
1586: 686947101016735744
Fail
1587: 686760001961103360
Fail
1588: 686749460672679938
Fail
1589: 686730991906516992
Fail
1590: 686683045143953408
Fail
1591: 686618349602762752
Fail
1592: 686606069955735556
Fail
1593: 686394059078897668
Fail
1594: 686386521809772549
Fail
1595: 686377065986265092
Fail
1596: 686358356425093120
Fail
1597: 686286779679375361
Fail
1598: 686050296934563840
Fail
1599: 686035780142297088
Fail
1600: 686034024800862208
Fail
1601: 686007916130873345
Fail
1602: 686003207160610816
Fail
1603: 685973236358713344
Fail
1604: 685943807276412928
Fail
1605: 685906723014619143
Fail
1606: 685681090388975616
Fail
1607: 685667379192414208
Fail
1608: 685663452032069632
Fail
1609: 685641971164143616
Fail
1610: 685547936038666240
Fail
1611: 685532292383666176
Fail
1612: 685325112850124800
Fail
1613: 685321586178670592
Fail
1614: 685315239903100929
Fail
1615: 685307451701334016
Fail
1616: 685268753634967552
Fail
1617: 685198997565345792
Fail
1618: 685169283572338688
Fail
1619: 684969860808454144
Fail
1620: 684959798585110529
Fail
1621: 684940049151070208
Fail
1622: 684926975086034944
Fail
1623: 684914660081053696
Fail
1624: 684902183876321280
Fail
1625: 684880619965411328
Fail
1626: 684830982659280897
Fail
1627: 684800227459624960
Fail
1628: 684594889858887680
Fail
1629: 684588130326986752
Fail
1630: 684567543613382656
Fail
1631: 684538444857667585
Fail
1632: 684481074559381504
Fail
1633: 684460069371654144
Fail
1634: 684241637099323392
Fail
1635: 684225744407494656
Fail
1636: 684222868335505415
Fail
1637: 684200372118904832
Fail
1638: 684195085588783105
Fail
1639: 684188786104872960
Fail
1640: 684177701129875456
Fail
1641: 684147889187209216
Fail
1642: 684122891630342144
Fail
1643: 684097758874210310
Fail
1644: 683857920510050305
Fail
1645: 683852578183077888
Fail
1646: 683849932751646720
Fail
1647: 683834909291606017
Fail
1648: 683828599284170753
Fail
1649: 683773439333797890
Fail
1650: 683742671509258241
Fail
1651: 683515932363329536
Fail
1652: 683498322573824003
Fail
1653: 683481228088049664
Fail
1654: 683462770029932544
Fail
1655: 683449695444799489
Fail
1656: 683391852557561860
Fail
1657: 683357973142474752
Fail
1658: 683142553609318400
Fail
1659: 683111407806746624
Fail
1660: 683098815881154561
Fail
1661: 683078886620553216
Fail
1662: 683030066213818368
Fail
1663: 682962037429899265
Fail
1664: 682808988178739200
Fail
1665: 682788441537560576
Fail
1666: 682750546109968385
Fail
1667: 682697186228989953
Fail
1668: 682662431982772225
Fail
1669: 682638830361513985
Fail
1670: 682429480204398592
Fail
1671: 682406705142087680
Fail
1672: 682393905736888321
Fail
1673: 682389078323662849
Fail
1674: 682303737705140231
Fail
1675: 682259524040966145
Fail
1676: 682242692827447297
Fail
1677: 682088079302213632
Fail
1678: 682059653698686977
Fail
1679: 682047327939461121
Fail
1680: 682032003584274432
Fail
1681: 682003177596559360
Fail
1682: 681981167097122816
Fail
1683: 681891461017812993
Fail
1684: 681694085539872773
Fail
1685: 681679526984871937
Fail
1686: 681654059175129088
Fail
1687: 681610798867845120
Fail
1688: 681579835668455424
Fail
1689: 681523177663676416
Fail
1690: 681340665377193984
Fail
1691: 681339448655802368
Fail
1692: 681320187870711809
Fail
1693: 681302363064414209
Fail
1694: 681297372102656000
Fail
1695: 681281657291280384
Fail
1696: 681261549936340994
Fail
1697: 681242418453299201
Fail
1698: 681231109724700672
Fail
1699: 681193455364796417
Fail
1700: 680970795137544192
Fail
1701: 680959110691590145
Fail
1702: 680940246314430465
Fail
1703: 680934982542561280
Fail
1704: 680913438424612864
Fail
1705: 680889648562991104
Fail
1706: 680836378243002368
Fail
1707: 680805554198020098
Fail
1708: 680801747103793152
Fail
1709: 680798457301471234
Fail
1710: 680609293079592961
Fail
1711: 680583894916304897
Fail
1712: 680497766108381184
Fail
1713: 680494726643068929
Fail
1714: 680473011644985345
Fail
1715: 680440374763077632
Fail
1716: 680221482581123072
Fail
1717: 680206703334408192
Fail
1718: 680191257256136705
Fail
1719: 680176173301628928
Fail
1720: 680161097740095489
Fail
1721: 680145970311643136
Fail
1722: 680130881361686529
Fail
1723: 680115823365742593
Fail
1724: 680100725817409536
Fail
1725: 680085611152338944
Fail
1726: 680070545539371008
Fail
1727: 680055455951884288
Fail
1728: 679877062409191424
Fail
1729: 679872969355714560
Fail
1730: 679862121895714818
Fail
1731: 679854723806179328
Fail
1732: 679844490799091713
Fail
1733: 679828447187857408
Fail
1734: 679777920601223168
Fail
1735: 679736210798047232
Fail
1736: 679729593985699840
Fail
1737: 679722016581222400
Fail
1738: 679530280114372609
Fail
1739: 679527802031484928
Fail
1740: 679511351870550016
Fail
1741: 679503373272485890
Fail
1742: 679475951516934144
Fail
1743: 679462823135686656
Fail
1744: 679405845277462528
Fail
1745: 679158373988876288
Fail
1746: 679148763231985668
Fail
1747: 679132435750195208
Fail
1748: 679111216690831360
Fail
1749: 679062614270468097
Fail
1750: 679047485189439488
Fail
1751: 679001094530465792
Fail
1752: 678991772295516161
Fail
1753: 678969228704284672
Fail
1754: 678800283649069056
Fail
1755: 678798276842360832
Fail
1756: 678774928607469569
Fail
1757: 678767140346941444
Fail
1758: 678764513869611008
Fail
1759: 678755239630127104
Fail
1760: 678740035362037760
Fail
1761: 678708137298427904
Fail
1762: 678675843183484930
Fail
1763: 678643457146150913
Fail
1764: 678446151570427904
Fail
1765: 678424312106393600
Fail
1766: 678410210315247616
Fail
1767: 678399652199309312
Fail
1768: 678396796259975168
Fail
1769: 678389028614488064
Fail
1770: 678380236862578688
Fail
1771: 678341075375947776
Fail
1772: 678334497360859136
Fail
1773: 678278586130948096
Fail
1774: 678255464182861824
Fail
1775: 678023323247357953
Fail
1776: 678021115718029313
Fail
1777: 677961670166224897
Fail
1778: 677918531514703872
Fail
1779: 677895101218201600
Fail
1780: 677716515794329600
Fail
1781: 677700003327029250
Fail
1782: 677698403548192770
Fail
1783: 677687604918272002
Fail
1784: 677673981332312066
Fail
1785: 677662372920729601
Fail
1786: 677644091929329666
Fail
1787: 677573743309385728
Fail
1788: 677565715327688705
Fail
1789: 677557565589463040
Fail
1790: 677547928504967168
Fail
1791: 677530072887205888
Fail
1792: 677335745548390400
Fail
1793: 677334615166730240
Fail
1794: 677331501395156992
Fail
1795: 677328882937298944
Fail
1796: 677314812125323265
Fail
1797: 677301033169788928
Fail
1798: 677269281705472000
Fail
1799: 677228873407442944
Fail
1800: 677187300187611136
Fail
1801: 676975532580409345
Fail
1802: 676957860086095872
Fail
1803: 676949632774234114
Fail
1804: 676948236477857792
Fail
1805: 676946864479084545
Fail
1806: 676942428000112642
Fail
1807: 676936541936185344
Fail
1808: 676916996760600576
Fail
1809: 676897532954456065
Fail
1810: 676864501615042560
Fail
1811: 676821958043033607
Fail
1812: 676819651066732545
Fail
1813: 676811746707918848
Fail
1814: 676776431406465024
Fail
1815: 676617503762681856
Fail
1816: 676613908052996102
Fail
1817: 676606785097199616
Fail
1818: 676603393314578432
Fail
1819: 676593408224403456
Fail
1820: 676590572941893632
Fail
1821: 676588346097852417
Fail
1822: 676582956622721024
Fail
1823: 676575501977128964
Fail
1824: 676533798876651520
Fail
1825: 676496375194980353
Fail
1826: 676470639084101634
Fail
1827: 676440007570247681
Fail
1828: 676430933382295552
Fail
1829: 676263575653122048
Fail
1830: 676237365392908289
Fail
1831: 676219687039057920
Fail
1832: 676215927814406144
Fail
1833: 676191832485810177
Fail
1834: 676146341966438401
Fail
1835: 676121918416756736
Fail
1836: 676101918813499392
Fail
1837: 676098748976615425
Fail
1838: 676089483918516224
Fail
1839: 675898130735476737
Fail
1840: 675891555769696257
Fail
1841: 675888385639251968
Fail
1842: 675878199931371520
Fail
1843: 675870721063669760
Fail
1844: 675853064436391936
Fail
1845: 675849018447167488
Fail
1846: 675845657354215424
Fail
1847: 675822767435051008
Fail
1848: 675820929667219457
Fail
1849: 675798442703122432
Fail
1850: 675781562965868544
Fail
1851: 675740360753160193
Fail
1852: 675710890956750848
Fail
1853: 675707330206547968
Fail
1854: 675706639471788032
Fail
1855: 675534494439489536
Fail
1856: 675531475945709568
Fail
1857: 675522403582218240
Fail
1858: 675517828909424640
Fail
1859: 675501075957489664
Fail
1860: 675497103322386432
Fail
1861: 675489971617296384
Fail
1862: 675483430902214656
Fail
1863: 675432746517426176
Fail
1864: 675372240448454658
Fail
1865: 675362609739206656
Fail
1866: 675354435921575936
Fail
1867: 675349384339542016
Fail
1868: 675334060156301312
Fail
1869: 675166823650848770
Fail
1870: 675153376133427200
Fail
1871: 675149409102012420
Fail
1872: 675147105808306176
Fail
1873: 675146535592706048
Fail
1874: 675145476954566656
Fail
1875: 675135153782571009
Fail
1876: 675113801096802304
Fail
1877: 675111688094527488
Fail
1878: 675109292475830276
Fail
1879: 675047298674663426
Fail
1880: 675015141583413248
Fail
1881: 675006312288268288
Fail
1882: 675003128568291329
Fail
1883: 674999807681908736
Fail
1884: 674805413498527744
Fail
1885: 674800520222154752
Fail
1886: 674793399141146624
Fail
1887: 674790488185167872
Fail
1888: 674788554665512960
Fail
1889: 674781762103414784
Fail
1890: 674774481756377088
Fail
1891: 674767892831932416
Fail
1892: 674764817387900928
Fail
1893: 674754018082705410
Fail
1894: 674752233200820224
Fail
1895: 674743008475090944
Fail
1896: 674742531037511680
Fail
1897: 674739953134403584
Fail
1898: 674737130913071104
Fail
1899: 674690135443775488
Fail
1900: 674670581682434048
Fail
1901: 674664755118911488
Fail
1902: 674646392044941312
Fail
1903: 674644256330530816
Fail
1904: 674638615994089473
Fail
1905: 674632714662858753
Fail
1906: 674606911342424069
Fail
1907: 674468880899788800
Fail
1908: 674447403907457024
Fail
1909: 674436901579923456
Fail
1910: 674422304705744896
Fail
1911: 674416750885273600
Fail
1912: 674410619106390016
Fail
1913: 674394782723014656
Fail
1914: 674372068062928900
Fail
1915: 674330906434379776
Fail
1916: 674318007229923329
Fail
1917: 674307341513269249
Fail
1918: 674291837063053312
Fail
1919: 674271431610523648
Fail
1920: 674269164442398721
Fail
1921: 674265582246694913
Fail
1922: 674262580978937856
Fail
1923: 674255168825880576
Fail
1924: 674082852460433408
Fail
1925: 674075285688614912
Fail
1926: 674063288070742018
Fail
1927: 674053186244734976
Fail
1928: 674051556661161984
Fail
1929: 674045139690631169
Fail
1930: 674042553264685056
Fail
1931: 674038233588723717
Fail
1932: 674036086168010753
Fail
1933: 674024893172875264
Fail
1934: 674019345211760640
Fail
1935: 674014384960745472
Fail
1936: 674008982932058114
Fail
1937: 673956914389192708
Fail
1938: 673919437611909120
Fail
1939: 673906403526995968
Fail
1940: 673887867907739649
Fail
1941: 673716320723169284
Fail
1942: 673715861853720576
Fail
1943: 673711475735838725
Fail
1944: 673709992831262724
Fail
1945: 673708611235921920
Fail
1946: 673707060090052608
Fail
1947: 673705679337693185
Fail
1948: 673700254269775872
Fail
1949: 673697980713705472
Fail
1950: 673689733134946305
Fail
1951: 673688752737402881
Fail
1952: 673686845050527744
Fail
1953: 673680198160809984
Fail
1954: 673662677122719744
Fail
1955: 673656262056419329
Fail
1956: 673636718965334016
Fail
1957: 673612854080196609
Fail
1958: 673583129559498752
Fail
1959: 673580926094458881
Fail
1960: 673576835670777856
Fail
1961: 673363615379013632
Fail
1962: 673359818736984064
Fail
1963: 673355879178194945
Fail
1964: 673352124999274496
Fail
1965: 673350198937153538
Fail
1966: 673345638550134785
Fail
1967: 673343217010679808
Fail
1968: 673342308415348736
Fail
1969: 673320132811366400
Fail
1970: 673317986296586240
Fail
1971: 673295268553605120
Fail
1972: 673270968295534593
Fail
1973: 673240798075449344
Fail
1974: 673213039743795200
Fail
1975: 673148804208660480
Fail
1976: 672997845381865473
Fail
1977: 672995267319328768
Fail
1978: 672988786805112832
Fail
1979: 672984142909456390
Fail
1980: 672980819271634944
Fail
1981: 672975131468300288
Fail
1982: 672970152493887488
Fail
1983: 672968025906282496
Fail
1984: 672964561327235073
Fail
1985: 672902681409806336
Fail
1986: 672898206762672129
Fail
1987: 672884426393653248
Fail
1988: 672877615439593473
Fail
1989: 672834301050937345
Fail
1990: 672828477930868736
Fail
1991: 672640509974827008
Fail
1992: 672622327801233409
Fail
1993: 672614745925664768
Fail
1994: 672609152938721280
Fail
1995: 672604026190569472
Fail
1996: 672594978741354496
Fail
1997: 672591762242805761
Fail
1998: 672591271085670400
Fail
1999: 672538107540070400
Fail
2000: 672523490734551040
Fail
2001: 672488522314567680
Fail
2002: 672482722825261057
Fail
2003: 672481316919734272
Fail
2004: 672475084225949696
Fail
2005: 672466075045466113
Fail
2006: 672272411274932228
Fail
2007: 672267570918129665
Fail
2008: 672264251789176834
Fail
2009: 672256522047614977
Fail
2010: 672254177670729728
Fail
2011: 672248013293752320
Fail
2012: 672245253877968896
Fail
2013: 672239279297454080
Fail
2014: 672231046314901505
Fail
2015: 672222792075620352
Fail
2016: 672205392827572224
Fail
2017: 672169685991993344
Fail
2018: 672160042234327040
Fail
2019: 672139350159835138
Fail
2020: 672125275208069120
Fail
2021: 672095186491711488
Fail
2022: 672082170312290304
Fail
2023: 672068090318987265
Fail
2024: 671896809300709376
Fail
2025: 671891728106971137
Fail
2026: 671882082306625538
Fail
2027: 671879137494245376
Fail
2028: 671874878652489728
Fail
2029: 671866342182637568
Fail
2030: 671855973984772097
Fail
2031: 671789708968640512
Fail
2032: 671768281401958400
Fail
2033: 671763349865160704
Fail
2034: 671744970634719232
Fail
2035: 671743150407421952
Fail
2036: 671735591348891648
Fail
2037: 671729906628341761
Fail
2038: 671561002136281088
Fail
2039: 671550332464455680
Fail
2040: 671547767500775424
Fail
2041: 671544874165002241
Fail
2042: 671542985629241344
Fail
2043: 671538301157904385
Fail
2044: 671536543010570240
Fail
2045: 671533943490011136
Fail
2046: 671528761649688577
Fail
2047: 671520732782923777
Fail
2048: 671518598289059840
Fail
2049: 671511350426865664
Fail
2050: 671504605491109889
Fail
2051: 671497587707535361
Fail
2052: 671488513339211776
Fail
2053: 671486386088865792
Fail
2054: 671485057807351808
Fail
2055: 671390180817915904
Fail
2056: 671362598324076544
Fail
2057: 671357843010908160
Fail
2058: 671355857343524864
Fail
2059: 671347597085433856
Fail
2060: 671186162933985280
Fail
2061: 671182547775299584
Fail
2062: 671166507850801152
Fail
2063: 671163268581498880
Fail
2064: 671159727754231808
Fail
2065: 671154572044468225
Fail
2066: 671151324042559489
Fail
2067: 671147085991960577
Fail
2068: 671141549288370177
Fail
2069: 671138694582165504
Fail
2070: 671134062904504320
Fail
2071: 671122204919246848
Fail
2072: 671115716440031232
Fail
2073: 671109016219725825
Fail
2074: 670995969505435648
Fail
2075: 670842764863651840
Fail
2076: 670840546554966016
Fail
2077: 670838202509447168
Fail
2078: 670833812859932673
Fail
2079: 670832455012716544
Fail
2080: 670826280409919488
Fail
2081: 670823764196741120
Fail
2082: 670822709593571328
Fail
2083: 670815497391357952
Fail
2084: 670811965569282048
Fail
2085: 670807719151067136
Fail
2086: 670804601705242624
Fail
2087: 670803562457407488
Fail
2088: 670797304698376195
Fail
2089: 670792680469889025
Fail
2090: 670789397210615808
Fail
2091: 670786190031921152
Fail
2092: 670783437142401025
Fail
2093: 670782429121134593
Fail
2094: 670780561024270336
Fail
2095: 670778058496974848
Fail
2096: 670764103623966721
Fail
2097: 670755717859713024
Fail
2098: 670733412878163972
Fail
2099: 670727704916926465
Fail
2100: 670717338665226240
Fail
2101: 670704688707301377
Fail
2102: 670691627984359425
Fail
2103: 670679630144274432
Fail
2104: 670676092097810432
Fail
2105: 670668383499735048
Fail
2106: 670474236058800128
Fail
2107: 670468609693655041
Fail
2108: 670465786746662913
Fail
2109: 670452855871037440
Fail
2110: 670449342516494336
Fail
2111: 670444955656130560
Fail
2112: 670442337873600512
Fail
2113: 670435821946826752
Fail
2114: 670434127938719744
Fail
2115: 670433248821026816
Fail
2116: 670428280563085312
Fail
2117: 670427002554466305
Fail
2118: 670421925039075328
Fail
2119: 670420569653809152
Fail
2120: 670417414769758208
Fail
2121: 670411370698022913
Fail
2122: 670408998013820928
Fail
2123: 670403879788544000
Fail
2124: 670385711116361728
Fail
2125: 670374371102445568
Fail
2126: 670361874861563904
Fail
2127: 670338931251150849
Fail
2128: 670319130621435904
Fail
2129: 670303360680108032
Fail
2130: 670290420111441920
Fail
2131: 670093938074779648
Fail
2132: 670086499208155136
Fail
2133: 670079681849372674
Fail
2134: 670073503555706880
Fail
2135: 670069087419133954
Fail
2136: 670061506722140161
Fail
2137: 670055038660800512
Fail
2138: 670046952931721218
Fail
2139: 670040295598354432
Fail
2140: 670037189829525505
Fail
2141: 670003130994700288
Fail
2142: 669993076832759809
Fail
2143: 669972011175813120
Fail
2144: 669970042633789440
Fail
2145: 669942763794931712
Fail
2146: 669926384437997569
Fail
2147: 669923323644657664
Fail
2148: 669753178989142016
Fail
2149: 669749430875258880
Fail
2150: 669684865554620416
Fail
2151: 669683899023405056
Fail
2152: 669682095984410625
Fail
2153: 669680153564442624
Fail
2154: 669661792646373376
Fail
2155: 669625907762618368
Fail
2156: 669603084620980224
Fail
2157: 669597912108789760
Fail
2158: 669583744538451968
Fail
2159: 669573570759163904
Fail
2160: 669571471778410496
Fail
2161: 669567591774625800
Fail
2162: 669564461267722241
Fail
2163: 669393256313184256
Fail
2164: 669375718304980992
Fail
2165: 669371483794317312
Fail
2166: 669367896104181761
Fail
2167: 669363888236994561
Fail
2168: 669359674819481600
Fail
2169: 669354382627049472
Fail
2170: 669353438988365824
Fail
2171: 669351434509529089
Fail
2172: 669328503091937280
Fail
2173: 669327207240699904
Fail
2174: 669324657376567296
Fail
2175: 669216679721873412
Fail
2176: 669214165781868544
Fail
2177: 669203728096960512
Fail
2178: 669037058363662336
Fail
2179: 669015743032369152
Fail
2180: 669006782128353280
Fail
2181: 669000397445533696
Fail
2182: 668994913074286592
Fail
2183: 668992363537309700
Fail
2184: 668989615043424256
Fail
2185: 668988183816871936
Fail
2186: 668986018524233728
Fail
2187: 668981893510119424
Fail
2188: 668979806671884288
Fail
2189: 668975677807423489
Fail
2190: 668967877119254528
Fail
2191: 668960084974809088
Fail
2192: 668955713004314625
Fail
2193: 668932921458302977
Fail
2194: 668902994700836864
Fail
2195: 668892474547511297
Fail
2196: 668872652652679168
Fail
2197: 668852170888998912
Fail
2198: 668826086256599040
Fail
2199: 668815180734689280
Fail
2200: 668779399630725120
Fail
2201: 668655139528511488
Fail
2202: 668645506898350081
Fail
2203: 668643542311546881
Fail
2204: 668641109086707712
Fail
2205: 668636665813057536
Fail
2206: 668633411083464705
Fail
2207: 668631377374486528
Fail
2208: 668627278264475648
Fail
2209: 668625577880875008
Fail
2210: 668623201287675904
Fail
2211: 668620235289837568
Fail
2212: 668614819948453888
Fail
2213: 668587383441514497
Fail
2214: 668567822092664832
Fail
2215: 668544745690562560
Fail
2216: 668542336805281792
Fail
2217: 668537837512433665
Fail
2218: 668528771708952576
Fail
2219: 668507509523615744
Fail
2220: 668496999348633600
Fail
2221: 668484198282485761
Fail
2222: 668480044826800133
Fail
2223: 668466899341221888
Fail
2224: 668297328638447616
Fail
2225: 668291999406125056
Fail
2226: 668286279830867968
Fail
2227: 668274247790391296
Fail
2228: 668268907921326080
Fail
2229: 668256321989451776
Fail
2230: 668248472370458624
Fail
2231: 668237644992782336
Fail
2232: 668226093875376128
Fail
2233: 668221241640230912
Fail
2234: 668204964695683073
Fail
2235: 668190681446379520
Fail
2236: 668171859951755264
Fail
2237: 668154635664932864
Fail
2238: 668142349051129856
Fail
2239: 668113020489474048
Fail
2240: 667937095915278337
Fail
2241: 667924896115245057
Fail
2242: 667915453470232577
Fail
2243: 667911425562669056
Fail
2244: 667902449697558528
Fail
2245: 667886921285246976
Fail
2246: 667885044254572545
Fail
2247: 667878741721415682
Fail
2248: 667873844930215936
Fail
2249: 667866724293877760
Fail
2250: 667861340749471744
Fail
2251: 667832474953625600
Fail
2252: 667806454573760512
Fail
2253: 667801013445750784
Fail
2254: 667793409583771648
Fail
2255: 667782464991965184
Fail
2256: 667773195014021121
Fail
2257: 667766675769573376
Fail
2258: 667728196545200128
Fail
2259: 667724302356258817
Fail
2260: 667550904950915073
Fail
2261: 667550882905632768
Fail
2262: 667549055577362432
Fail
2263: 667546741521195010
Fail
2264: 667544320556335104
Fail
2265: 667538891197542400
Fail
2266: 667534815156183040
Fail
2267: 667530908589760512
Fail
2268: 667524857454854144
Fail
2269: 667517642048163840
Fail
2270: 667509364010450944
Fail
2271: 667502640335572993
Fail
2272: 667495797102141441
Fail
2273: 667491009379606528
Fail
2274: 667470559035432960
Fail
2275: 667455448082227200
Fail
2276: 667453023279554560
Fail
2277: 667443425659232256
Fail
2278: 667437278097252352
Fail
2279: 667435689202614272
Fail
2280: 667405339315146752
Fail
2281: 667393430834667520
Fail
2282: 667369227918143488
Fail
2283: 667211855547486208
Fail
2284: 667200525029539841
Fail
2285: 667192066997374976
Fail
2286: 667188689915760640
Fail
2287: 667182792070062081
Fail
2288: 667177989038297088
Fail
2289: 667176164155375616
Fail
2290: 667174963120574464
Fail
2291: 667171260800061440
Fail
2292: 667165590075940865
Fail
2293: 667160273090932737
Fail
2294: 667152164079423490
Fail
2295: 667138269671505920
Fail
2296: 667119796878725120
Fail
2297: 667090893657276420
Fail
2298: 667073648344346624
Fail
2299: 667070482143944705
Fail
2300: 667065535570550784
Fail
2301: 667062181243039745
Fail
2302: 667044094246576128
Fail
2303: 667012601033924608
Fail
2304: 666996132027977728
Fail
2305: 666983947667116034
Fail
2306: 666837028449972224
Fail
2307: 666835007768551424
Fail
2308: 666826780179869698
Fail
2309: 666817836334096384
Fail
2310: 666804364988780544
Fail
2311: 666786068205871104
Fail
2312: 666781792255496192
Fail
2313: 666776908487630848
Fail
2314: 666739327293083650
Fail
2315: 666701168228331520
Fail
2316: 666691418707132416
Fail
2317: 666649482315059201
Fail
2318: 666644823164719104
Fail
2319: 666454714377183233
Fail
2320: 666447344410484738
Fail
2321: 666437273139982337
Fail
2322: 666435652385423360
Fail
2323: 666430724426358785
Fail
2324: 666428276349472768
Fail
2325: 666421158376562688
Fail
2326: 666418789513326592
Fail
2327: 666411507551481857
Fail
2328: 666407126856765440
Fail
2329: 666396247373291520
Fail
2330: 666373753744588802
Fail
2331: 666362758909284353
Fail
2332: 666353288456101888
Fail
2333: 666345417576210432
Fail
2334: 666337882303524864
Fail
2335: 666293911632134144
Fail
2336: 666287406224695296
Fail
2337: 666273097616637952
Fail
2338: 666268910803644416
Fail
2339: 666104133288665088
Fail
2340: 666102155909144576
Fail
2341: 666099513787052032
Fail
2342: 666094000022159362
Fail
2343: 666082916733198337
Fail
2344: 666073100786774016
Fail
2345: 666071193221509120
Fail
2346: 666063827256086533
Fail
2347: 666058600524156928
Fail
2348: 666057090499244032
Fail
2349: 666055525042405380
Fail
2350: 666051853826850816
Fail
2351: 666050758794694657
Fail
2352: 666049248165822465
Fail
2353: 666044226329800704
Fail
2354: 666033412701032449
Fail
2355: 666029285002620928
Fail
2356: 666020888022790149
Fail
2173.7915218000003
{892420643555336193: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 892177421306343426: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 891815181378084864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 891689557279858688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 891327558926688256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 891087950875897856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 890971913173991426: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 890729181411237888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 890609185150312448: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 890240255349198849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 890006608113172480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 889880896479866881: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 889665388333682689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 889638837579907072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 889531135344209921: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 889278841981685760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 888917238123831296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 888804989199671297: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 888554962724278272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 888202515573088257: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 888078434458587136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 887705289381826560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 887517139158093824: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 887473957103951883: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 887343217045368832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 887101392804085760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886983233522544640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886736880519319552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886680336477933568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886366144734445568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886267009285017600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886258384151887873: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 886054160059072513: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 885984800019947520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 885528943205470208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 885518971528720385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 885311592912609280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 885167619883638784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 884925521741709313: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 884876753390489601: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 884562892145688576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 884441805382717440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 884247878851493888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 884162670584377345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 883838122936631299: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 883482846933004288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 883360690899218434: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 883117836046086144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 882992080364220416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 882762694511734784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 882627270321602560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 882268110199369728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 882045870035918850: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 881906580714921986: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 881666595344535552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 881633300179243008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 881536004380872706: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 881268444196462592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 880935762899988482: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 880872448815771648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 880465832366813184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 880221127280381952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 880095782870896641: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879862464715927552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879674319642796034: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879492040517615616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879415818425184262: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879376492567855104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879130579576475649: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879050749262655488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 879008229531029506: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 878776093423087618: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 878604707211726852: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 878404777348136964: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 878316110768087041: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 878281511006478336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 878057613040115712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 877736472329191424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 877611172832227328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 877556246731214848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 877316821321428993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 877201837425926144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 876838120628539392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 876537666061221889: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 876484053909872640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 876120275196170240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 875747767867523072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 875144289856114688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 875097192612077568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 875021211251597312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 874680097055178752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 874434818259525634: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 874296783580663808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 874057562936811520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 874012996292530176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 873697596434513921: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 873580283840344065: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 873337748698140672: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 873213775632977920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872967104147763200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872820683541237760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872668790621863937: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872620804844003328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872486979161796608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872261713294495745: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 872122724285648897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 871879754684805121: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 871762521631449091: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 871515927908634625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 871166179821445120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 871102520638267392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 871032628920680449: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 870804317367881728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 870726314365509632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 870656317836468226: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 870374049280663552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 870308999962521604: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 870063196459192321: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 869988702071779329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 869772420881756160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 869702957897576449: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 869596645499047938: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 869227993411051520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 868880397819494401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 868639477480148993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 868622495443632128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 868552278524837888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 867900495410671616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 867774946302451713: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 867421006826221569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 867072653475098625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 867051520902168576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 866816280283807744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 866720684873056260: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 866686824827068416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 866450705531457537: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 866334964761202691: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 866094527597207552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 865718153858494464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 865359393868664832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 865006731092295680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 864873206498414592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 864279568663928832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 864197398364647424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863907417377173506: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863553081350529029: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863471782782697472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863432100342583297: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863427515083354112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863079547188785154: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 863062471531167744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 862831371563274240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 862722525377298433: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 862457590147678208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 862096992088072192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 861769973181624320: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 861383897657036800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 861288531465048066: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 861005113778896900: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860981674716409858: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860924035999428608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860563773140209665: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860524505164394496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860276583193509888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860184849394610176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 860177593139703809: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 859924526012018688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 859851578198683649: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 859607811541651456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 859196978902773760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 859074603037188101: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 858860390427611136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 858843525470990336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 858471635011153920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 858107933456039936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857989990357356544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857746408056729600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857393404942143489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857263160327368704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857214891891077121: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857062103051644929: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 857029823797047296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 856602993587888130: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 856543823941562368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 856526610513747968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 856330835276025856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 856288084350160898: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 856282028240666624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855862651834028034: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855860136149123072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855857698524602368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855851453814013952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855818117272018944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855459453768019968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855245323840757760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 855138241867124737: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 854732716440526848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 854482394044301312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 854365224396361728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 854120357044912130: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 854010172552949760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 853760880890318849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 853639147608842240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 853299958564483072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852936405516943360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852912242202992640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852672615818899456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852553447878664193: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852311364735569921: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852226086759018497: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 852189679701164033: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 851953902622658560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 851861385021730816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 851591660324737024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 851464819735769094: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 851224888060895234: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 850753642995093505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 850380195714523136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 850333567704068097: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 850145622816686080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 850019790995546112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 849776966551130114: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 849668094696017920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 849412302885593088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 849336543269576704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 849051919805034497: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 848690551926992896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 848324959059550208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 848213670039564288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 848212111729840128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847978865427394560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847971574464610304: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847962785489326080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847842811428974592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847617282490613760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847606175596138505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847251039262605312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847157206088847362: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 847116187444137987: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 846874817362120707: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 846514051647705089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 846505985330044928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 846153765933735936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 846139713627017216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 846042936437604353: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 845812042753855489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 845677943972139009: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 845459076796616705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 845397057150107648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 845306882940190720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 845098359547420673: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 844979544864018432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 844973813909606400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 844704788403113984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 844580511645339650: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 844223788422217728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 843981021012017153: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 843856843873095681: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 843604394117681152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 843235543001513987: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 842892208864923648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 842846295480000512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 842765311967449089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 842535590457499648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 842163532590374912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 842115215311396866: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 841833993020538882: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 841680585030541313: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 841439858740625411: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 841320156043304961: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 841314665196081154: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 841077006473256960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840761248237133825: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840728873075638272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840698636975636481: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840696689258311684: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840632337062862849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840370681858686976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 840268004936019968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 839990271299457024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 839549326359670784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 839290600511926273: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 839239871831150596: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838952994649550848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838921590096166913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838916489579200512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838831947270979586: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838561493054533637: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838476387338051585: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838201503651401729: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838150277551247360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838085839343206401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 838083903487373313: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 837820167694528512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 837482249356513284: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 837471256429613056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 837366284874571778: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 837110210464448512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 837012587749474308: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836989968035819520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836753516572119041: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836677758902222849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836648853927522308: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836397794269200385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836380477523124226: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836260088725786625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 836001077879255040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835685285446955009: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835574547218894849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835536468978302976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835309094223372289: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835297930240217089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835264098648616962: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835246439529840640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835172783151792128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 835152434251116546: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834931633769889797: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834786237630337024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834574053763584002: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834477809192075265: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834458053273591808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834209720923721728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834167344700198914: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834089966724603904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 834086379323871233: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 833863086058651648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 833826103416520705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 833732339549220864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 833722901757046785: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 833479644947025920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 833124694597443584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832998151111966721: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832769181346996225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832757312314028032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832682457690300417: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832645525019123713: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832636094638288896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832397543355072512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832369877331693569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832273440279240704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832215909146226688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832215726631055365: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832088576586297345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832040443403784192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 832032802820481025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831939777352105988: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831926988323639298: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831911600680497154: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831670449226514432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831650051525054464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831552930092285952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831322785565769729: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831315979191906304: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831309418084069378: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 831262627380748289: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 830956169170665475: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 830583320585068544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 830173239259324417: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 830097400375152640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829878982036299777: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829861396166877184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829501995190984704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829449946868879360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829374341691346946: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829141528400556032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 829011960981237760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828801551087042563: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828770345708580865: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828708714936930305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828650029636317184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828409743546925057: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828408677031882754: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828381636999917570: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828376505180889089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828372645993398273: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828361771580813312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828046555563323392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 828011680017821696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 827933404142436356: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 827653905312006145: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 827600520311402496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 827324948884643840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 827228250799742977: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 827199976799354881: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826958653328592898: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826848821049180160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826615380357632002: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826598799820865537: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826598365270007810: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826476773533745153: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826240494070030336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826204788643753985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 826115272272650244: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 825876512159186944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 825829644528148480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 825535076884762624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 825147591692263424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 825120256414846976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 825026590719483904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 824796380199809024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 824775126675836928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 824663926340194305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 824325613288833024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 824297048279236611: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 824025158776213504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823939628516474880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823719002937630720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823699002998870016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823581115634085888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823333489516937216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823322678127919110: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 823269594223824897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822975315408461824: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822872901745569793: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822859134160621569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822647212903690241: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822610361945911296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822489057087389700: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822462944365645825: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822244816520155136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 822163064745328640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821886076407029760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821813639212650496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821765923262631936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821522889702862852: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821421320206483457: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821407182352777218: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821153421864615936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821149554670182400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821107785811234820: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 821044531881721856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820837357901512704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820749716845686786: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820690176645140481: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820494788566847489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820446719150292993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820314633777061888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820078625395449857: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 820013781606658049: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819952236453363712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819924195358416896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819711362133872643: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819588359383371776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819347104292290561: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819238181065359361: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819227688460238848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819015337530290176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819015331746349057: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819006400881917954: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 819004803107983360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818646164899774465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818627210458333184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818614493328580609: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818588835076603904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818536468981415936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818307523543449600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818259473185828864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 818145370475810820: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817908911860748288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817827839487737858: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817777686764523521: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817536400337801217: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817502432452313088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817423860136083457: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817415592588222464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817181837579653120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817171292965273600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817120970343411712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 817056546584727552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816829038950027264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816816676327063552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816697700272001025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816450570814898180: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816336735214911488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816091915477250048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816062466425819140: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 816014286006976512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 815990720817401858: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 815966073409433600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 815745968457060357: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 815736392542261248: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 815639385530101762: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 815390420867969024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 814986499976527872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 814638523311648768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 814578408554463233: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 814530161257443328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 814153002265309185: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813944609378369540: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813910438903693312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813812741911748608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813800681631023104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813217897535406080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813202720496779264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813187593374461952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813172488309972993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813157409116065792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813142292504645637: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813130366689148928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813127251579564032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813112105746448384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813096984823349248: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813081950185472002: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813066809284972545: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 813051746834595840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 812781120811126785: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 812747805718642688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 812709060537683968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 812503143955202048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 812466873996607488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 812372279581671427: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 811985624773361665: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 811744202451197953: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 811647686436880384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 811627233043480576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 811386762094317568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 810984652412424192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 810896069567610880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 810657578271330305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 810284430598270976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 810254108431155201: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 809920764300447744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 809808892968534016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 809448704142938112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 809220051211603969: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 809084759137812480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808838249661788160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808733504066486276: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808501579447930884: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808344865868283904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808134635716833280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808106460588765185: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 808001312164028416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 807621403335917568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 807106840509214720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 807059379405148160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 807010152071229440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 806629075125202948: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 806620845233815552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 806576416489959424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 806542213899489280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 806242860592926720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 806219024703037440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805958939288408065: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805932879469572096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805826884734976000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805823200554876929: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805520635690676224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805487436403003392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 805207613751304193: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 804738756058218496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 804475857670639616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 804413760345620481: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 804026241225523202: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 803773340896923648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 803692223237865472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 803638050916102144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 803380650405482500: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 803321560782307329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 803276597545603072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802952499103731712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802624713319034886: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802600418706604034: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802572683846291456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802323869084381190: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802265048156610565: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802247111496568832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802239329049477120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 802185808107208704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801958328846974976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801854953262350336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801538201127157760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801285448605831168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801167903437357056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801127390143516673: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 801115127852503040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800859414831898624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800855607700029440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800751577355128832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800513324630806528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800459316964663297: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800443802682937345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800388270626521089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800188575492947969: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800141422401830912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 800018252395122689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 799774291445383169: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 799757965289017345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 799422933579902976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 799308762079035393: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 799297110730567681: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 799063482566066176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798933969379225600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798925684722855936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798705661114773508: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798701998996647937: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798697898615730177: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798694562394996736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798686750113755136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798682547630837760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798673117451325440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798665375516884993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798644042770751489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798628517273620480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798585098161549313: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798576900688019456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798340744599797760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 798209839306514432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 797971864723324932: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 797545162159308800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 797236660651966464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 797165961484890113: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796904159865868288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796865951799083009: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796759840936919040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796563435802726400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796484825502875648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796387464403357696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796177847564038144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796149749086875649: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796125600683540480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796116448414461957: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796080075804475393: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 796031486298386433: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 795464331001561088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 795400264262053889: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 795076730285391872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 794983741416415232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 794926597468000259: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 794355576146903043: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 794332329137291264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 794205286408003585: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793962221541933056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793845145112371200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793614319594401792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793601777308463104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793500921481273345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793286476301799424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793271401113350145: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793256262322548741: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793241302385262592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793226087023144960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793210959003287553: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793195938047070209: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793180763617361921: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793165685325201412: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793150605191548928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793135492858580992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 793120401413079041: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 792913359805018113: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 792883833364439040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 792773781206999040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 792394556390137856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 792050063153438720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791821351946420224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791784077045166082: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791780927877898241: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791774931465953280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791672322847637504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791406955684368384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791312159183634433: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 791026214425268224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790987426131050500: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790946055508652032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790723298204217344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790698755171364864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790581949425475584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790337589677002753: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790277117346975746: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 790227638568808452: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789986466051088384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789960241177853952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789903600034189313: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789628658055020548: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789599242079838210: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789530877013393408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789314372632018944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789280767834746880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789268448748703744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 789137962068021249: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788908386943430656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788765914992902144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788552643979468800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788412144018661376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788178268662984705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788150585577050112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788070120937619456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 788039637453406209: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 787810552592695296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 787717603741622272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 787397959788929025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 787322443945877504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 787111942498508800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786963064373534720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786729988674449408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786709082849828864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786664955043049472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786595970293370880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786363235746385920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786286427768250368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786233965241827333: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786051337297522688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 786036967502913536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785927819176054784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785872687017132033: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785639753186217984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785533386513321988: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785515384317313025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785264754247995392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 785170936622350336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 784826020293709826: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 784517518371221505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 784431430411685888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 784183165795655680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 784057939640352768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783839966405230592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783821107061198850: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783695101801398276: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783466772167098368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783391753726550016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783347506784731136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783334639985389568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 783085703974514689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 782969140009107456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 782747134529531904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 782722598790725632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 782598640137187329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 782305867769217024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 782021823840026624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781955203444699136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781661882474196992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781655249211752448: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781524693396357120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781308096455073793: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781251288990355457: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 781163403222056960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780931614150983680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780858289093574656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780800785462489090: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780601303617732608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780543529827336192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780496263422808064: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780476555013349377: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780459368902959104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780192070812196864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780092040432480260: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 780074436359819264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 779834332596887552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 779377524342161408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 779124354206535695: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 779123168116150273: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 779056095788752897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778990705243029504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778774459159379968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778764940568104960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778748913645780993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778650543019483137: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778624900596654080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778408200802557953: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778396591732486144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778383385161035776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778286810187399168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778039087836069888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 778027034220126208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 777953400541634568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 777885040357281792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 777684233540206592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 777641927919427584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 777621514455814149: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 777189768882946048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776819012571455488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776813020089548800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776477788987613185: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776249906839351296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776218204058357768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776201521193218049: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776113305656188928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 776088319444877312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775898661951791106: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775842724423557120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775733305207554048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775729183532220416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775364825476165632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775350846108426240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775096608509886464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 775085132600442880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 774757898236878852: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 774639387460112384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 774314403806253056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773985732834758656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773922284943896577: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773704687002451968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773670353721753600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773547596996571136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773336787167145985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773308824254029826: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773247561583001600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 773191612633579521: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772877495989305348: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772826264096874500: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772615324260794368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772581559778025472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772193107915964416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772152991789019136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772117678702071809: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772114945936949249: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 772102971039580160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771908950375665664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771770456517009408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771500966810099713: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771380798096281600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771171053431250945: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771136648247640064: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771102124360998913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771014301343748096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 771004394259247104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770787852854652928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770772759874076672: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770743923962707968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770655142660169732: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770414278348247044: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770293558247038976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770093767776997377: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 770069151037685760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 769940425801170949: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 769695466921623552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 769335591808995329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 769212283578875904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768970937022709760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768909767477751808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768855141948723200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768609597686943744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768596291618299904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768554158521745409: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768473857036525572: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 768193404517830656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 767884188863397888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 767754930266464257: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 767500508068192258: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 767191397493538821: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 767122157629476866: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766864461642756096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766793450729734144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766714921925144576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766693177336135680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766423258543644672: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766313316352462849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766078092750233600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766069199026450432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 766008592277377025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 765719909049503744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 765669560888528897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 765395769549590528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 765371061932261376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 765222098633691136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 764857477905154048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 764259802650378240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 763956972077010945: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 763837565564780549: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 763183847194451968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 763167063695355904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 763103485927849985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 762699858130116608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 762471784394268675: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 762464539388485633: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 762316489655476224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 762035686371364864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761976711479193600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761750502866649088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761745352076779520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761672994376806400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761599872357261312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761371037149827077: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761334018830917632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761292947749015552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761227390836215808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 761004547850530816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760893934457552897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760656994973933572: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760641137271070720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760539183865880579: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760521673607086080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760290219849637889: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760252756032651264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760190180481531904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 760153949710192640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759943073749200896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759923798737051648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759846353224826880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759793422261743616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759566828574212096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759557299618865152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759447681597108224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759446261539934208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759197388317847553: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759159934323924993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759099523532779520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 759047813560868866: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758854675097526272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758828659922702336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758740312047005698: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758474966123810816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758467244762497024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758405701903519748: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758355060040593408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758099635764359168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 758041019896193024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757741869644341248: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757729163776290825: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757725642876129280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757611664640446465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757597904299253760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757596066325864448: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757400162377592832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757393109802180609: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 757354760399941633: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756998049151549440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756939218950160384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756651752796094464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756526248105566208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756303284449767430: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756288534030475264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 756275833623502848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 755955933503782912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 755206590534418437: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 755110668769038337: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754874841593970688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754856583969079297: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754747087846248448: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754482103782404096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754449512966619136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754120377874386944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 754011816964026368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753655901052166144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753420520834629632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753398408988139520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753375668877008896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753298634498793472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753294487569522689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753039830821511168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 753026973505581056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752932432744185856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752917284578922496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752701944171524096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752682090207055872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752660715232722944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752568224206688256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752519690950500352: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752334515931054080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752309394570878976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 752173152931807232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751950017322246144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751937170840121344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751830394383790080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751793661361422336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751598357617971201: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751583847268179968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751538714308972544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751456908746354688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751251247299190784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751205363882532864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 751132876104687617: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750868782890057730: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750719632563142656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750506206503038976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750429297815552001: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750383411068534784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750381685133418496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750147208377409536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750132105863102464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750117059602808832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750101899009982464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750086836815486976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750071704093859840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750056684286914561: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750041628174217216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750026558547456000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 750011400160841729: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749996283729883136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749981277374128128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749774190421639168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749417653287129088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749403093750648834: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749395845976588288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749317047558017024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749075273010798592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749064354620928000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 749036806121881602: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748977405889503236: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748932637671223296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748705597323898880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748699167502000129: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748692773788876800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748575535303884801: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748568946752774144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748346686624440324: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748337862848962560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748324050481647620: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748307329658011649: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 748220828303695873: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747963614829678593: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747933425676525569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747885874273214464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747844099428986880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747816857231626240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747651430853525504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747648653817413632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747600769478692864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747594051852075008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747512671126323200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747461612269887489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747439450712596480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747242308580548608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747219827526344708: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747204161125646336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 747103485104099331: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746906459439529985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746872823977771008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746818907684614144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746790600704425984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746757706116112384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746726898085036033: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746542875601690625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746521445350707200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746507379341139972: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746369468511756288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746131877086527488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 746056683365994496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745789745784041472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745712589599014916: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745433870967832576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745422732645535745: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745314880350101504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745074613265149952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 745057283344719872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 744995568523612160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 744971049620602880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 744709971296780288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 744334592493166593: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 744234799360020481: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 744223424764059648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743980027717509120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743895849529389061: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743835915802583040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743609206067040256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743595368194129920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743545585370791937: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743510151680958465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743253157753532416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743222593470234624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 743210557239623680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742534281772302336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742528092657332225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742465774154047488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742423170473463808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742385895052087300: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742161199639494656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 742150209887731712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 741793263812808706: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 741743634094141440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 741438259667034112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 741303864243200000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 741099773336379392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 741067306818797568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740995100998766593: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740711788199743490: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740699697422163968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740676976021798912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740373189193256964: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740365076218183684: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740359016048689152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 740214038584557568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739979191639244800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739932936087216128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739844404073074688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739623569819336705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739606147276148736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739544079319588864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739485634323156992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 739238157791694849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738891149612572673: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738885046782832640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738883359779196928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738537504001953792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738402415918125056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738184450748633089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738166403467907072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 738156290900254721: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 737826014890496000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 737800304142471168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 737678689543020544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 737445876994609152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 737322739594330112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 737310737551491075: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 736736130620620800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 736392552031657984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 736365877722001409: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 736225175608430592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 736010884653420544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 735991953473572864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 735648611367784448: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 735635087207878657: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 735274964362878976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 735256018284875776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 735137028879360001: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 734912297295085568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 734787690684657664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 734776360183431168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 734559631394082816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 733828123016450049: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 733822306246479872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 733482008106668032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 733460102733135873: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 733109485275860992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 732732193018155009: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 732726085725589504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 732585889486888962: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 732375214819057664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 732005617171337216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 731285275100512256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 731156023742988288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 730924654643314689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 730573383004487680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 730427201120833536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 730211855403241472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 730196704625098752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 729854734790754305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 729838605770891264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 729823566028484608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 729463711119904772: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 729113531270991872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728986383096946689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728760639972315136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728751179681943552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728653952833728512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728409960103686147: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728387165835677696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728046963732717569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728035342121635841: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 728015554473250816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727685679342333952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727644517743104000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727524757080539137: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727314416056803329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727286334147182592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727175381690781696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 727155742655025152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 726935089318363137: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 726887082820554753: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 726828223124897792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 726224900189511680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 725842289046749185: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 725786712245440512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 725729321944506368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 725458796924002305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 724983749226668032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 724771698126512129: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 724405726123311104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 724049859469295616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 724046343203856385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 724004602748780546: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 723912936180330496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 723688335806480385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 723673163800948736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 723179728551723008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 722974582966214656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 722613351520608256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 721503162398597120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 721001180231503872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720785406564900865: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720775346191278080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720415127506415616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720389942216527872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720340705894408192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720059472081784833: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 720043174954147842: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 719991154352222208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 719704490224398336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 719551379208073216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 719367763014393856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 719339463458033665: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 719332531645071360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718971898235854848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718939241951195136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718631497683582976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718613305783398402: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718540630683709445: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718460005985447936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718454725339934721: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718246886998687744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 718234618122661888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717841801130979328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717790033953034240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717537687239008257: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717428917016076293: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717421804990701568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717047459982213120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 717009362452090881: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716802964044845056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716791146589110272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716730379797970944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716447146686459905: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716439118184652801: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716285507865542656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 716080869887381504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715928423106027520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715758151270801409: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715733265223708672: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715704790270025728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715696743237730304: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715680795826982913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715360349751484417: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715342466308784130: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715220193576927233: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715200624753819648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 715009755312439296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714982300363173890: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714962719905021952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714957620017307648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714631576617938945: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714606013974974464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714485234495041536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714258258790387713: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714251586676113411: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714214115368108032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 714141408463036416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713919462244790272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713909862279876608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713900603437621249: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713761197720473600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713411074226274305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713177543487135744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 713175907180089344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712809025985978368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712717840512598017: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712668654853337088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712438159032893441: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712309440758808576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712097430750289920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712092745624633345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712085617388212225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 712065007010385924: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711998809858043904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711968124745228288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711743778164514816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711732680602345472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711694788429553666: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711652651650457602: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711363825979756544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711306686208872448: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 711008018775851008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710997087345876993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710844581445812225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710833117892898816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710658690886586372: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710609963652087808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710588934686908417: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710296729921429505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710283270106132480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710272297844797440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710269109699739648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710153181850935296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710140971284037632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 710117014656950272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709918798883774466: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709901256215666688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709852847387627521: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709566166965075968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709556954897764353: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709519240576036864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709449600415961088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709409458133323776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709225125749587968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709207347839836162: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709198395643068416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709179584944730112: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709158332880297985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 709042156699303936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708853462201716736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708845821941387268: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708834316713893888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708810915978854401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708738143638450176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708711088997666817: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708479650088034305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708469915515297792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708400866336894977: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708356463048204288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708349470027751425: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708149363256774660: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708130923141795840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708119489313951744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708109389455101952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 708026248782585858: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707995814724026368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707983188426153984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707969809498152960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707776935007539200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707741517457260545: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707738799544082433: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707693576495472641: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707629649552134146: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707610948723478529: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707420581654872064: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707411934438625280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707387676719185920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707377100785885184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707315916783140866: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707297311098011648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707059547140169728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707038192327901184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707021089608753152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 707014260413456384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706904523814649856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706901761596989440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706681918348251136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706644897839910912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706593038911545345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706538006853918722: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706516534877929472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706346369204748288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706310011488698368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706291001778950144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706265994973601792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706169069255446529: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706166467411222528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 706153300320784384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705975130514706432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705970349788291072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705898680587526145: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705786532653883392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705591895322394625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705475953783398401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705442520700944385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705428427625635840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705239209544720384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705223444686888960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705102439679201280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 705066031337840642: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704871453724954624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704859558691414016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704847917308362754: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704819833553219584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704761120771465216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704499785726889984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704491224099647488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704480331685040129: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704364645503647744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704347321748819968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704134088924532736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704113298707505153: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 704054845121142784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703774238772166656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703769065844768768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703631701117943808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703611486317502464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703425003149250560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703407252292673536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703382836347330562: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703356393781329922: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703268521220972544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703079050210877440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 703041949650034688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702932127499816960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702899151802126337: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702684942141153280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702671118226825216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702598099714314240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702539513671897089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702332542343577600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702321140488925184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702276748847800320: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 702217446468493312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701981390485725185: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701952816642965504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701889187134500865: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701805642395348998: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701601587219795968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701570477911896070: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701545186879471618: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 701214700881756160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700890391244103680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700864154249383937: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700847567345688576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700796979434098688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700747788515020802: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700518061187723268: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700505138482569216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700462010979500032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700167517596164096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700151421916807169: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700143752053182464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700062718104104960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700029284593901568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 700002074055016451: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699801817392291840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699788877217865730: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699779630832685056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699775878809702401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699691744225525762: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699446877801091073: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699434518667751424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699423671849451520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699413908797464576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699370870310113280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699323444782047232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699088579889332224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699079609774645248: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699072405256409088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699060279947165696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 699036661657767936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698989035503689728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698953797952008193: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698907974262222848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698710712454139905: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698703483621523456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698635131305795584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698549713696649216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698355670425473025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698342080612007937: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698262614669991936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698195409219559425: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 698178924120031232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697995514407682048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697990423684476929: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697943111201378304: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697881462549430272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697630435728322560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697616773278015490: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697596423848730625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697575480820686848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697516214579523584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697482927769255936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697463031882764288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697270446429966336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697259378236399616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697255105972801536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 697242256848379904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696900204696625153: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696894894812565505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696886256886657024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696877980375769088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696754882863349760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696744641916489729: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696713835009417216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696518437233913856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696490539101908992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696488710901260288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696405997980676096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 696100768806522880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695816827381944320: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695794761660297217: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695767669421768709: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695629776980148225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695446424020918272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695409464418041856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695314793360662529: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695095422348574720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695074328191332352: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695064344191721472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 695051054296211456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694925794720792577: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694905863685980160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694669722378485760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694356675654983680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694352839993344000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694342028726001664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694329668942569472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694206574471057408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694183373896572928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 694001791655137281: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693993230313091072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693942351086120961: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693647888581312512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693644216740769793: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693642232151285760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693629975228977152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693622659251335168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693590843962331137: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693582294167244802: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693486665285931008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693280720173801472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693267061318012928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693262851218264065: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693231807727280129: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693155686491000832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693109034023534592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 693095443459342336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692919143163629568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692905862751522816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692901601640583168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692894228850999298: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692828166163931137: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692752401762250755: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692568918515392513: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692535307825213440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692530551048294401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692423280028966913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692417313023332352: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692187005137076224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692158366030913536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692142790915014657: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692041934689402880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 692017291282812928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691820333922455552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691793053716221953: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691756958957883396: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691675652215414786: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691483041324204033: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691459709405118465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691444869282295808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691416866452082688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691321916024623104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691096613310316544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 691090071332753408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690989312272396288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690959652130045952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690938899477221376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690932576555528194: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690735892932222976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690728923253055490: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690690673629138944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690649993829576704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690607260360429569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690597161306841088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690400367696297985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690374419777196032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690360449368465409: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690348396616552449: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690248561355657216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690021994562220032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690015576308211712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 690005060500217858: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689999384604450816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689993469801164801: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689977555533848577: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689905486972461056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689877686181715968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689835978131935233: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689661964914655233: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689659372465688576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689623661272240129: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689599056876867584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689557536375177216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689517482558820352: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689289219123089408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689283819090870273: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689280876073582592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689275259254616065: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689255633275777024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689154315265683456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 689143371370250240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688916208532455424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688908934925697024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688898160958271489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688894073864884227: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688828561667567616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688804835492233216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688789766343622656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688547210804498433: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688519176466644993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688385280030670848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688211956440801280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688179443353796608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688116655151435777: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 688064179421470721: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687841446767013888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687826841265172480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687818504314159109: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687807801670897665: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687732144991551489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687704180304273409: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687664829264453632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687494652870668288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687480748861947905: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687476254459715584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687460506001633280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687399393394311168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687317306314240000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687312378585812992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687127927494963200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687124485711986689: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687109925361856513: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687102708889812993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 687096057537363968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686947101016735744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686760001961103360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686749460672679938: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686730991906516992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686683045143953408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686618349602762752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686606069955735556: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686394059078897668: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686386521809772549: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686377065986265092: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686358356425093120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686286779679375361: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686050296934563840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686035780142297088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686034024800862208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686007916130873345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 686003207160610816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685973236358713344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685943807276412928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685906723014619143: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685681090388975616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685667379192414208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685663452032069632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685641971164143616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685547936038666240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685532292383666176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685325112850124800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685321586178670592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685315239903100929: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685307451701334016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685268753634967552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685198997565345792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 685169283572338688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684969860808454144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684959798585110529: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684940049151070208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684926975086034944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684914660081053696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684902183876321280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684880619965411328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684830982659280897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684800227459624960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684594889858887680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684588130326986752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684567543613382656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684538444857667585: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684481074559381504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684460069371654144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684241637099323392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684225744407494656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684222868335505415: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684200372118904832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684195085588783105: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684188786104872960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684177701129875456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684147889187209216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684122891630342144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 684097758874210310: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683857920510050305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683852578183077888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683849932751646720: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683834909291606017: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683828599284170753: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683773439333797890: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683742671509258241: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683515932363329536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683498322573824003: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683481228088049664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683462770029932544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683449695444799489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683391852557561860: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683357973142474752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683142553609318400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683111407806746624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683098815881154561: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683078886620553216: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 683030066213818368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682962037429899265: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682808988178739200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682788441537560576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682750546109968385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682697186228989953: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682662431982772225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682638830361513985: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682429480204398592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682406705142087680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682393905736888321: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682389078323662849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682303737705140231: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682259524040966145: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682242692827447297: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682088079302213632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682059653698686977: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682047327939461121: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682032003584274432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 682003177596559360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681981167097122816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681891461017812993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681694085539872773: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681679526984871937: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681654059175129088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681610798867845120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681579835668455424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681523177663676416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681340665377193984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681339448655802368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681320187870711809: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681302363064414209: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681297372102656000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681281657291280384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681261549936340994: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681242418453299201: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681231109724700672: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 681193455364796417: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680970795137544192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680959110691590145: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680940246314430465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680934982542561280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680913438424612864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680889648562991104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680836378243002368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680805554198020098: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680801747103793152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680798457301471234: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680609293079592961: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680583894916304897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680497766108381184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680494726643068929: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680473011644985345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680440374763077632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680221482581123072: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680206703334408192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680191257256136705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680176173301628928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680161097740095489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680145970311643136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680130881361686529: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680115823365742593: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680100725817409536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680085611152338944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680070545539371008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 680055455951884288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679877062409191424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679872969355714560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679862121895714818: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679854723806179328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679844490799091713: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679828447187857408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679777920601223168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679736210798047232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679729593985699840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679722016581222400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679530280114372609: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679527802031484928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679511351870550016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679503373272485890: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679475951516934144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679462823135686656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679405845277462528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679158373988876288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679148763231985668: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679132435750195208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679111216690831360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679062614270468097: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679047485189439488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 679001094530465792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678991772295516161: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678969228704284672: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678800283649069056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678798276842360832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678774928607469569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678767140346941444: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678764513869611008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678755239630127104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678740035362037760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678708137298427904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678675843183484930: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678643457146150913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678446151570427904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678424312106393600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678410210315247616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678399652199309312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678396796259975168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678389028614488064: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678380236862578688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678341075375947776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678334497360859136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678278586130948096: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678255464182861824: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678023323247357953: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 678021115718029313: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677961670166224897: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677918531514703872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677895101218201600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677716515794329600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677700003327029250: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677698403548192770: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677687604918272002: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677673981332312066: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677662372920729601: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677644091929329666: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677573743309385728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677565715327688705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677557565589463040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677547928504967168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677530072887205888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677335745548390400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677334615166730240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677331501395156992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677328882937298944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677314812125323265: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677301033169788928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677269281705472000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677228873407442944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 677187300187611136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676975532580409345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676957860086095872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676949632774234114: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676948236477857792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676946864479084545: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676942428000112642: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676936541936185344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676916996760600576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676897532954456065: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676864501615042560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676821958043033607: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676819651066732545: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676811746707918848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676776431406465024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676617503762681856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676613908052996102: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676606785097199616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676603393314578432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676593408224403456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676590572941893632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676588346097852417: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676582956622721024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676575501977128964: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676533798876651520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676496375194980353: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676470639084101634: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676440007570247681: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676430933382295552: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676263575653122048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676237365392908289: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676219687039057920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676215927814406144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676191832485810177: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676146341966438401: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676121918416756736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676101918813499392: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676098748976615425: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 676089483918516224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675898130735476737: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675891555769696257: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675888385639251968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675878199931371520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675870721063669760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675853064436391936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675849018447167488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675845657354215424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675822767435051008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675820929667219457: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675798442703122432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675781562965868544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675740360753160193: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675710890956750848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675707330206547968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675706639471788032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675534494439489536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675531475945709568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675522403582218240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675517828909424640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675501075957489664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675497103322386432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675489971617296384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675483430902214656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675432746517426176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675372240448454658: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675362609739206656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675354435921575936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675349384339542016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675334060156301312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675166823650848770: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675153376133427200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675149409102012420: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675147105808306176: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675146535592706048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675145476954566656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675135153782571009: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675113801096802304: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675111688094527488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675109292475830276: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675047298674663426: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675015141583413248: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675006312288268288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 675003128568291329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674999807681908736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674805413498527744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674800520222154752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674793399141146624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674790488185167872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674788554665512960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674781762103414784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674774481756377088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674767892831932416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674764817387900928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674754018082705410: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674752233200820224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674743008475090944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674742531037511680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674739953134403584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674737130913071104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674690135443775488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674670581682434048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674664755118911488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674646392044941312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674644256330530816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674638615994089473: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674632714662858753: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674606911342424069: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674468880899788800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674447403907457024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674436901579923456: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674422304705744896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674416750885273600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674410619106390016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674394782723014656: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674372068062928900: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674330906434379776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674318007229923329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674307341513269249: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674291837063053312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674271431610523648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674269164442398721: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674265582246694913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674262580978937856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674255168825880576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674082852460433408: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674075285688614912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674063288070742018: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674053186244734976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674051556661161984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674045139690631169: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674042553264685056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674038233588723717: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674036086168010753: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674024893172875264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674019345211760640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674014384960745472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 674008982932058114: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673956914389192708: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673919437611909120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673906403526995968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673887867907739649: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673716320723169284: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673715861853720576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673711475735838725: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673709992831262724: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673708611235921920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673707060090052608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673705679337693185: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673700254269775872: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673697980713705472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673689733134946305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673688752737402881: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673686845050527744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673680198160809984: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673662677122719744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673656262056419329: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673636718965334016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673612854080196609: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673583129559498752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673580926094458881: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673576835670777856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673363615379013632: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673359818736984064: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673355879178194945: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673352124999274496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673350198937153538: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673345638550134785: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673343217010679808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673342308415348736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673320132811366400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673317986296586240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673295268553605120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673270968295534593: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673240798075449344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673213039743795200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 673148804208660480: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672997845381865473: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672995267319328768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672988786805112832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672984142909456390: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672980819271634944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672975131468300288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672970152493887488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672968025906282496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672964561327235073: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672902681409806336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672898206762672129: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672884426393653248: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672877615439593473: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672834301050937345: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672828477930868736: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672640509974827008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672622327801233409: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672614745925664768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672609152938721280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672604026190569472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672594978741354496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672591762242805761: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672591271085670400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672538107540070400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672523490734551040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672488522314567680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672482722825261057: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672481316919734272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672475084225949696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672466075045466113: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672272411274932228: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672267570918129665: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672264251789176834: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672256522047614977: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672254177670729728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672248013293752320: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672245253877968896: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672239279297454080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672231046314901505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672222792075620352: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672205392827572224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672169685991993344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672160042234327040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672139350159835138: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672125275208069120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672095186491711488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672082170312290304: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 672068090318987265: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671896809300709376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671891728106971137: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671882082306625538: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671879137494245376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671874878652489728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671866342182637568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671855973984772097: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671789708968640512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671768281401958400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671763349865160704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671744970634719232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671743150407421952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671735591348891648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671729906628341761: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671561002136281088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671550332464455680: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671547767500775424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671544874165002241: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671542985629241344: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671538301157904385: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671536543010570240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671533943490011136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671528761649688577: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671520732782923777: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671518598289059840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671511350426865664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671504605491109889: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671497587707535361: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671488513339211776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671486386088865792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671485057807351808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671390180817915904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671362598324076544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671357843010908160: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671355857343524864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671347597085433856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671186162933985280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671182547775299584: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671166507850801152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671163268581498880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671159727754231808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671154572044468225: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671151324042559489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671147085991960577: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671141549288370177: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671138694582165504: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671134062904504320: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671122204919246848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671115716440031232: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 671109016219725825: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670995969505435648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670842764863651840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670840546554966016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670838202509447168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670833812859932673: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670832455012716544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670826280409919488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670823764196741120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670822709593571328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670815497391357952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670811965569282048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670807719151067136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670804601705242624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670803562457407488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670797304698376195: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670792680469889025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670789397210615808: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670786190031921152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670783437142401025: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670782429121134593: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670780561024270336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670778058496974848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670764103623966721: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670755717859713024: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670733412878163972: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670727704916926465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670717338665226240: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670704688707301377: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670691627984359425: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670679630144274432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670676092097810432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670668383499735048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670474236058800128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670468609693655041: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670465786746662913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670452855871037440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670449342516494336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670444955656130560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670442337873600512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670435821946826752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670434127938719744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670433248821026816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670428280563085312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670427002554466305: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670421925039075328: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670420569653809152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670417414769758208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670411370698022913: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670408998013820928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670403879788544000: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670385711116361728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670374371102445568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670361874861563904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670338931251150849: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670319130621435904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670303360680108032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670290420111441920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670093938074779648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670086499208155136: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670079681849372674: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670073503555706880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670069087419133954: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670061506722140161: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670055038660800512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670046952931721218: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670040295598354432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670037189829525505: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 670003130994700288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669993076832759809: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669972011175813120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669970042633789440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669942763794931712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669926384437997569: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669923323644657664: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669753178989142016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669749430875258880: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669684865554620416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669683899023405056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669682095984410625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669680153564442624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669661792646373376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669625907762618368: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669603084620980224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669597912108789760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669583744538451968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669573570759163904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669571471778410496: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669567591774625800: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669564461267722241: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669393256313184256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669375718304980992: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669371483794317312: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669367896104181761: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669363888236994561: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669359674819481600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669354382627049472: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669353438988365824: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669351434509529089: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669328503091937280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669327207240699904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669324657376567296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669216679721873412: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669214165781868544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669203728096960512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669037058363662336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669015743032369152: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669006782128353280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 669000397445533696: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668994913074286592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668992363537309700: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668989615043424256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668988183816871936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668986018524233728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668981893510119424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668979806671884288: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668975677807423489: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668967877119254528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668960084974809088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668955713004314625: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668932921458302977: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668902994700836864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668892474547511297: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668872652652679168: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668852170888998912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668826086256599040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668815180734689280: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668779399630725120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668655139528511488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668645506898350081: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668643542311546881: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668641109086707712: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668636665813057536: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668633411083464705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668631377374486528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668627278264475648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668625577880875008: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668623201287675904: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668620235289837568: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668614819948453888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668587383441514497: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668567822092664832: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668544745690562560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668542336805281792: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668537837512433665: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668528771708952576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668507509523615744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668496999348633600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668484198282485761: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668480044826800133: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668466899341221888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668297328638447616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668291999406125056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668286279830867968: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668274247790391296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668268907921326080: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668256321989451776: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668248472370458624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668237644992782336: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668226093875376128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668221241640230912: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668204964695683073: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668190681446379520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668171859951755264: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668154635664932864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668142349051129856: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 668113020489474048: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667937095915278337: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667924896115245057: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667915453470232577: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667911425562669056: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667902449697558528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667886921285246976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667885044254572545: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667878741721415682: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667873844930215936: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667866724293877760: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667861340749471744: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667832474953625600: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667806454573760512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667801013445750784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667793409583771648: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667782464991965184: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667773195014021121: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667766675769573376: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667728196545200128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667724302356258817: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667550904950915073: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667550882905632768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667549055577362432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667546741521195010: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667544320556335104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667538891197542400: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667534815156183040: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667530908589760512: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667524857454854144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667517642048163840: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667509364010450944: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667502640335572993: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667495797102141441: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667491009379606528: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667470559035432960: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667455448082227200: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667453023279554560: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667443425659232256: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667437278097252352: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667435689202614272: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667405339315146752: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667393430834667520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667369227918143488: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667211855547486208: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667200525029539841: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667192066997374976: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667188689915760640: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667182792070062081: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667177989038297088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667176164155375616: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667174963120574464: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667171260800061440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667165590075940865: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667160273090932737: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667152164079423490: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667138269671505920: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667119796878725120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667090893657276420: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667073648344346624: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667070482143944705: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667065535570550784: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667062181243039745: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667044094246576128: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 667012601033924608: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666996132027977728: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666983947667116034: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666837028449972224: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666835007768551424: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666826780179869698: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666817836334096384: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666804364988780544: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666786068205871104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666781792255496192: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666776908487630848: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666739327293083650: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666701168228331520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666691418707132416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666649482315059201: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666644823164719104: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666454714377183233: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666447344410484738: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666437273139982337: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666435652385423360: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666430724426358785: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666428276349472768: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666421158376562688: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666418789513326592: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666411507551481857: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666407126856765440: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666396247373291520: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666373753744588802: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666362758909284353: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666353288456101888: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666345417576210432: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666337882303524864: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666293911632134144: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666287406224695296: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666273097616637952: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666268910803644416: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666104133288665088: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666102155909144576: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666099513787052032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666094000022159362: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666082916733198337: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666073100786774016: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666071193221509120: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666063827256086533: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666058600524156928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666057090499244032: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666055525042405380: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666051853826850816: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666050758794694657: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666049248165822465: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666044226329800704: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666033412701032449: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666029285002620928: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.'), 666020888022790149: Unauthorized('401 Unauthorized\n89 - Invalid or expired token.')}
The file will be downloaded via a url since twitter refused me a developer account for some unknown reasons.
url = 'https://video.udacity-data.com/topher/2018/November/5be5fb7d_tweet-json/tweet-json.txt'
response = req.get(url)
response
<Response [200]>
#saving the file
open('tweet-json.txt', mode ='wb').write(response.content)
10609234
#reading the downloaded file
twitter_df =[]
with open('tweet-json.txt', 'r') as file:
lines = file.readlines()
#reading the file line by line
twitter_df =[]
for line in lines:
parsed_json = json.loads(line)
twitter_df.append({'tweet_id': parsed_json['id'],
'retweet_count': parsed_json['retweet_count'],
'favorite_count': parsed_json['favorite_count']})
tweet_json = pd.DataFrame(twitter_df, columns = ['tweet_id', 'retweet_count', 'favorite_count'])
#viewing the data
tweet_json.head()
| tweet_id | retweet_count | favorite_count | |
|---|---|---|---|
| 0 | 892420643555336193 | 8853 | 39467 |
| 1 | 892177421306343426 | 6514 | 33819 |
| 2 | 891815181378084864 | 4328 | 25461 |
| 3 | 891689557279858688 | 8964 | 42908 |
| 4 | 891327558926688256 | 9774 | 41048 |
In this section, detect and document at least eight (8) quality issues and two (2) tidiness issue. You must use both visual assessment programmatic assessement to assess the data.
Note: pay attention to the following key points when you access the data.
TA.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2356 entries, 0 to 2355 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2356 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2356 non-null object 4 source 2356 non-null object 5 text 2356 non-null object 6 retweeted_status_id 181 non-null float64 7 retweeted_status_user_id 181 non-null float64 8 retweeted_status_timestamp 181 non-null object 9 expanded_urls 2297 non-null object 10 rating_numerator 2356 non-null int64 11 rating_denominator 2356 non-null int64 12 name 2356 non-null object 13 doggo 2356 non-null object 14 floofer 2356 non-null object 15 pupper 2356 non-null object 16 puppo 2356 non-null object dtypes: float64(4), int64(3), object(10) memory usage: 313.0+ KB
TA.head()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phineas. He's a mystical boy. Only eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tilly. She's just checking pup on you.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He is a rare Norwegian Pouncin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Darla. She commenced a snooze mid meal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Franklin. He would like you to stop ca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | None | None | None | None |
TA.tail()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2351 | 666049248165822465 | NaN | NaN | 2015-11-16 00:24:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a 1949 1st generation vulpix. Enj... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666049248... | 5 | 10 | None | None | None | None | None |
| 2352 | 666044226329800704 | NaN | NaN | 2015-11-16 00:04:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a purebred Piers Morgan. Loves to Netf... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666044226... | 6 | 10 | a | None | None | None | None |
| 2353 | 666033412701032449 | NaN | NaN | 2015-11-15 23:21:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a very happy pup. Big fan of well-main... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666033412... | 9 | 10 | a | None | None | None | None |
| 2354 | 666029285002620928 | NaN | NaN | 2015-11-15 23:05:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a western brown Mitsubishi terrier. Up... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666029285... | 7 | 10 | a | None | None | None | None |
| 2355 | 666020888022790149 | NaN | NaN | 2015-11-15 22:32:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a Japanese Irish Setter. Lost eye... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666020888... | 8 | 10 | None | None | None | None | None |
TA.duplicated().sum()
0
TA.tweet_id.duplicated().sum()
0
TA.timestamp.value_counts()
2017-08-01 16:23:56 +0000 1
2016-01-13 02:43:46 +0000 1
2016-01-15 02:41:12 +0000 1
2016-01-15 02:08:05 +0000 1
2016-01-15 01:25:33 +0000 1
..
2016-09-11 21:34:30 +0000 1
2016-09-10 23:54:11 +0000 1
2016-09-10 16:03:16 +0000 1
2016-09-09 18:31:54 +0000 1
2015-11-15 22:32:08 +0000 1
Name: timestamp, Length: 2356, dtype: int64
#double checking to make sure the dataframe does nt contain any data 2018
print('2018' in TA['timestamp'].unique())
False
TA.rating_denominator.value_counts()
10 2333 11 3 50 3 20 2 80 2 70 1 7 1 15 1 150 1 170 1 0 1 90 1 40 1 130 1 110 1 16 1 120 1 2 1 Name: rating_denominator, dtype: int64
TA.rating_numerator.value_counts()
12 558 11 464 10 461 13 351 9 158 8 102 7 55 14 54 5 37 6 32 3 19 4 17 2 9 1 9 75 2 15 2 420 2 0 2 80 1 144 1 17 1 26 1 20 1 121 1 143 1 44 1 60 1 45 1 50 1 99 1 204 1 1776 1 165 1 666 1 27 1 182 1 24 1 960 1 84 1 88 1 Name: rating_numerator, dtype: int64
TA.source.value_counts()
<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a> 2221 <a href="http://vine.co" rel="nofollow">Vine - Make a Scene</a> 91 <a href="http://twitter.com" rel="nofollow">Twitter Web Client</a> 33 <a href="https://about.twitter.com/products/tweetdeck" rel="nofollow">TweetDeck</a> 11 Name: source, dtype: int64
TA.doggo.value_counts()
None 2259 doggo 97 Name: doggo, dtype: int64
TA.floofer.value_counts()
None 2346 floofer 10 Name: floofer, dtype: int64
TA.pupper.value_counts()
None 2099 pupper 257 Name: pupper, dtype: int64
TA.puppo.value_counts()
None 2326 puppo 30 Name: puppo, dtype: int64
TA.retweeted_status_id.value_counts().sum()
181
TA.retweeted_status_user_id.value_counts().sum()
181
TA.rating_denominator.isna().sum()
0
OBSERVATIONS
images.head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
images.tail()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 | True | English_springer | 0.225770 | True | German_short-haired_pointer | 0.175219 | True |
| 2071 | 891689557279858688 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | paper_towel | 0.170278 | False | Labrador_retriever | 0.168086 | True | spatula | 0.040836 | False |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | Chihuahua | 0.716012 | True | malamute | 0.078253 | True | kelpie | 0.031379 | True |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | Chihuahua | 0.323581 | True | Pekinese | 0.090647 | True | papillon | 0.068957 | True |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 0.085851 | False | banana | 0.076110 | False |
images.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2075 entries, 0 to 2074 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2075 non-null int64 1 jpg_url 2075 non-null object 2 img_num 2075 non-null int64 3 p1 2075 non-null object 4 p1_conf 2075 non-null float64 5 p1_dog 2075 non-null bool 6 p2 2075 non-null object 7 p2_conf 2075 non-null float64 8 p2_dog 2075 non-null bool 9 p3 2075 non-null object 10 p3_conf 2075 non-null float64 11 p3_dog 2075 non-null bool dtypes: bool(3), float64(3), int64(2), object(4) memory usage: 152.1+ KB
images.duplicated().sum()
0
images.jpg_url.duplicated().sum()
66
images.isnull().sum()
tweet_id 0 jpg_url 0 img_num 0 p1 0 p1_conf 0 p1_dog 0 p2 0 p2_conf 0 p2_dog 0 p3 0 p3_conf 0 p3_dog 0 dtype: int64
images.describe()
| tweet_id | img_num | p1_conf | p2_conf | p3_conf | |
|---|---|---|---|---|---|
| count | 2.075000e+03 | 2075.000000 | 2075.000000 | 2.075000e+03 | 2.075000e+03 |
| mean | 7.384514e+17 | 1.203855 | 0.594548 | 1.345886e-01 | 6.032417e-02 |
| std | 6.785203e+16 | 0.561875 | 0.271174 | 1.006657e-01 | 5.090593e-02 |
| min | 6.660209e+17 | 1.000000 | 0.044333 | 1.011300e-08 | 1.740170e-10 |
| 25% | 6.764835e+17 | 1.000000 | 0.364412 | 5.388625e-02 | 1.622240e-02 |
| 50% | 7.119988e+17 | 1.000000 | 0.588230 | 1.181810e-01 | 4.944380e-02 |
| 75% | 7.932034e+17 | 1.000000 | 0.843855 | 1.955655e-01 | 9.180755e-02 |
| max | 8.924206e+17 | 4.000000 | 1.000000 | 4.880140e-01 | 2.734190e-01 |
pd.get_option('display.max_rows', None)
#to display more rows
60
images.p1
0 Welsh_springer_spaniel
1 redbone
2 German_shepherd
3 Rhodesian_ridgeback
4 miniature_pinscher
...
2070 basset
2071 paper_towel
2072 Chihuahua
2073 Chihuahua
2074 orange
Name: p1, Length: 2075, dtype: object
we will be using value_counts again to single out unique variables
images.img_num.value_counts()
1 1780 2 198 3 66 4 31 Name: img_num, dtype: int64
those 31 occurences means there are 31 rows of data that do not fall into the most confident category for dog breed analysis , hence they will not be useful to the analysis.
images.p1_dog.value_counts()
True 1532 False 543 Name: p1_dog, dtype: int64
images.p2_dog.value_counts()
True 1553 False 522 Name: p2_dog, dtype: int64
images.p3_dog.value_counts()
True 1499 False 576 Name: p3_dog, dtype: int64
The 3 cells above shows that there are 543(p1_dog),522(p2_dog) and 576(p3_dog) that the neural network does not identify as dogs and hence should not be used for the analysis.
images.p1.value_counts()
golden_retriever 150
Labrador_retriever 100
Pembroke 89
Chihuahua 83
pug 57
...
pillow 1
carousel 1
bald_eagle 1
lorikeet 1
orange 1
Name: p1, Length: 378, dtype: int64
images.p2.value_counts()
Labrador_retriever 104
golden_retriever 92
Cardigan 73
Chihuahua 44
Pomeranian 42
...
medicine_chest 1
quail 1
horse_cart 1
waffle_iron 1
bagel 1
Name: p2, Length: 405, dtype: int64
images.p3.value_counts()
Labrador_retriever 79
Chihuahua 58
golden_retriever 48
Eskimo_dog 38
kelpie 35
..
ox 1
assault_rifle 1
axolotl 1
pot 1
banana 1
Name: p3, Length: 408, dtype: int64
OBSERVATIONS
tweet_json
| tweet_id | retweet_count | favorite_count | |
|---|---|---|---|
| 0 | 892420643555336193 | 8853 | 39467 |
| 1 | 892177421306343426 | 6514 | 33819 |
| 2 | 891815181378084864 | 4328 | 25461 |
| 3 | 891689557279858688 | 8964 | 42908 |
| 4 | 891327558926688256 | 9774 | 41048 |
| ... | ... | ... | ... |
| 2349 | 666049248165822465 | 41 | 111 |
| 2350 | 666044226329800704 | 147 | 311 |
| 2351 | 666033412701032449 | 47 | 128 |
| 2352 | 666029285002620928 | 48 | 132 |
| 2353 | 666020888022790149 | 532 | 2535 |
2354 rows × 3 columns
tweet_json.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2354 entries, 0 to 2353 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2354 non-null int64 1 retweet_count 2354 non-null int64 2 favorite_count 2354 non-null int64 dtypes: int64(3) memory usage: 55.3 KB
tweet_json.tweet_id.value_counts().sum()
2354
tweet_json.retweet_count.value_counts()
1972 5
3652 5
83 5
1207 4
336 4
..
3357 1
3018 1
2181 1
848 1
147 1
Name: retweet_count, Length: 1724, dtype: int64
tweet_json.isna().sum()
tweet_id 0 retweet_count 0 favorite_count 0 dtype: int64
OBSERVATION 1.The tweet_json dataframe have a similar column named tweet_id and hence should be joined to the Twitter_archive(TA) dataframe
OBSERVATIONS FOR TA(TWITTER ARCHIVE) DATAFRAME
OBSERVATIONS FOR IMAGES(TWITTER IMAGES)DATAFRAME
OBSERVATION FOR tweet_json dataframe 1.The tweet_json dataframe have a similar column named tweet_id and hence should be joined to the Twitter_archive(TA) dataframe
In this section, clean all of the issues you documented while assessing.
Note: Make a copy of the original data before cleaning. Cleaning includes merging individual pieces of data according to the rules of tidy data. The result should be a high-quality and tidy master pandas DataFrame (or DataFrames, if appropriate).
# Make copies of original pieces of data
clean_TA = TA.copy()
clean_images = images.copy()
clean_tweet_jason = tweet_json.copy()
clean_TA
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phineas. He's a mystical boy. Only eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tilly. She's just checking pup on you.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He is a rare Norwegian Pouncin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Darla. She commenced a snooze mid meal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Franklin. He would like you to stop ca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | None | None | None | None |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 2351 | 666049248165822465 | NaN | NaN | 2015-11-16 00:24:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a 1949 1st generation vulpix. Enj... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666049248... | 5 | 10 | None | None | None | None | None |
| 2352 | 666044226329800704 | NaN | NaN | 2015-11-16 00:04:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a purebred Piers Morgan. Loves to Netf... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666044226... | 6 | 10 | a | None | None | None | None |
| 2353 | 666033412701032449 | NaN | NaN | 2015-11-15 23:21:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a very happy pup. Big fan of well-main... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666033412... | 9 | 10 | a | None | None | None | None |
| 2354 | 666029285002620928 | NaN | NaN | 2015-11-15 23:05:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a western brown Mitsubishi terrier. Up... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666029285... | 7 | 10 | a | None | None | None | None |
| 2355 | 666020888022790149 | NaN | NaN | 2015-11-15 22:32:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a Japanese Irish Setter. Lost eye... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666020888... | 8 | 10 | None | None | None | None | None |
2356 rows × 17 columns
The columns that are irrelevant involves all related to retweets , since we are meant to keep only originals, they include; in_reply_to_status_id, in_reply_to_user_id, retweeted_status_id, retweeted_status_timestamp, retweeted_status_user_id,source and expanded_urls.
clean_TA.retweeted_status_id.notnull().sum()
#to check how many rows
181
#displaying all the rows to allow for better visual assessment and understanding
pd.set_option('display.max_rows', None)
pd.set_option('display.max_columns', None)
clean_TA.retweeted_status_timestamp.notnull().sum()
#creating a subset of the dataframe
retweets_rows = clean_TA.loc[clean_TA['retweeted_status_id'].notnull()]
list(retweets_rows.index.values)
#list of index to be used for deleting rows with retweet
[19, 32, 36, 68, 73, 74, 78, 91, 95, 97, 101, 109, 118, 124, 130, 132, 137, 146, 155, 159, 160, 165, 171, 180, 182, 185, 194, 195, 204, 211, 212, 222, 230, 231, 247, 250, 260, 266, 272, 273, 281, 285, 286, 289, 298, 302, 303, 307, 309, 310, 319, 327, 332, 340, 341, 343, 357, 359, 366, 382, 386, 397, 399, 406, 411, 415, 420, 422, 425, 431, 434, 435, 438, 446, 447, 450, 453, 455, 462, 465, 469, 475, 476, 479, 485, 488, 506, 522, 530, 535, 538, 541, 543, 546, 552, 555, 558, 561, 566, 568, 574, 577, 581, 583, 586, 589, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 612, 615, 618, 627, 629, 634, 654, 655, 656, 661, 664, 669, 671, 677, 682, 686, 692, 694, 702, 720, 728, 741, 742, 745, 749, 753, 759, 764, 767, 770, 773, 778, 784, 794, 800, 811, 815, 818, 822, 826, 829, 833, 841, 847, 860, 868, 872, 885, 890, 895, 908, 911, 926, 937, 943, 949, 1012, 1023, 1043, 1242, 2259, 2260]
#clean_TA =clean_TA.drop((retweets_rows.index.values),inplace = True)
clean_TA = clean_TA.drop([19,32,36,68,73,74,78,91,95,97,101,109,118,124,130,132,137,146,155,159,160,165,171,180,182,185,194,195,204,211,
212,222,230,231,247,250,260,266,272,273,281,285,286,289,298,302,303,307,309,310,319,327,332,340,341,343,357,
359,366,382,386,397,399,406,411,415,420,422,425,431,434,435,438,446,447,450,453,455,462,465,469,475,476,479,485,
488,506,522,530,535,538,541,543,546,552,555,558,561,566,568,574,577,581,583,586,589,594,595,596,597,598,599,
600,601,602,603,604,605,606,612,615,618,627,629,634,654,655,656,661,664,669,671,677,682,686,692,694,702,720,
728,741,742,745,749,753,759,764,767,770,773,778,784,794,800,811,815,818,822,826,829,833,841,847,860,868,872,885,
890,895,908,911,926,937,943,949,1012,1023,1043,1242,2259,2260],inplace =False)
clean_TA.retweeted_status_id.notnull().sum()
0
clean_TA = clean_TA.drop(['in_reply_to_status_id',
'in_reply_to_user_id',
'retweeted_status_id',
'retweeted_status_user_id',
'retweeted_status_timestamp','expanded_urls','source'],axis=1)
clean_TA.head()
#it worked!!..yeee!!
| tweet_id | timestamp | text | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56 +0000 | This is Phineas. He's a mystical boy. Only eve... | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | 2017-08-01 00:17:27 +0000 | This is Tilly. She's just checking pup on you.... | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | 2017-07-31 00:18:03 +0000 | This is Archie. He is a rare Norwegian Pouncin... | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | 2017-07-30 15:58:51 +0000 | This is Darla. She commenced a snooze mid meal... | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | 2017-07-29 16:00:24 +0000 | This is Franklin. He would like you to stop ca... | 12 | 10 | Franklin | None | None | None | None |
clean_images
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 1.566650e-01 | True | Shetland_sheepdog | 6.142850e-02 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 7.419170e-02 | True | Rhodesian_ridgeback | 7.201000e-02 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 1.385840e-01 | True | bloodhound | 1.161970e-01 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 3.606870e-01 | True | miniature_pinscher | 2.227520e-01 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 2.436820e-01 | True | Doberman | 1.546290e-01 | True |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | Bernese_mountain_dog | 0.651137 | True | English_springer | 2.637880e-01 | True | Greater_Swiss_Mountain_dog | 1.619920e-02 | True |
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | box_turtle | 0.933012 | False | mud_turtle | 4.588540e-02 | False | terrapin | 1.788530e-02 | False |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | chow | 0.692517 | True | Tibetan_mastiff | 5.827940e-02 | True | fur_coat | 5.444860e-02 | False |
| 8 | 666057090499244032 | https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg | 1 | shopping_cart | 0.962465 | False | shopping_basket | 1.459380e-02 | False | golden_retriever | 7.958960e-03 | True |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | miniature_poodle | 0.201493 | True | komondor | 1.923050e-01 | True | soft-coated_wheaten_terrier | 8.208610e-02 | True |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | golden_retriever | 0.775930 | True | Tibetan_mastiff | 9.371780e-02 | True | Labrador_retriever | 7.242660e-02 | True |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | Gordon_setter | 0.503672 | True | Yorkshire_terrier | 1.742010e-01 | True | Pekinese | 1.094540e-01 | True |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | Walker_hound | 0.260857 | True | English_foxhound | 1.753820e-01 | True | Ibizan_hound | 9.747050e-02 | True |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | pug | 0.489814 | True | bull_mastiff | 4.047220e-01 | True | French_bulldog | 4.895950e-02 | True |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | bloodhound | 0.195217 | True | German_shepherd | 7.825980e-02 | True | malinois | 7.562780e-02 | True |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | Lhasa | 0.582330 | True | Shih-Tzu | 1.661920e-01 | True | Dandie_Dinmont | 8.968830e-02 | True |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | English_setter | 0.298617 | True | Newfoundland | 1.498420e-01 | True | borzoi | 1.336490e-01 | True |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | hen | 0.965932 | False | cock | 3.391940e-02 | False | partridge | 5.206580e-05 | False |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | desktop_computer | 0.086502 | False | desk | 8.554740e-02 | False | bookcase | 7.947970e-02 | False |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | Italian_greyhound | 0.176053 | True | toy_terrier | 1.118840e-01 | True | basenji | 1.111520e-01 | True |
| 20 | 666287406224695296 | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | Maltese_dog | 0.857531 | True | toy_poodle | 6.306380e-02 | True | miniature_poodle | 2.558060e-02 | True |
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 1.525000e-02 | False | great_grey_owl | 1.320720e-02 | False |
| 22 | 666337882303524864 | https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg | 1 | ox | 0.416669 | False | Newfoundland | 2.784070e-01 | True | groenendael | 1.026430e-01 | True |
| 23 | 666345417576210432 | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | golden_retriever | 0.858744 | True | Chesapeake_Bay_retriever | 5.478680e-02 | True | Labrador_retriever | 1.424090e-02 | True |
| 24 | 666353288456101888 | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | malamute | 0.336874 | True | Siberian_husky | 1.476550e-01 | True | Eskimo_dog | 9.341240e-02 | True |
| 25 | 666362758909284353 | https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg | 1 | guinea_pig | 0.996496 | False | skunk | 2.402450e-03 | False | hamster | 4.608630e-04 | False |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | soft-coated_wheaten_terrier | 0.326467 | True | Afghan_hound | 2.595510e-01 | True | briard | 2.068030e-01 | True |
| 27 | 666396247373291520 | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | Chihuahua | 0.978108 | True | toy_terrier | 9.396970e-03 | True | papillon | 4.576810e-03 | True |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | black-and-tan_coonhound | 0.529139 | True | bloodhound | 2.442200e-01 | True | flat-coated_retriever | 1.738100e-01 | True |
| 29 | 666411507551481857 | https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg | 1 | coho | 0.404640 | False | barracouta | 2.714850e-01 | False | gar | 1.899450e-01 | False |
| 30 | 666418789513326592 | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | toy_terrier | 0.149680 | True | papillon | 1.482580e-01 | True | Chihuahua | 1.428600e-01 | True |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | Blenheim_spaniel | 0.906777 | True | cocker_spaniel | 9.034640e-02 | True | Shih-Tzu | 1.116870e-03 | True |
| 32 | 666428276349472768 | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | Pembroke | 0.371361 | True | chow | 2.493940e-01 | True | Pomeranian | 2.418780e-01 | True |
| 33 | 666430724426358785 | https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg | 1 | llama | 0.505184 | False | Irish_terrier | 1.041090e-01 | True | dingo | 6.207120e-02 | False |
| 34 | 666435652385423360 | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | Chesapeake_Bay_retriever | 0.184130 | True | chain_saw | 5.677530e-02 | False | power_drill | 3.676340e-02 | False |
| 35 | 666437273139982337 | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | Chihuahua | 0.671853 | True | beagle | 1.246800e-01 | True | Saluki | 4.409420e-02 | True |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | curly-coated_retriever | 0.322084 | True | giant_schnauzer | 2.879550e-01 | True | Labrador_retriever | 1.663310e-01 | True |
| 37 | 666454714377183233 | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | dalmatian | 0.278954 | True | Labrador_retriever | 2.376120e-01 | True | Great_Pyrenees | 1.711060e-01 | True |
| 38 | 666644823164719104 | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | Ibizan_hound | 0.044333 | True | Pembroke | 4.320930e-02 | True | West_Highland_white_terrier | 3.890560e-02 | True |
| 39 | 666649482315059201 | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | Border_collie | 0.447803 | True | English_springer | 1.704970e-01 | True | collie | 1.392060e-01 | True |
| 40 | 666691418707132416 | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | German_shepherd | 0.975401 | True | beagle | 8.687270e-03 | True | bloodhound | 5.394040e-03 | True |
| 41 | 666701168228331520 | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | Labrador_retriever | 0.887707 | True | Chihuahua | 2.930700e-02 | True | French_bulldog | 2.075630e-02 | True |
| 42 | 666739327293083650 | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | miniature_poodle | 0.546933 | True | cocker_spaniel | 1.652550e-01 | True | toy_poodle | 9.595890e-02 | True |
| 43 | 666776908487630848 | https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg | 1 | seat_belt | 0.375057 | False | miniature_pinscher | 1.671750e-01 | True | Chihuahua | 8.695060e-02 | True |
| 44 | 666781792255496192 | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | Italian_greyhound | 0.618316 | True | Weimaraner | 1.513630e-01 | True | vizsla | 8.598910e-02 | True |
| 45 | 666786068205871104 | https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg | 1 | snail | 0.999888 | False | slug | 5.514170e-05 | False | acorn | 2.625800e-05 | False |
| 46 | 666804364988780544 | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | English_setter | 0.328792 | True | Brittany_spaniel | 2.835450e-01 | True | Ibizan_hound | 5.746150e-02 | True |
| 47 | 666817836334096384 | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | miniature_schnauzer | 0.496953 | True | standard_schnauzer | 2.852760e-01 | True | giant_schnauzer | 7.376370e-02 | True |
| 48 | 666826780179869698 | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | Maltese_dog | 0.359383 | True | teddy | 1.487590e-01 | False | West_Highland_white_terrier | 1.060070e-01 | True |
| 49 | 666835007768551424 | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | Airedale | 0.448459 | True | toy_poodle | 1.240300e-01 | True | teddy | 1.101830e-01 | False |
| 50 | 666837028449972224 | https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg | 1 | triceratops | 0.442113 | False | armadillo | 1.140710e-01 | False | common_iguana | 4.325530e-02 | False |
| 51 | 666983947667116034 | https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg | 1 | swab | 0.589446 | False | chain_saw | 1.901420e-01 | False | wig | 3.450970e-02 | False |
| 52 | 666996132027977728 | https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg | 1 | hay | 0.507637 | False | Rottweiler | 6.248990e-02 | True | water_buffalo | 4.842470e-02 | False |
| 53 | 667012601033924608 | https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg | 1 | hyena | 0.987230 | False | African_hunting_dog | 1.260080e-02 | False | coyote | 5.735010e-05 | False |
| 54 | 667044094246576128 | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | golden_retriever | 0.765266 | True | Labrador_retriever | 2.066940e-01 | True | seat_belt | 1.066690e-02 | False |
| 55 | 667062181243039745 | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | Chesapeake_Bay_retriever | 0.825678 | True | vizsla | 9.099800e-02 | True | kelpie | 2.295620e-02 | True |
| 56 | 667065535570550784 | https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg | 1 | jigsaw_puzzle | 0.560001 | False | doormat | 1.032590e-01 | False | space_heater | 4.256800e-02 | False |
| 57 | 667073648344346624 | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | Chihuahua | 0.483682 | True | pug | 9.249390e-02 | True | Brabancon_griffon | 5.749540e-02 | True |
| 58 | 667090893657276420 | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | Chihuahua | 0.959514 | True | Italian_greyhound | 5.370150e-03 | True | Pomeranian | 2.641330e-03 | True |
| 59 | 667119796878725120 | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | Pembroke | 0.741563 | True | Chihuahua | 5.786590e-02 | True | toy_poodle | 3.912510e-02 | True |
| 60 | 667138269671505920 | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | West_Highland_white_terrier | 0.747713 | True | Samoyed | 2.436290e-01 | True | toy_poodle | 1.803970e-03 | True |
| 61 | 667152164079423490 | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | toy_poodle | 0.535411 | True | Pomeranian | 8.754400e-02 | True | miniature_poodle | 6.205000e-02 | True |
| 62 | 667160273090932737 | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | golden_retriever | 0.471351 | True | miniature_poodle | 9.199210e-02 | True | standard_poodle | 8.738540e-02 | True |
| 63 | 667165590075940865 | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | miniature_pinscher | 0.140173 | True | Rottweiler | 1.340940e-01 | True | beagle | 8.189980e-02 | True |
| 64 | 667171260800061440 | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | giant_schnauzer | 0.841265 | True | Lakeland_terrier | 5.274420e-02 | True | Irish_water_spaniel | 3.440170e-02 | True |
| 65 | 667174963120574464 | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | toy_poodle | 0.266437 | True | Chihuahua | 2.432230e-01 | True | bluetick | 7.280630e-02 | True |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | soft-coated_wheaten_terrier | 0.318981 | True | Lakeland_terrier | 2.152180e-01 | True | toy_poodle | 1.060140e-01 | True |
| 67 | 667177989038297088 | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | vizsla | 0.259249 | True | Chesapeake_Bay_retriever | 1.762930e-01 | True | Weimaraner | 1.123690e-01 | True |
| 68 | 667182792070062081 | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | golden_retriever | 0.949892 | True | Irish_setter | 1.056380e-02 | True | Chesapeake_Bay_retriever | 5.821410e-03 | True |
| 69 | 667188689915760640 | https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg | 1 | vacuum | 0.335830 | False | swab | 2.652780e-01 | False | toilet_tissue | 1.407030e-01 | False |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | Rottweiler | 0.283640 | True | miniature_pinscher | 1.481120e-01 | True | black-and-tan_coonhound | 9.558480e-02 | True |
| 71 | 667200525029539841 | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | Siberian_husky | 0.694904 | True | malamute | 2.320060e-01 | True | Eskimo_dog | 5.063510e-02 | True |
| 72 | 667211855547486208 | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | golden_retriever | 0.462556 | True | Labrador_retriever | 4.549370e-01 | True | kuvasz | 2.419330e-02 | True |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | teddy | 0.709545 | False | bath_towel | 1.272850e-01 | False | Christmas_stocking | 2.856750e-02 | False |
| 74 | 667393430834667520 | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | papillon | 0.557009 | True | Border_collie | 2.719630e-01 | True | collie | 7.347290e-02 | True |
| 75 | 667405339315146752 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | Saint_Bernard | 0.381377 | True | Leonberg | 1.279980e-01 | True | golden_retriever | 6.935680e-02 | True |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | Rottweiler | 0.999091 | True | miniature_pinscher | 4.503550e-04 | True | black-and-tan_coonhound | 1.571400e-04 | True |
| 77 | 667437278097252352 | https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg | 1 | porcupine | 0.989154 | False | bath_towel | 6.300490e-03 | False | badger | 9.663400e-04 | False |
| 78 | 667443425659232256 | https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg | 1 | goose | 0.980815 | False | drake | 6.917770e-03 | False | hen | 5.255170e-03 | False |
| 79 | 667453023279554560 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | Labrador_retriever | 0.825670 | True | French_bulldog | 5.663940e-02 | True | Staffordshire_bullterrier | 5.401840e-02 | True |
| 80 | 667455448082227200 | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | Tibetan_terrier | 0.676376 | True | Irish_terrier | 5.493340e-02 | True | Yorkshire_terrier | 4.057550e-02 | True |
| 81 | 667470559035432960 | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | toy_poodle | 0.304175 | True | pug | 2.234270e-01 | True | Lakeland_terrier | 7.331650e-02 | True |
| 82 | 667491009379606528 | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | borzoi | 0.852088 | True | ice_bear | 1.322640e-01 | False | weasel | 5.729980e-03 | False |
| 83 | 667495797102141441 | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | Chihuahua | 0.143957 | True | Christmas_stocking | 1.186510e-01 | False | ski_mask | 9.248170e-02 | False |
| 84 | 667502640335572993 | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | Labrador_retriever | 0.996709 | True | golden_retriever | 1.688210e-03 | True | beagle | 7.116670e-04 | True |
| 85 | 667509364010450944 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 86 | 667517642048163840 | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | Italian_greyhound | 0.125176 | True | standard_poodle | 8.457150e-02 | True | cocker_spaniel | 8.134690e-02 | True |
| 87 | 667524857454854144 | https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg | 1 | hare | 0.447893 | False | dhole | 9.243530e-02 | False | Chesapeake_Bay_retriever | 8.812240e-02 | True |
| 88 | 667530908589760512 | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | golden_retriever | 0.633037 | True | kuvasz | 1.463910e-01 | True | Labrador_retriever | 4.618370e-02 | True |
| 89 | 667534815156183040 | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | Pembroke | 0.435254 | True | Cardigan | 3.074070e-01 | True | cocker_spaniel | 3.315830e-02 | True |
| 90 | 667538891197542400 | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | Yorkshire_terrier | 0.618957 | True | silky_terrier | 3.003130e-01 | True | Australian_terrier | 5.341200e-02 | True |
| 91 | 667544320556335104 | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | Pomeranian | 0.412893 | True | Pembroke | 3.129580e-01 | True | Chihuahua | 7.196040e-02 | True |
| 92 | 667546741521195010 | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | toy_poodle | 0.787424 | True | miniature_poodle | 2.022250e-01 | True | teddy | 4.047220e-03 | False |
| 93 | 667549055577362432 | https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg | 1 | electric_fan | 0.984377 | False | spotlight | 7.736710e-03 | False | lampshade | 1.901230e-03 | False |
| 94 | 667550882905632768 | https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg | 1 | web_site | 0.998258 | False | dishwasher | 2.010840e-04 | False | oscilloscope | 1.417360e-04 | False |
| 95 | 667550904950915073 | https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg | 1 | web_site | 0.999335 | False | vizsla | 8.106320e-05 | True | collie | 6.915900e-05 | True |
| 96 | 667724302356258817 | https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg | 1 | ibex | 0.619098 | False | bighorn | 1.251190e-01 | False | ram | 7.467320e-02 | False |
| 97 | 667728196545200128 | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | kuvasz | 0.360159 | True | golden_retriever | 2.937440e-01 | True | Labrador_retriever | 2.706730e-01 | True |
| 98 | 667766675769573376 | https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg | 1 | fire_engine | 0.883493 | False | tow_truck | 7.473390e-02 | False | jeep | 1.277260e-02 | False |
| 99 | 667773195014021121 | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | West_Highland_white_terrier | 0.360465 | True | pug | 9.349410e-02 | True | ice_bear | 6.903820e-02 | False |
| 100 | 667782464991965184 | https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg | 1 | lorikeet | 0.466149 | False | hummingbird | 8.301100e-02 | False | African_grey | 5.424740e-02 | False |
| 101 | 667793409583771648 | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | dalmatian | 0.535073 | True | English_setter | 4.512190e-01 | True | Great_Dane | 8.163610e-03 | True |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | flat-coated_retriever | 0.508392 | True | Chesapeake_Bay_retriever | 2.622390e-01 | True | curly-coated_retriever | 4.891980e-02 | True |
| 103 | 667806454573760512 | https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg | 1 | toyshop | 0.253089 | False | Chihuahua | 1.871550e-01 | True | Brabancon_griffon | 1.127990e-01 | True |
| 104 | 667832474953625600 | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | miniature_pinscher | 0.214200 | True | bath_towel | 1.467890e-01 | False | Chihuahua | 1.041520e-01 | True |
| 105 | 667861340749471744 | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | malamute | 0.967275 | True | Siberian_husky | 1.616750e-02 | True | Eskimo_dog | 1.127740e-02 | True |
| 106 | 667866724293877760 | https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg | 1 | jigsaw_puzzle | 1.000000 | False | prayer_rug | 1.011300e-08 | False | doormat | 1.740170e-10 | False |
| 107 | 667873844930215936 | https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg | 1 | common_iguana | 0.999647 | False | frilled_lizard | 1.811500e-04 | False | African_chameleon | 1.283570e-04 | False |
| 108 | 667878741721415682 | https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg | 1 | seat_belt | 0.200373 | False | miniature_pinscher | 1.060030e-01 | True | schipperke | 1.047330e-01 | True |
| 109 | 667885044254572545 | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | malamute | 0.088530 | True | golden_retriever | 8.749860e-02 | True | muzzle | 7.500770e-02 | False |
| 110 | 667886921285246976 | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | Pomeranian | 0.800432 | True | Pekinese | 1.684450e-01 | True | Chihuahua | 8.949520e-03 | True |
| 111 | 667902449697558528 | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | Norwegian_elkhound | 0.298881 | True | malamute | 2.794790e-01 | True | Eskimo_dog | 1.984280e-01 | True |
| 112 | 667911425562669056 | https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg | 1 | frilled_lizard | 0.257695 | False | ox | 2.351600e-01 | False | triceratops | 8.531690e-02 | False |
| 113 | 667915453470232577 | https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg | 1 | leatherback_turtle | 0.452517 | False | boxer | 1.966550e-01 | True | terrapin | 1.609830e-01 | False |
| 114 | 667924896115245057 | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | Labrador_retriever | 0.209051 | True | hog | 2.039800e-01 | False | Newfoundland | 1.659140e-01 | True |
| 115 | 667937095915278337 | https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg | 1 | hamster | 0.172078 | False | guinea_pig | 9.492420e-02 | False | Band_Aid | 5.999520e-02 | False |
| 116 | 668113020489474048 | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | Pembroke | 0.548896 | True | Cardigan | 1.911010e-01 | True | collie | 5.981410e-02 | True |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | Angora | 0.918834 | False | hen | 3.779340e-02 | False | wood_rabbit | 1.101490e-02 | False |
| 118 | 668154635664932864 | https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg | 1 | Arctic_fox | 0.473584 | False | wallaby | 2.614110e-01 | False | white_wolf | 8.094780e-02 | False |
| 119 | 668171859951755264 | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | Chihuahua | 0.664834 | True | cowboy_boot | 6.034300e-02 | False | giant_panda | 5.983750e-02 | False |
| 120 | 668190681446379520 | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | Blenheim_spaniel | 0.958402 | True | cocker_spaniel | 2.676430e-02 | True | Welsh_springer_spaniel | 7.789910e-03 | True |
| 121 | 668204964695683073 | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | Labrador_retriever | 0.655180 | True | golden_retriever | 1.078840e-01 | True | Chesapeake_Bay_retriever | 6.583470e-02 | True |
| 122 | 668221241640230912 | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | chow | 0.395101 | True | golden_retriever | 3.721150e-01 | True | Labrador_retriever | 1.487850e-01 | True |
| 123 | 668226093875376128 | https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg | 1 | trombone | 0.390339 | False | cornet | 3.141490e-01 | False | French_horn | 2.551820e-01 | False |
| 124 | 668237644992782336 | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | chow | 0.809320 | True | minivan | 7.131070e-02 | False | Pekinese | 3.786960e-02 | True |
| 125 | 668248472370458624 | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | Chihuahua | 0.734547 | True | miniature_pinscher | 6.829440e-02 | True | toy_terrier | 4.636710e-02 | True |
| 126 | 668256321989451776 | https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg | 1 | canoe | 0.407683 | False | paddle | 1.155500e-01 | False | Pembroke | 9.442940e-02 | True |
| 127 | 668268907921326080 | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | Pembroke | 0.484830 | True | Cardigan | 4.253030e-01 | True | basenji | 1.475350e-02 | True |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | soft-coated_wheaten_terrier | 0.406374 | True | Lakeland_terrier | 2.638540e-01 | True | toy_poodle | 1.508440e-01 | True |
| 129 | 668286279830867968 | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | golden_retriever | 0.215944 | True | basset | 1.892140e-01 | True | Cardigan | 1.130100e-01 | True |
| 130 | 668291999406125056 | https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg | 1 | web_site | 0.995535 | False | skunk | 1.363490e-03 | False | badger | 6.856500e-04 | False |
| 131 | 668297328638447616 | https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg | 1 | king_penguin | 0.606747 | False | ice_bear | 2.642210e-01 | False | Eskimo_dog | 3.278380e-02 | True |
| 132 | 668466899341221888 | https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg | 1 | shopping_basket | 0.398361 | False | hamper | 3.632220e-01 | False | bassinet | 8.417350e-02 | False |
| 133 | 668480044826800133 | https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg | 1 | Arctic_fox | 0.119243 | False | Labrador_retriever | 9.996480e-02 | True | pug | 8.671650e-02 | True |
| 134 | 668484198282485761 | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | standard_poodle | 0.587372 | True | Bedlington_terrier | 1.824110e-01 | True | Afghan_hound | 4.096800e-02 | True |
| 135 | 668496999348633600 | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | Staffordshire_bullterrier | 0.412879 | True | miniature_pinscher | 1.614880e-01 | True | American_Staffordshire_terrier | 1.124950e-01 | True |
| 136 | 668507509523615744 | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | basenji | 0.055379 | True | Shetland_sheepdog | 5.432210e-02 | True | whippet | 5.191340e-02 | True |
| 137 | 668528771708952576 | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | Labrador_retriever | 0.195835 | True | kuvasz | 1.216070e-01 | True | English_setter | 8.146440e-02 | True |
| 138 | 668537837512433665 | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | Lakeland_terrier | 0.372988 | True | toy_poodle | 2.504450e-01 | True | Chihuahua | 1.897370e-01 | True |
| 139 | 668542336805281792 | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | American_Staffordshire_terrier | 0.267695 | True | French_bulldog | 2.540500e-01 | True | Staffordshire_bullterrier | 2.123810e-01 | True |
| 140 | 668544745690562560 | https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg | 1 | bearskin | 0.427870 | False | bow | 2.588580e-01 | False | panpipe | 2.156260e-02 | False |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | Shih-Tzu | 0.985649 | True | Lhasa | 7.078320e-03 | True | Pekinese | 3.053230e-03 | True |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | bustard | 0.380772 | False | pelican | 1.005540e-01 | False | crane | 8.471350e-02 | False |
| 143 | 668620235289837568 | https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg | 1 | crash_helmet | 0.757942 | False | toaster | 3.749680e-02 | False | mouse | 2.727090e-02 | False |
| 144 | 668623201287675904 | https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg | 4 | Chihuahua | 0.708163 | True | Pomeranian | 9.137190e-02 | True | titi | 6.732550e-02 | False |
| 145 | 668625577880875008 | https://pbs.twimg.com/media/CUdvambWoAA007z.jpg | 1 | ox | 0.071536 | False | groenendael | 5.445480e-02 | True | Angora | 4.502800e-02 | False |
| 146 | 668627278264475648 | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | French_bulldog | 0.965403 | True | pug | 8.603810e-03 | True | Boston_bull | 8.003560e-03 | True |
| 147 | 668631377374486528 | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | miniature_schnauzer | 0.904549 | True | Australian_terrier | 2.252940e-02 | True | silky_terrier | 1.524320e-02 | True |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | Pekinese | 0.589011 | True | Shih-Tzu | 3.909870e-01 | True | Japanese_spaniel | 3.310350e-03 | True |
| 149 | 668636665813057536 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | komondor | 0.999956 | True | llama | 4.309810e-05 | False | ram | 2.160900e-07 | False |
| 150 | 668641109086707712 | https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg | 1 | vacuum | 0.432594 | False | pug | 1.463110e-01 | True | toilet_tissue | 2.450030e-02 | False |
| 151 | 668643542311546881 | https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg | 1 | common_iguana | 0.483972 | False | frilled_lizard | 1.113770e-01 | False | sandbar | 7.898340e-02 | False |
| 152 | 668645506898350081 | https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg | 1 | ski_mask | 0.302854 | False | knee_pad | 9.688120e-02 | False | balance_beam | 8.407560e-02 | False |
| 153 | 668655139528511488 | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | beagle | 0.319110 | True | Italian_greyhound | 1.033380e-01 | True | basenji | 9.193000e-02 | True |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | Chesapeake_Bay_retriever | 0.285508 | True | Weimaraner | 1.468320e-01 | True | black-footed_ferret | 6.086480e-02 | False |
| 155 | 668815180734689280 | https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg | 1 | redbone | 0.461172 | True | Italian_greyhound | 2.707330e-01 | True | miniature_pinscher | 1.097520e-01 | True |
| 156 | 668826086256599040 | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | malinois | 0.640185 | True | Irish_terrier | 1.537000e-01 | True | Rhodesian_ridgeback | 6.845650e-02 | True |
| 157 | 668852170888998912 | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | golden_retriever | 0.903529 | True | Tibetan_mastiff | 4.149700e-02 | True | kuvasz | 2.250050e-02 | True |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | teddy | 0.413379 | False | pillow | 3.256230e-01 | False | miniature_schnauzer | 3.553660e-02 | True |
| 159 | 668892474547511297 | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | kelpie | 0.421979 | True | collie | 2.270600e-01 | True | Cardigan | 1.682110e-01 | True |
| 160 | 668902994700836864 | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | Brittany_spaniel | 0.828425 | True | Ibizan_hound | 4.308200e-02 | True | Blenheim_spaniel | 2.800360e-02 | True |
| 161 | 668932921458302977 | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | standard_poodle | 0.237638 | True | Old_English_sheepdog | 1.955730e-01 | True | toy_poodle | 1.446580e-01 | True |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | cocker_spaniel | 0.367492 | True | Lakeland_terrier | 2.726210e-01 | True | soft-coated_wheaten_terrier | 6.700630e-02 | True |
| 163 | 668960084974809088 | https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg | 1 | shower_curtain | 0.226309 | False | Chesapeake_Bay_retriever | 1.658780e-01 | True | bathtub | 5.672610e-02 | False |
| 164 | 668975677807423489 | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | basset | 0.605437 | True | Welsh_springer_spaniel | 1.847830e-01 | True | Saint_Bernard | 1.162990e-01 | True |
| 165 | 668979806671884288 | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | golden_retriever | 0.608537 | True | Irish_setter | 9.707800e-02 | True | redbone | 7.602220e-02 | True |
| 166 | 668981893510119424 | https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg | 1 | jellyfish | 0.447246 | False | coral_reef | 2.386250e-01 | False | goldfish | 4.022690e-02 | False |
| 167 | 668986018524233728 | https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg | 1 | doormat | 0.976103 | False | Chihuahua | 5.639720e-03 | True | Norfolk_terrier | 3.912650e-03 | True |
| 168 | 668988183816871936 | https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg | 1 | Arabian_camel | 0.999614 | False | bison | 2.280900e-04 | False | llama | 6.717870e-05 | False |
| 169 | 668989615043424256 | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | pug | 0.917326 | True | waffle_iron | 1.491750e-02 | False | Chihuahua | 1.352440e-02 | True |
| 170 | 668992363537309700 | https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg | 1 | lynx | 0.287506 | False | tabby | 2.060480e-01 | False | koala | 8.141930e-02 | False |
| 171 | 668994913074286592 | https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg | 1 | hog | 0.113789 | False | English_springer | 8.976330e-02 | True | French_bulldog | 8.218640e-02 | True |
| 172 | 669000397445533696 | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | Pembroke | 0.822940 | True | Cardigan | 1.770350e-01 | True | basenji | 2.335260e-05 | True |
| 173 | 669006782128353280 | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | Chihuahua | 0.127178 | True | Italian_greyhound | 5.421470e-02 | True | pillow | 4.859160e-02 | False |
| 174 | 669015743032369152 | https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg | 1 | comic_book | 0.275927 | False | bib | 1.735160e-01 | False | jersey | 7.391100e-02 | False |
| 175 | 669037058363662336 | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | Chihuahua | 0.803528 | True | Pomeranian | 5.387110e-02 | True | chow | 3.225740e-02 | True |
| 176 | 669203728096960512 | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | pug | 0.910452 | True | French_bulldog | 5.508960e-02 | True | Chihuahua | 1.489660e-02 | True |
| 177 | 669214165781868544 | https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg | 1 | minivan | 0.435396 | False | police_van | 3.101430e-01 | False | minibus | 6.820100e-02 | False |
| 178 | 669216679721873412 | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | golden_retriever | 0.992758 | True | Irish_setter | 3.379040e-03 | True | Saluki | 1.229630e-03 | True |
| 179 | 669324657376567296 | https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg | 1 | seashore | 0.201659 | False | Cardigan | 1.315440e-01 | True | sandbar | 1.014300e-01 | False |
| 180 | 669327207240699904 | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | golden_retriever | 0.919584 | True | Labrador_retriever | 4.966950e-02 | True | kuvasz | 1.021610e-02 | True |
| 181 | 669328503091937280 | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | Siberian_husky | 0.424202 | True | Eskimo_dog | 2.376600e-01 | True | malamute | 5.257170e-02 | True |
| 182 | 669351434509529089 | https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg | 1 | cuirass | 0.756829 | False | breastplate | 2.335200e-01 | False | bulletproof_vest | 3.811880e-03 | False |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | teddy | 0.379656 | False | Pembroke | 2.123430e-01 | True | chow | 9.699530e-02 | True |
| 184 | 669354382627049472 | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | Chihuahua | 0.973990 | True | French_bulldog | 1.083200e-02 | True | Pekinese | 2.098650e-03 | True |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | Labrador_retriever | 0.367818 | True | German_short-haired_pointer | 2.806420e-01 | True | Chesapeake_Bay_retriever | 1.842460e-01 | True |
| 186 | 669363888236994561 | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | golden_retriever | 0.539004 | True | Irish_setter | 4.065500e-01 | True | cocker_spaniel | 4.148440e-02 | True |
| 187 | 669367896104181761 | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | basset | 0.749394 | True | beagle | 1.335790e-01 | True | Welsh_springer_spaniel | 3.019840e-02 | True |
| 188 | 669371483794317312 | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | Brabancon_griffon | 0.483268 | True | miniature_pinscher | 3.074650e-01 | True | redbone | 7.052380e-02 | True |
| 189 | 669375718304980992 | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | Airedale | 0.168762 | True | Norfolk_terrier | 1.074790e-01 | True | Lakeland_terrier | 9.784590e-02 | True |
| 190 | 669393256313184256 | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | cocker_spaniel | 0.359843 | True | Blenheim_spaniel | 1.395190e-01 | True | toy_poodle | 1.327460e-01 | True |
| 191 | 669564461267722241 | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | toy_poodle | 0.623685 | True | miniature_poodle | 2.599200e-01 | True | standard_poodle | 8.252970e-02 | True |
| 192 | 669567591774625800 | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | Chihuahua | 0.980511 | True | toy_terrier | 9.166440e-03 | True | miniature_pinscher | 2.658510e-03 | True |
| 193 | 669571471778410496 | https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg | 1 | minivan | 0.873488 | False | pickup | 4.125930e-02 | False | beach_wagon | 1.540050e-02 | False |
| 194 | 669573570759163904 | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | West_Highland_white_terrier | 0.946828 | True | miniature_schnauzer | 2.234360e-02 | True | cairn | 9.461660e-03 | True |
| 195 | 669583744538451968 | https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg | 1 | candle | 0.174315 | False | lampshade | 1.204070e-01 | False | plunger | 7.209940e-02 | False |
| 196 | 669597912108789760 | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | Eskimo_dog | 0.595665 | True | Siberian_husky | 2.144740e-01 | True | white_wolf | 1.472350e-01 | False |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | Maltese_dog | 0.659619 | True | Tibetan_terrier | 1.935390e-01 | True | Shih-Tzu | 3.932710e-02 | True |
| 198 | 669625907762618368 | https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg | 1 | seat_belt | 0.874502 | False | golden_retriever | 5.540810e-02 | True | Labrador_retriever | 2.685430e-02 | True |
| 199 | 669661792646373376 | https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg | 1 | weasel | 0.262802 | False | Siamese_cat | 1.482630e-01 | False | hamster | 1.163740e-01 | False |
| 200 | 669680153564442624 | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | dalmatian | 0.141257 | True | borzoi | 1.377440e-01 | True | Labrador_retriever | 1.037920e-01 | True |
| 201 | 669682095984410625 | https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg | 1 | Christmas_stocking | 0.188397 | False | studio_couch | 8.688670e-02 | False | bookcase | 8.259860e-02 | False |
| 202 | 669683899023405056 | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | Pomeranian | 0.998275 | True | Chihuahua | 6.054760e-04 | True | Pekinese | 5.156880e-04 | True |
| 203 | 669749430875258880 | https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg | 1 | washbasin | 0.245794 | False | toilet_seat | 1.094200e-01 | False | paper_towel | 1.056640e-01 | False |
| 204 | 669753178989142016 | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | Pembroke | 0.858494 | True | hamster | 2.631880e-02 | False | Shetland_sheepdog | 2.240520e-02 | True |
| 205 | 669923323644657664 | https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg | 1 | car_mirror | 0.343063 | False | seat_belt | 1.102890e-01 | False | wing | 8.014850e-02 | False |
| 206 | 669926384437997569 | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | Pomeranian | 0.984231 | True | keeshond | 1.023110e-02 | True | papillon | 2.218970e-03 | True |
| 207 | 669942763794931712 | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | vizsla | 0.743216 | True | redbone | 2.172820e-01 | True | Rhodesian_ridgeback | 2.847350e-02 | True |
| 208 | 669970042633789440 | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | miniature_pinscher | 0.734744 | True | Rottweiler | 1.310660e-01 | True | Doberman | 8.150940e-02 | True |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | teddy | 0.953071 | False | koala | 7.026720e-03 | False | fur_coat | 5.368170e-03 | False |
| 210 | 669993076832759809 | https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg | 1 | piggy_bank | 0.176320 | False | hair_spray | 9.748700e-02 | False | toy_poodle | 8.650160e-02 | True |
| 211 | 670003130994700288 | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | beagle | 0.375313 | True | Saint_Bernard | 1.749110e-01 | True | English_foxhound | 1.158880e-01 | True |
| 212 | 670037189829525505 | https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg | 1 | pot | 0.273767 | False | tray | 9.288840e-02 | False | doormat | 5.072790e-02 | False |
| 213 | 670040295598354432 | https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg | 1 | web_site | 0.901552 | False | borzoi | 2.665960e-02 | True | Chihuahua | 1.243760e-02 | True |
| 214 | 670046952931721218 | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | Blenheim_spaniel | 0.998335 | True | beagle | 6.472890e-04 | True | Brittany_spaniel | 3.918660e-04 | True |
| 215 | 670055038660800512 | https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg | 1 | snail | 0.563631 | False | slug | 2.966490e-01 | False | bolete | 3.183920e-02 | False |
| 216 | 670061506722140161 | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | Italian_greyhound | 0.329339 | True | American_Staffordshire_terrier | 3.052940e-01 | True | whippet | 1.116860e-01 | True |
| 217 | 670069087419133954 | https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg | 1 | boathouse | 0.313829 | False | birdhouse | 1.383310e-01 | False | ashcan | 4.567320e-02 | False |
| 218 | 670073503555706880 | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | malamute | 0.601886 | True | Siberian_husky | 3.401060e-01 | True | Eskimo_dog | 5.004130e-02 | True |
| 219 | 670079681849372674 | https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg | 1 | mud_turtle | 0.157477 | False | terrapin | 1.318460e-01 | False | box_turtle | 6.067820e-02 | False |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | German_short-haired_pointer | 0.273492 | True | Staffordshire_bullterrier | 1.329440e-01 | True | bluetick | 1.245620e-01 | True |
| 221 | 670093938074779648 | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | toy_poodle | 0.383346 | True | miniature_poodle | 1.536780e-01 | True | chow | 1.385430e-01 | True |
| 222 | 670290420111441920 | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | Chihuahua | 0.368876 | True | Pomeranian | 2.821020e-01 | True | papillon | 1.787950e-01 | True |
| 223 | 670303360680108032 | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | Shetland_sheepdog | 0.380278 | True | Cardigan | 3.428060e-01 | True | guinea_pig | 1.562490e-01 | False |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 225 | 670338931251150849 | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | cairn | 0.245033 | True | West_Highland_white_terrier | 1.377090e-01 | True | miniature_schnauzer | 8.917250e-02 | True |
| 226 | 670361874861563904 | https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg | 1 | platypus | 0.974075 | False | spotted_salamander | 1.106760e-02 | False | bison | 3.896910e-03 | False |
| 227 | 670374371102445568 | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | English_springer | 0.974936 | True | English_setter | 1.166130e-02 | True | cocker_spaniel | 2.688990e-03 | True |
| 228 | 670385711116361728 | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | whippet | 0.178027 | True | Chesapeake_Bay_retriever | 1.059690e-01 | True | beagle | 7.871970e-02 | True |
| 229 | 670403879788544000 | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | pug | 0.802223 | True | French_bulldog | 1.725570e-01 | True | bull_mastiff | 7.162800e-03 | True |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 1.763430e-05 | False | racket | 1.470730e-05 | False |
| 231 | 670411370698022913 | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | Maltese_dog | 0.584397 | True | miniature_schnauzer | 6.420080e-02 | True | toy_poodle | 6.086770e-02 | True |
| 232 | 670417414769758208 | https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg | 1 | sea_urchin | 0.493257 | False | porcupine | 4.605650e-01 | False | cardoon | 8.145870e-03 | False |
| 233 | 670420569653809152 | https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg | 1 | bow_tie | 0.268759 | False | cardigan | 1.539570e-01 | False | wig | 7.229490e-02 | False |
| 234 | 670421925039075328 | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | Chihuahua | 0.275793 | True | corn | 7.359580e-02 | False | bolete | 5.490510e-02 | False |
| 235 | 670427002554466305 | https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg | 1 | seat_belt | 0.952258 | False | toy_terrier | 3.887160e-02 | True | beagle | 3.226440e-03 | True |
| 236 | 670428280563085312 | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | chow | 0.335269 | True | golden_retriever | 3.058500e-01 | True | Tibetan_mastiff | 6.332530e-02 | True |
| 237 | 670433248821026816 | https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg | 1 | window_shade | 0.583427 | False | giant_schnauzer | 6.221480e-02 | True | window_screen | 3.994100e-02 | False |
| 238 | 670434127938719744 | https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg | 1 | jack-o'-lantern | 0.919140 | False | Chesapeake_Bay_retriever | 2.735100e-02 | True | Labrador_retriever | 2.008090e-02 | True |
| 239 | 670435821946826752 | https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg | 1 | sorrel | 0.460370 | False | basenji | 1.357670e-01 | True | Cardigan | 9.917430e-02 | True |
| 240 | 670442337873600512 | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | Sussex_spaniel | 0.403552 | True | otterhound | 2.563020e-01 | True | Irish_terrier | 1.873150e-01 | True |
| 241 | 670444955656130560 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 242 | 670449342516494336 | https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg | 1 | peacock | 0.999924 | False | European_gallinule | 2.987300e-05 | False | agama | 2.150760e-05 | False |
| 243 | 670452855871037440 | https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg | 1 | Arctic_fox | 0.188174 | False | indri | 1.235840e-01 | False | malamute | 8.037950e-02 | True |
| 244 | 670465786746662913 | https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg | 1 | axolotl | 0.611558 | False | tailed_frog | 1.864840e-01 | False | common_newt | 7.869400e-02 | False |
| 245 | 670468609693655041 | https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg | 1 | minivan | 0.730152 | False | beach_wagon | 7.866140e-02 | False | car_wheel | 6.434580e-02 | False |
| 246 | 670474236058800128 | https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg | 1 | wool | 0.070076 | False | siamang | 6.253600e-02 | False | gorilla | 5.889360e-02 | False |
| 247 | 670668383499735048 | https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg | 1 | banana | 0.107317 | False | orange | 9.966220e-02 | False | bagel | 8.903260e-02 | False |
| 248 | 670676092097810432 | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | Dandie_Dinmont | 0.676102 | True | West_Highland_white_terrier | 4.082560e-02 | True | clumber | 3.953330e-02 | True |
| 249 | 670679630144274432 | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | Ibizan_hound | 0.342734 | True | Brittany_spaniel | 2.290650e-01 | True | Chihuahua | 1.040290e-01 | True |
| 250 | 670691627984359425 | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | Shetland_sheepdog | 0.071124 | True | home_theater | 6.839780e-02 | False | American_Staffordshire_terrier | 6.696390e-02 | True |
| 251 | 670704688707301377 | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | Norwich_terrier | 0.419838 | True | cairn | 3.518760e-01 | True | Norfolk_terrier | 5.109370e-02 | True |
| 252 | 670717338665226240 | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | Pomeranian | 0.368161 | True | Pekinese | 3.509730e-01 | True | golden_retriever | 1.149020e-01 | True |
| 253 | 670727704916926465 | https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg | 1 | wood_rabbit | 0.368562 | False | tabby | 3.096750e-01 | False | Egyptian_cat | 1.549140e-01 | False |
| 254 | 670733412878163972 | https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg | 1 | dhole | 0.350416 | False | hare | 2.366610e-01 | False | wood_rabbit | 9.113280e-02 | False |
| 255 | 670755717859713024 | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | keeshond | 0.994065 | True | Norwegian_elkhound | 1.827480e-03 | True | cairn | 1.821310e-03 | True |
| 256 | 670764103623966721 | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | Norfolk_terrier | 0.172850 | True | golden_retriever | 7.270220e-02 | True | television | 3.749420e-02 | False |
| 257 | 670778058496974848 | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | pug | 0.776612 | True | Brabancon_griffon | 1.120320e-01 | True | boxer | 3.905140e-02 | True |
| 258 | 670780561024270336 | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | Labrador_retriever | 0.244889 | True | American_black_bear | 5.699350e-02 | False | brown_bear | 5.399260e-02 | False |
| 259 | 670782429121134593 | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | Chihuahua | 0.952963 | True | French_bulldog | 3.657470e-02 | True | Boston_bull | 1.977400e-03 | True |
| 260 | 670783437142401025 | https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg | 1 | lacewing | 0.381955 | False | sulphur_butterfly | 1.068100e-01 | False | leafhopper | 6.834690e-02 | False |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | dingo | 0.777124 | False | Pembroke | 1.274380e-01 | True | Cardigan | 2.400660e-02 | True |
| 262 | 670789397210615808 | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | beagle | 0.295966 | True | basset | 1.435270e-01 | True | bluetick | 1.389920e-01 | True |
| 263 | 670792680469889025 | https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg | 1 | brown_bear | 0.882426 | False | toy_poodle | 3.135500e-02 | True | miniature_poodle | 2.574340e-02 | True |
| 264 | 670797304698376195 | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | Pembroke | 0.472197 | True | beagle | 9.093800e-02 | True | German_shepherd | 6.436600e-02 | True |
| 265 | 670803562457407488 | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | basenji | 0.344101 | True | Ibizan_hound | 2.102820e-01 | True | toy_terrier | 1.962790e-01 | True |
| 266 | 670804601705242624 | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | Pomeranian | 0.868560 | True | Pekinese | 9.012920e-02 | True | chow | 2.172210e-02 | True |
| 267 | 670807719151067136 | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | Old_English_sheepdog | 0.958035 | True | Sealyham_terrier | 1.389220e-02 | True | Border_collie | 4.601140e-03 | True |
| 268 | 670811965569282048 | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | basset | 0.994090 | True | Walker_hound | 3.972680e-03 | True | beagle | 1.406190e-03 | True |
| 269 | 670815497391357952 | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | American_Staffordshire_terrier | 0.919714 | True | Staffordshire_bullterrier | 7.343020e-02 | True | bull_mastiff | 9.056790e-04 | True |
| 270 | 670822709593571328 | https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg | 1 | web_site | 0.993887 | False | Chihuahua | 1.251520e-03 | True | menu | 5.987510e-04 | False |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | Labrador_retriever | 0.947453 | True | German_short-haired_pointer | 1.700060e-02 | True | Weimaraner | 1.543210e-02 | True |
| 272 | 670826280409919488 | https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg | 1 | scorpion | 0.927956 | False | tarantula | 2.163100e-02 | False | wolf_spider | 1.483750e-02 | False |
| 273 | 670832455012716544 | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | malinois | 0.317607 | True | Norwegian_elkhound | 2.749010e-01 | True | bathing_cap | 1.146430e-01 | False |
| 274 | 670833812859932673 | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | Pekinese | 0.609853 | True | Persian_cat | 2.654420e-01 | False | Japanese_spaniel | 2.746040e-02 | True |
| 275 | 670838202509447168 | https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg | 1 | flamingo | 0.992710 | False | coral_fungus | 3.490810e-03 | False | stinkhorn | 1.858950e-03 | False |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | Shih-Tzu | 0.963622 | True | Lhasa | 1.601670e-02 | True | guinea_pig | 7.931920e-03 | False |
| 277 | 670842764863651840 | https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg | 1 | microphone | 0.096063 | False | accordion | 9.407470e-02 | False | drumstick | 6.111280e-02 | False |
| 278 | 670995969505435648 | https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg | 1 | redbone | 0.866221 | True | beagle | 6.119400e-02 | True | Rhodesian_ridgeback | 2.428450e-02 | True |
| 279 | 671109016219725825 | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | basenji | 0.855959 | True | beagle | 3.672310e-02 | True | toy_terrier | 2.925780e-02 | True |
| 280 | 671115716440031232 | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | malinois | 0.406341 | True | kelpie | 1.433660e-01 | True | dingo | 1.298020e-01 | False |
| 281 | 671122204919246848 | https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg | 1 | goose | 0.351957 | False | Chihuahua | 1.012280e-01 | True | hen | 6.581760e-02 | False |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | Shih-Tzu | 0.180380 | True | golden_retriever | 1.801940e-01 | True | Labrador_retriever | 1.736560e-01 | True |
| 283 | 671138694582165504 | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | Samoyed | 0.587342 | True | Great_Pyrenees | 2.689520e-01 | True | Pekinese | 9.052750e-02 | True |
| 284 | 671141549288370177 | https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg | 1 | guinea_pig | 0.387728 | False | wood_rabbit | 1.716810e-01 | False | borzoi | 7.535770e-02 | True |
| 285 | 671147085991960577 | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | Yorkshire_terrier | 0.467202 | True | cairn | 4.401220e-01 | True | silky_terrier | 5.869010e-02 | True |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | Rottweiler | 0.781201 | True | black-and-tan_coonhound | 6.120650e-02 | True | kelpie | 4.885570e-02 | True |
| 287 | 671154572044468225 | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | Labrador_retriever | 0.495047 | True | Chesapeake_Bay_retriever | 3.501880e-01 | True | golden_retriever | 1.424000e-01 | True |
| 288 | 671159727754231808 | https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg | 1 | pitcher | 0.117446 | False | sunglasses | 6.248650e-02 | False | mask | 5.951670e-02 | False |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | African_hunting_dog | 0.733025 | False | plow | 1.193770e-01 | False | Scottish_deerhound | 2.698290e-02 | True |
| 290 | 671166507850801152 | https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg | 1 | refrigerator | 0.829772 | False | toilet_seat | 3.008330e-02 | False | shower_curtain | 1.546070e-02 | False |
| 291 | 671182547775299584 | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | Rottweiler | 0.331179 | True | kelpie | 2.186010e-01 | True | Appenzeller | 1.825200e-01 | True |
| 292 | 671186162933985280 | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | Chihuahua | 0.319106 | True | whippet | 1.691340e-01 | True | toy_terrier | 1.258150e-01 | True |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | picket_fence | 0.382918 | False | rain_barrel | 1.088090e-01 | False | plastic_bag | 3.887820e-02 | False |
| 294 | 671355857343524864 | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | miniature_poodle | 0.313811 | True | toy_poodle | 1.655850e-01 | True | Irish_terrier | 5.609410e-02 | True |
| 295 | 671357843010908160 | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | Italian_greyhound | 0.831757 | True | toy_terrier | 4.330580e-02 | True | Chihuahua | 3.677300e-02 | True |
| 296 | 671362598324076544 | https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg | 1 | tub | 0.393616 | False | bathtub | 3.835220e-01 | False | swimming_trunks | 7.730080e-02 | False |
| 297 | 671390180817915904 | https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg | 1 | zebra | 0.997673 | False | tiger | 8.372680e-04 | False | prairie_chicken | 5.745670e-04 | False |
| 298 | 671485057807351808 | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | Samoyed | 0.627901 | True | Great_Pyrenees | 2.764210e-01 | True | kuvasz | 5.787350e-02 | True |
| 299 | 671486386088865792 | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | German_shepherd | 0.827035 | True | kelpie | 8.764770e-02 | True | red_wolf | 3.121790e-02 | False |
| 300 | 671488513339211776 | https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg | 1 | hermit_crab | 0.528761 | False | snail | 1.856440e-01 | False | shower_curtain | 6.636050e-02 | False |
| 301 | 671497587707535361 | https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg | 1 | swing | 0.089165 | False | paddle | 8.074690e-02 | False | bathing_cap | 6.569400e-02 | False |
| 302 | 671504605491109889 | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | toy_poodle | 0.259115 | True | bath_towel | 1.776690e-01 | False | Maltese_dog | 7.171250e-02 | True |
| 303 | 671511350426865664 | https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg | 1 | hermit_crab | 0.625409 | False | tick | 1.273330e-01 | False | snail | 9.791590e-02 | False |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | Lakeland_terrier | 0.428275 | True | wire-haired_fox_terrier | 1.114720e-01 | True | toy_poodle | 1.050160e-01 | True |
| 305 | 671520732782923777 | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | Pomeranian | 0.551031 | True | Pekinese | 1.352620e-01 | True | gibbon | 6.155740e-02 | False |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | Doberman | 0.782626 | True | black-and-tan_coonhound | 1.096780e-01 | True | Gordon_setter | 5.211020e-02 | True |
| 307 | 671533943490011136 | https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg | 1 | hen | 0.556524 | False | cock | 4.420330e-01 | False | black_swan | 1.180750e-03 | False |
| 308 | 671536543010570240 | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | pug | 0.537652 | True | bull_mastiff | 2.206170e-01 | True | French_bulldog | 6.829650e-02 | True |
| 309 | 671538301157904385 | https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg | 1 | park_bench | 0.194211 | False | water_bottle | 7.186960e-02 | False | beacon | 5.343310e-02 | False |
| 310 | 671542985629241344 | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | Shetland_sheepdog | 0.980339 | True | collie | 6.693000e-03 | True | papillon | 6.157010e-03 | True |
| 311 | 671544874165002241 | https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg | 1 | feather_boa | 0.240858 | False | wig | 8.594620e-02 | False | wool | 4.067350e-02 | False |
| 312 | 671547767500775424 | https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg | 2 | Loafer | 0.255088 | False | platypus | 9.001910e-02 | False | cowboy_boot | 6.653600e-02 | False |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | Gordon_setter | 0.469373 | True | black-and-tan_coonhound | 2.708930e-01 | True | Rottweiler | 1.532330e-01 | True |
| 314 | 671729906628341761 | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | kuvasz | 0.431469 | True | Samoyed | 1.171220e-01 | True | white_wolf | 9.006660e-02 | False |
| 315 | 671735591348891648 | https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg | 2 | stone_wall | 0.271121 | False | Irish_wolfhound | 6.307820e-02 | True | poncho | 4.822590e-02 | False |
| 316 | 671743150407421952 | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | toy_poodle | 0.419427 | True | miniature_poodle | 2.370670e-01 | True | swing | 1.041930e-01 | False |
| 317 | 671744970634719232 | https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg | 1 | ice_bear | 0.251193 | False | ram | 2.138390e-01 | False | Arctic_fox | 8.155140e-02 | False |
| 318 | 671763349865160704 | https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg | 1 | prayer_rug | 0.445334 | False | doormat | 2.753110e-01 | False | bib | 4.881320e-02 | False |
| 319 | 671768281401958400 | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | Chihuahua | 0.500373 | True | French_bulldog | 1.127960e-01 | True | Italian_greyhound | 6.289270e-02 | True |
| 320 | 671789708968640512 | https://pbs.twimg.com/tweet_video_thumb/CVKtH-... | 1 | dalmatian | 0.114259 | True | teddy | 6.227520e-02 | False | steam_locomotive | 4.970020e-02 | False |
| 321 | 671855973984772097 | https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg | 1 | chimpanzee | 0.636031 | False | gorilla | 9.875150e-02 | False | fountain | 3.175550e-02 | False |
| 322 | 671866342182637568 | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | Labrador_retriever | 0.875614 | True | Chihuahua | 3.218220e-02 | True | golden_retriever | 1.723250e-02 | True |
| 323 | 671874878652489728 | https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg | 1 | china_cabinet | 0.996031 | False | entertainment_center | 1.985890e-03 | False | bookcase | 1.651810e-03 | False |
| 324 | 671879137494245376 | https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg | 1 | bee_eater | 0.302648 | False | toucan | 2.196460e-01 | False | chickadee | 1.566870e-01 | False |
| 325 | 671882082306625538 | https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg | 1 | ski_mask | 0.968325 | False | mask | 2.186270e-02 | False | abaya | 5.479450e-03 | False |
| 326 | 671891728106971137 | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | Labrador_retriever | 0.567933 | True | golden_retriever | 3.494010e-01 | True | seat_belt | 6.939620e-02 | False |
| 327 | 671896809300709376 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 328 | 672068090318987265 | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | pug | 0.863385 | True | shopping_cart | 1.257460e-01 | False | Border_terrier | 2.972460e-03 | True |
| 329 | 672082170312290304 | https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg | 1 | hamster | 0.132440 | False | toy_poodle | 1.239620e-01 | True | bubble | 5.621240e-02 | False |
| 330 | 672095186491711488 | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | pug | 0.794087 | True | French_bulldog | 1.407960e-01 | True | bull_mastiff | 4.468110e-02 | True |
| 331 | 672125275208069120 | https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg | 1 | tennis_ball | 0.999834 | False | golden_retriever | 8.675670e-05 | True | racket | 5.332190e-05 | False |
| 332 | 672139350159835138 | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | Rottweiler | 0.290992 | True | American_black_bear | 2.381200e-01 | False | chimpanzee | 1.155410e-01 | False |
| 333 | 672160042234327040 | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | pug | 0.561027 | True | French_bulldog | 2.221140e-01 | True | Labrador_retriever | 6.545560e-02 | True |
| 334 | 672169685991993344 | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | cocker_spaniel | 0.991011 | True | Sussex_spaniel | 4.032130e-03 | True | miniature_poodle | 1.275640e-03 | True |
| 335 | 672205392827572224 | https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg | 1 | carton | 0.952613 | False | crate | 3.537620e-02 | False | pug | 3.266910e-03 | True |
| 336 | 672222792075620352 | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | beagle | 0.958178 | True | basset | 9.117310e-03 | True | Italian_greyhound | 7.731050e-03 | True |
| 337 | 672231046314901505 | https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg | 1 | killer_whale | 0.823919 | False | grey_whale | 3.660060e-02 | False | hammerhead | 2.952190e-02 | False |
| 338 | 672239279297454080 | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | pug | 0.332536 | True | French_bulldog | 2.581240e-01 | True | bull_mastiff | 1.208730e-01 | True |
| 339 | 672245253877968896 | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | Chihuahua | 0.718944 | True | badger | 1.785460e-01 | False | toy_terrier | 3.710310e-02 | True |
| 340 | 672248013293752320 | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | Irish_terrier | 0.413173 | True | Airedale | 3.356160e-01 | True | toy_poodle | 2.795230e-02 | True |
| 341 | 672254177670729728 | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | pug | 0.979487 | True | French_bulldog | 1.685040e-02 | True | Norwegian_elkhound | 1.617540e-03 | True |
| 342 | 672256522047614977 | https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg | 1 | ostrich | 0.999004 | False | Arabian_camel | 5.120290e-04 | False | llama | 1.469420e-04 | False |
| 343 | 672264251789176834 | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | Chihuahua | 0.609860 | True | teddy | 6.813370e-02 | False | Norwich_terrier | 5.922730e-02 | True |
| 344 | 672267570918129665 | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | Irish_terrier | 0.716932 | True | miniature_pinscher | 5.123350e-02 | True | Airedale | 4.438090e-02 | True |
| 345 | 672272411274932228 | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | pug | 0.914685 | True | Norwegian_elkhound | 1.498190e-02 | True | Siamese_cat | 9.220550e-03 | False |
| 346 | 672466075045466113 | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | cocker_spaniel | 0.150424 | True | toy_poodle | 8.860530e-02 | True | Welsh_springer_spaniel | 7.201430e-02 | True |
| 347 | 672475084225949696 | https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg | 1 | terrapin | 0.879286 | False | cockroach | 4.525240e-02 | False | box_turtle | 1.640380e-02 | False |
| 348 | 672481316919734272 | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | Border_collie | 0.599454 | True | collie | 1.062270e-01 | True | Shetland_sheepdog | 9.446490e-02 | True |
| 349 | 672482722825261057 | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | West_Highland_white_terrier | 0.586173 | True | borzoi | 2.066200e-01 | True | Great_Pyrenees | 6.065270e-02 | True |
| 350 | 672488522314567680 | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | Doberman | 0.605358 | True | Rottweiler | 1.083820e-01 | True | Appenzeller | 7.779770e-02 | True |
| 351 | 672523490734551040 | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | golden_retriever | 0.565981 | True | chow | 8.121170e-02 | True | Irish_terrier | 6.159600e-02 | True |
| 352 | 672538107540070400 | https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg | 1 | Siamese_cat | 0.383937 | False | Chihuahua | 1.602740e-01 | True | giant_panda | 1.477450e-01 | False |
| 353 | 672591271085670400 | https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg | 1 | gondola | 0.134290 | False | lifeboat | 1.083560e-01 | False | bassinet | 9.367890e-02 | False |
| 354 | 672591762242805761 | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | kuvasz | 0.777659 | True | Great_Pyrenees | 1.125170e-01 | True | golden_retriever | 3.835090e-02 | True |
| 355 | 672594978741354496 | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | Great_Pyrenees | 0.755945 | True | Old_English_sheepdog | 8.233680e-02 | True | Afghan_hound | 2.703660e-02 | True |
| 356 | 672604026190569472 | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | toy_poodle | 0.820158 | True | miniature_poodle | 1.784040e-01 | True | toilet_tissue | 2.911580e-04 | False |
| 357 | 672609152938721280 | https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg | 1 | microwave | 0.981946 | False | rotisserie | 7.472450e-03 | False | television | 5.880620e-03 | False |
| 358 | 672614745925664768 | https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg | 1 | starfish | 0.712717 | False | goldfish | 2.588650e-01 | False | sea_cucumber | 2.015430e-03 | False |
| 359 | 672622327801233409 | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | golden_retriever | 0.952773 | True | Labrador_retriever | 1.083500e-02 | True | clumber | 8.786010e-03 | True |
| 360 | 672640509974827008 | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | Chesapeake_Bay_retriever | 0.420155 | True | Cardigan | 2.660300e-01 | True | Labrador_retriever | 4.251450e-02 | True |
| 361 | 672828477930868736 | https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg | 1 | sandbar | 0.118154 | False | stingray | 7.591500e-02 | False | seashore | 7.512480e-02 | False |
| 362 | 672834301050937345 | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | Pembroke | 0.582560 | True | Cardigan | 2.588690e-01 | True | nipple | 3.383450e-02 | False |
| 363 | 672877615439593473 | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | Chihuahua | 0.412362 | True | beagle | 6.806610e-02 | True | borzoi | 4.507120e-02 | True |
| 364 | 672884426393653248 | https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg | 1 | tusker | 0.122410 | False | warthog | 1.198700e-01 | False | water_buffalo | 1.058560e-01 | False |
| 365 | 672898206762672129 | https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg | 1 | motor_scooter | 0.835819 | False | bobsled | 3.585630e-02 | False | moped | 3.307900e-02 | False |
| 366 | 672902681409806336 | https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg | 1 | ram | 0.374466 | False | bighorn | 1.596210e-01 | False | Arabian_camel | 1.119190e-01 | False |
| 367 | 672964561327235073 | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | Chihuahua | 0.292343 | True | pug | 1.733640e-01 | True | French_bulldog | 4.550710e-02 | True |
| 368 | 672968025906282496 | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | toy_poodle | 0.678046 | True | miniature_poodle | 1.602730e-01 | True | Airedale | 6.564870e-02 | True |
| 369 | 672970152493887488 | https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg | 1 | leaf_beetle | 0.340154 | False | rhinoceros_beetle | 1.396980e-01 | False | crayfish | 5.803360e-02 | False |
| 370 | 672975131468300288 | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | pug | 0.836421 | True | Brabancon_griffon | 4.466780e-02 | True | French_bulldog | 3.657050e-02 | True |
| 371 | 672980819271634944 | https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg | 1 | car_mirror | 0.232754 | False | basset | 2.194610e-01 | True | beagle | 1.123970e-01 | True |
| 372 | 672984142909456390 | https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg | 1 | wombat | 0.738780 | False | beaver | 1.333680e-01 | False | wallaby | 3.237010e-02 | False |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | Lakeland_terrier | 0.836632 | True | West_Highland_white_terrier | 7.389960e-02 | True | wire-haired_fox_terrier | 3.816010e-02 | True |
| 374 | 672995267319328768 | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | French_bulldog | 0.719559 | True | boxer | 1.669270e-01 | True | Boston_bull | 1.013540e-01 | True |
| 375 | 672997845381865473 | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | chow | 0.517255 | True | Pomeranian | 2.060530e-01 | True | koala | 1.270370e-01 | False |
| 376 | 673148804208660480 | https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg | 1 | tub | 0.873010 | False | bathtub | 9.143410e-02 | False | toilet_seat | 2.545630e-02 | False |
| 377 | 673213039743795200 | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | schipperke | 0.888082 | True | groenendael | 4.772740e-02 | True | kelpie | 4.139800e-02 | True |
| 378 | 673240798075449344 | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | Airedale | 0.443004 | True | brown_bear | 1.141620e-01 | False | Chesapeake_Bay_retriever | 9.463860e-02 | True |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | Shih-Tzu | 0.610453 | True | Maltese_dog | 1.668150e-01 | True | Old_English_sheepdog | 1.320150e-01 | True |
| 380 | 673295268553605120 | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | golden_retriever | 0.889241 | True | Labrador_retriever | 6.468330e-02 | True | Great_Pyrenees | 1.261260e-02 | True |
| 381 | 673317986296586240 | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | miniature_pinscher | 0.384099 | True | bloodhound | 7.992320e-02 | True | Rottweiler | 6.859410e-02 | True |
| 382 | 673320132811366400 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 383 | 673342308415348736 | https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg | 1 | ski_mask | 0.981017 | False | Chihuahua | 1.355920e-02 | True | kelpie | 6.521800e-04 | True |
| 384 | 673343217010679808 | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | Chihuahua | 0.541408 | True | Italian_greyhound | 1.568910e-01 | True | miniature_pinscher | 6.955580e-02 | True |
| 385 | 673345638550134785 | https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg | 1 | hamster | 0.761025 | False | weasel | 6.936170e-02 | False | Pomeranian | 6.462700e-02 | True |
| 386 | 673350198937153538 | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | West_Highland_white_terrier | 0.119188 | True | quill | 1.040140e-01 | False | Maltese_dog | 9.394400e-02 | True |
| 387 | 673352124999274496 | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | golden_retriever | 0.672808 | True | Labrador_retriever | 2.758850e-01 | True | kuvasz | 2.225500e-02 | True |
| 388 | 673355879178194945 | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | Rottweiler | 0.529248 | True | miniature_pinscher | 1.682960e-01 | True | Appenzeller | 1.004520e-01 | True |
| 389 | 673359818736984064 | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | English_setter | 0.696568 | True | Brittany_spaniel | 1.040460e-01 | True | Ibizan_hound | 3.483250e-02 | True |
| 390 | 673363615379013632 | https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg | 1 | ox | 0.193431 | False | warthog | 1.238270e-01 | False | bison | 1.111770e-01 | False |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | teddy | 0.255210 | False | Christmas_stocking | 9.828520e-02 | False | pajama | 7.273510e-02 | False |
| 392 | 673580926094458881 | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | beagle | 0.985062 | True | basset | 6.417840e-03 | True | Walker_hound | 3.532590e-03 | True |
| 393 | 673583129559498752 | https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg | 1 | Arctic_fox | 0.153271 | False | golden_retriever | 1.139460e-01 | True | borzoi | 1.107180e-01 | True |
| 394 | 673612854080196609 | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | Newfoundland | 0.223101 | True | Leonberg | 1.111060e-01 | True | shovel | 8.562630e-02 | False |
| 395 | 673636718965334016 | https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg | 1 | wombat | 0.880257 | False | corn | 1.942070e-02 | False | pug | 1.904430e-02 | True |
| 396 | 673656262056419329 | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | bull_mastiff | 0.700625 | True | Rhodesian_ridgeback | 9.469770e-02 | True | Brabancon_griffon | 5.755940e-02 | True |
| 397 | 673662677122719744 | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | Labrador_retriever | 0.957670 | True | beagle | 1.241270e-02 | True | golden_retriever | 5.689130e-03 | True |
| 398 | 673680198160809984 | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | Samoyed | 0.989853 | True | Arctic_fox | 3.343750e-03 | False | chow | 2.801720e-03 | True |
| 399 | 673686845050527744 | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | Pekinese | 0.185903 | True | guinea_pig | 1.729510e-01 | False | pug | 1.661830e-01 | True |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | soft-coated_wheaten_terrier | 0.340806 | True | Sealyham_terrier | 2.348980e-01 | True | kuvasz | 2.034950e-01 | True |
| 401 | 673689733134946305 | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | Chesapeake_Bay_retriever | 0.382220 | True | American_Staffordshire_terrier | 3.501400e-01 | True | seat_belt | 9.887390e-02 | False |
| 402 | 673697980713705472 | https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg | 1 | porcupine | 0.151876 | False | hen | 1.113800e-01 | False | doormat | 5.893370e-02 | False |
| 403 | 673700254269775872 | https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg | 1 | water_bottle | 0.614536 | False | ashcan | 5.091140e-02 | False | bucket | 3.743190e-02 | False |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | Shih-Tzu | 0.165383 | True | Lhasa | 1.169770e-01 | True | Yorkshire_terrier | 6.389890e-02 | True |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | German_short-haired_pointer | 0.935771 | True | kelpie | 2.256100e-02 | True | Labrador_retriever | 8.846650e-03 | True |
| 406 | 673708611235921920 | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | golden_retriever | 0.936333 | True | cocker_spaniel | 2.421090e-02 | True | Labrador_retriever | 9.434850e-03 | True |
| 407 | 673709992831262724 | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | Chihuahua | 0.330171 | True | Siamese_cat | 1.815800e-01 | False | kelpie | 1.782270e-01 | True |
| 408 | 673711475735838725 | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | Maltese_dog | 0.607401 | True | toy_poodle | 1.438360e-01 | True | Sealyham_terrier | 6.390700e-02 | True |
| 409 | 673715861853720576 | https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg | 1 | suit | 0.404115 | False | bow_tie | 2.946830e-01 | False | Windsor_tie | 1.327010e-01 | False |
| 410 | 673887867907739649 | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | Brabancon_griffon | 0.216767 | True | Chihuahua | 1.909580e-01 | True | golden_retriever | 1.632880e-01 | True |
| 411 | 673906403526995968 | https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg | 1 | toilet_seat | 0.683319 | False | soft-coated_wheaten_terrier | 4.892770e-02 | True | Siberian_husky | 3.038600e-02 | True |
| 412 | 673919437611909120 | https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg | 1 | jack-o'-lantern | 0.172079 | False | schipperke | 1.159840e-01 | True | miniature_pinscher | 5.217500e-02 | True |
| 413 | 673956914389192708 | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | pug | 0.586161 | True | Brabancon_griffon | 8.274370e-02 | True | Chihuahua | 4.587770e-02 | True |
| 414 | 674008982932058114 | https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg | 1 | jigsaw_puzzle | 0.970810 | False | prayer_rug | 1.104820e-02 | False | quill | 8.431710e-03 | False |
| 415 | 674014384960745472 | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | Pembroke | 0.742320 | True | Cardigan | 8.493710e-02 | True | Eskimo_dog | 6.832090e-02 | True |
| 416 | 674019345211760640 | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | collie | 0.992732 | True | borzoi | 5.042900e-03 | True | Shetland_sheepdog | 1.724780e-03 | True |
| 417 | 674024893172875264 | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | Pomeranian | 0.648500 | True | Pekinese | 3.398350e-01 | True | Persian_cat | 6.448460e-03 | False |
| 418 | 674036086168010753 | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | toy_poodle | 0.685617 | True | miniature_poodle | 1.519360e-01 | True | Maltese_dog | 4.553110e-02 | True |
| 419 | 674038233588723717 | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | Eskimo_dog | 0.358459 | True | Norwegian_elkhound | 2.069630e-01 | True | malamute | 1.482360e-01 | True |
| 420 | 674042553264685056 | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | toy_poodle | 0.927975 | True | miniature_poodle | 6.894640e-02 | True | standard_poodle | 1.315750e-03 | True |
| 421 | 674045139690631169 | https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg | 1 | robin | 0.369661 | False | rhinoceros_beetle | 1.106070e-01 | False | European_fire_salamander | 4.317820e-02 | False |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | Shih-Tzu | 0.179777 | True | badger | 1.605800e-01 | False | three-toed_sloth | 1.321540e-01 | False |
| 423 | 674053186244734976 | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | Cardigan | 0.984725 | True | Pembroke | 8.730390e-03 | True | kelpie | 2.194770e-03 | True |
| 424 | 674063288070742018 | https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg | 1 | ostrich | 0.661176 | False | bearskin | 2.148790e-01 | False | swab | 6.445570e-02 | False |
| 425 | 674075285688614912 | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | Airedale | 0.305392 | True | Kerry_blue_terrier | 2.500140e-01 | True | Lakeland_terrier | 1.886680e-01 | True |
| 426 | 674082852460433408 | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | Pomeranian | 0.666957 | True | Shetland_sheepdog | 2.801940e-02 | True | ski_mask | 2.068270e-02 | False |
| 427 | 674255168825880576 | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | Eskimo_dog | 0.615741 | True | Siberian_husky | 1.995440e-01 | True | malamute | 1.791070e-01 | True |
| 428 | 674262580978937856 | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | Greater_Swiss_Mountain_dog | 0.519428 | True | boxer | 1.215000e-01 | True | Staffordshire_bullterrier | 1.144980e-01 | True |
| 429 | 674265582246694913 | https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg | 1 | slug | 0.998075 | False | ice_lolly | 9.840100e-04 | False | leafhopper | 9.720380e-05 | False |
| 430 | 674269164442398721 | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | pug | 0.622921 | True | Norwegian_elkhound | 4.865850e-02 | True | Cardigan | 1.696550e-02 | True |
| 431 | 674271431610523648 | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | German_shepherd | 0.991454 | True | malinois | 4.150230e-03 | True | bloodhound | 3.019130e-03 | True |
| 432 | 674291837063053312 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 433 | 674318007229923329 | https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg | 1 | porcupine | 0.846628 | False | hamster | 3.813610e-02 | False | echidna | 1.468040e-02 | False |
| 434 | 674372068062928900 | https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg | 1 | seashore | 0.346126 | False | American_alligator | 1.064040e-01 | False | sandbar | 4.934910e-02 | False |
| 435 | 674394782723014656 | https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg | 1 | toilet_tissue | 0.134983 | False | mosquito_net | 1.332470e-01 | False | Lakeland_terrier | 1.090990e-01 | True |
| 436 | 674410619106390016 | https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg | 1 | brown_bear | 0.698207 | False | sea_lion | 4.647450e-02 | False | beagle | 1.942680e-02 | True |
| 437 | 674416750885273600 | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | Chihuahua | 0.287201 | True | Boston_bull | 2.509200e-01 | True | whippet | 1.410120e-01 | True |
| 438 | 674422304705744896 | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | golden_retriever | 0.964497 | True | Labrador_retriever | 9.006180e-03 | True | tennis_ball | 7.138830e-03 | False |
| 439 | 674436901579923456 | https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg | 1 | acorn_squash | 0.375392 | False | Shih-Tzu | 1.054160e-01 | True | Lhasa | 7.283230e-02 | True |
| 440 | 674447403907457024 | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | Brabancon_griffon | 0.409909 | True | malinois | 2.446490e-01 | True | bull_mastiff | 7.481950e-02 | True |
| 441 | 674468880899788800 | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | chow | 0.526230 | True | Pomeranian | 2.836470e-01 | True | toy_poodle | 6.766540e-02 | True |
| 442 | 674632714662858753 | https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg | 1 | jellyfish | 0.432748 | False | goldfish | 1.131110e-01 | False | coral_reef | 8.704720e-02 | False |
| 443 | 674638615994089473 | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | Pomeranian | 0.846986 | True | chow | 1.420140e-01 | True | keeshond | 2.605040e-03 | True |
| 444 | 674644256330530816 | https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg | 1 | soccer_ball | 0.398102 | False | basset | 3.356920e-01 | True | cocker_spaniel | 7.294080e-02 | True |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | flat-coated_retriever | 0.837448 | True | groenendael | 8.616650e-02 | True | Labrador_retriever | 1.605220e-02 | True |
| 446 | 674664755118911488 | https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg | 1 | African_crocodile | 0.330625 | False | American_alligator | 7.535570e-02 | False | mink | 5.748070e-02 | False |
| 447 | 674670581682434048 | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | malamute | 0.180079 | True | Eskimo_dog | 1.780330e-01 | True | Siberian_husky | 7.796610e-02 | True |
| 448 | 674690135443775488 | https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg | 1 | tick | 0.242538 | False | nail | 2.125890e-01 | False | screw | 1.728380e-01 | False |
| 449 | 674737130913071104 | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | Pomeranian | 0.948537 | True | schipperke | 1.430990e-02 | True | Chihuahua | 8.120240e-03 | True |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | Dandie_Dinmont | 0.175915 | True | black-footed_ferret | 9.653430e-02 | False | toy_poodle | 6.414470e-02 | True |
| 451 | 674743008475090944 | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | Bernese_mountain_dog | 0.583054 | True | Shetland_sheepdog | 6.599040e-02 | True | Greater_Swiss_Mountain_dog | 6.523620e-02 | True |
| 452 | 674752233200820224 | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | vizsla | 0.665516 | True | redbone | 1.733660e-01 | True | basset | 1.347830e-01 | True |
| 453 | 674754018082705410 | https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg | 1 | seashore | 0.352321 | False | promontory | 1.317530e-01 | False | wreck | 9.559670e-02 | False |
| 454 | 674764817387900928 | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | Samoyed | 0.634695 | True | Arctic_fox | 3.098530e-01 | False | kuvasz | 1.964100e-02 | True |
| 455 | 674767892831932416 | https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg | 1 | shower_curtain | 0.238855 | False | sarong | 9.241410e-02 | False | kimono | 5.641250e-02 | False |
| 456 | 674774481756377088 | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | Chihuahua | 0.407016 | True | French_bulldog | 3.099780e-01 | True | Siamese_cat | 2.276770e-01 | False |
| 457 | 674781762103414784 | https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg | 1 | ocarina | 0.148975 | False | hamster | 6.898490e-02 | False | wool | 3.172850e-02 | False |
| 458 | 674788554665512960 | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | miniature_poodle | 0.349561 | True | toy_poodle | 1.547110e-01 | True | Maltese_dog | 1.342290e-01 | True |
| 459 | 674790488185167872 | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | Labrador_retriever | 0.801903 | True | Chesapeake_Bay_retriever | 1.935750e-01 | True | Rottweiler | 1.193050e-03 | True |
| 460 | 674793399141146624 | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | giant_schnauzer | 0.119693 | True | Afghan_hound | 7.276270e-02 | True | miniature_schnauzer | 6.378590e-02 | True |
| 461 | 674800520222154752 | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | Pembroke | 0.876479 | True | Cardigan | 9.691140e-02 | True | dingo | 9.195670e-03 | False |
| 462 | 674805413498527744 | https://pbs.twimg.com/ext_tw_video_thumb/67480... | 1 | English_springer | 0.594467 | True | cocker_spaniel | 3.899940e-01 | True | Welsh_springer_spaniel | 7.096110e-03 | True |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | Rottweiler | 0.591829 | True | Doberman | 2.045440e-01 | True | black-and-tan_coonhound | 7.860190e-02 | True |
| 464 | 675003128568291329 | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | Pembroke | 0.655279 | True | Pomeranian | 1.041640e-01 | True | Cardigan | 5.281770e-02 | True |
| 465 | 675006312288268288 | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | boxer | 0.654697 | True | space_heater | 4.338880e-02 | False | beagle | 4.284760e-02 | True |
| 466 | 675015141583413248 | https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg | 1 | street_sign | 0.290091 | False | golden_retriever | 2.583720e-01 | True | sandbar | 1.321730e-01 | False |
| 467 | 675047298674663426 | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | Samoyed | 0.978007 | True | chow | 7.121240e-03 | True | Pomeranian | 6.397830e-03 | True |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | dalmatian | 0.989519 | True | English_setter | 5.257670e-03 | True | German_short-haired_pointer | 1.442830e-03 | True |
| 469 | 675111688094527488 | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | Labrador_retriever | 0.631501 | True | Brittany_spaniel | 1.019270e-01 | True | Chesapeake_Bay_retriever | 6.264980e-02 | True |
| 470 | 675113801096802304 | https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg | 1 | bow | 0.168020 | False | quill | 1.088070e-01 | False | joystick | 4.331180e-02 | False |
| 471 | 675135153782571009 | https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg | 1 | stove | 0.587507 | False | rotisserie | 5.171310e-02 | False | microwave | 2.072530e-02 | False |
| 472 | 675145476954566656 | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | Labrador_retriever | 0.458746 | True | Great_Dane | 2.355040e-01 | True | Staffordshire_bullterrier | 1.168640e-01 | True |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | dingo | 0.288447 | False | Cardigan | 2.299440e-01 | True | Pembroke | 1.904070e-01 | True |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | golden_retriever | 0.949215 | True | Labrador_retriever | 1.676540e-02 | True | flat-coated_retriever | 1.063730e-02 | True |
| 475 | 675149409102012420 | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | chow | 0.999876 | True | Tibetan_mastiff | 5.867490e-05 | True | Tibetan_terrier | 2.877850e-05 | True |
| 476 | 675153376133427200 | https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg | 1 | paper_towel | 0.327957 | False | mailbox | 9.602690e-02 | False | seat_belt | 3.499510e-02 | False |
| 477 | 675166823650848770 | https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg | 1 | llama | 0.284394 | False | standard_poodle | 1.325690e-01 | True | teddy | 1.279750e-01 | False |
| 478 | 675334060156301312 | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | Pembroke | 0.773135 | True | Cardigan | 1.168100e-01 | True | chow | 3.903620e-02 | True |
| 479 | 675349384339542016 | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | borzoi | 0.866367 | True | Saluki | 1.220790e-01 | True | Irish_wolfhound | 4.019720e-03 | True |
| 480 | 675354435921575936 | https://pbs.twimg.com/ext_tw_video_thumb/67535... | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 481 | 675362609739206656 | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | Labrador_retriever | 0.479008 | True | ice_bear | 2.182890e-01 | False | kuvasz | 1.399110e-01 | True |
| 482 | 675372240448454658 | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | Chihuahua | 0.416385 | True | West_Highland_white_terrier | 1.029330e-01 | True | Samoyed | 8.729950e-02 | True |
| 483 | 675432746517426176 | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | Labrador_retriever | 0.986548 | True | golden_retriever | 8.861850e-03 | True | Chihuahua | 6.935280e-04 | True |
| 484 | 675483430902214656 | https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg | 1 | box_turtle | 0.543706 | False | terrapin | 2.026000e-01 | False | loggerhead | 7.112150e-02 | False |
| 485 | 675489971617296384 | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | West_Highland_white_terrier | 0.139613 | True | seat_belt | 1.186470e-01 | False | Old_English_sheepdog | 9.395220e-02 | True |
| 486 | 675497103322386432 | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | vizsla | 0.519589 | True | miniature_pinscher | 6.477120e-02 | True | Rhodesian_ridgeback | 6.149130e-02 | True |
| 487 | 675501075957489664 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | Scottish_deerhound | 0.240591 | True | groenendael | 1.569160e-01 | True | flat-coated_retriever | 9.089940e-02 | True |
| 489 | 675522403582218240 | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | cocker_spaniel | 0.299708 | True | golden_retriever | 2.636650e-01 | True | Irish_setter | 8.032330e-02 | True |
| 490 | 675531475945709568 | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | Pembroke | 0.918441 | True | Cardigan | 2.733950e-02 | True | Siberian_husky | 2.022100e-02 | True |
| 491 | 675534494439489536 | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | chow | 0.749368 | True | schipperke | 1.337380e-01 | True | Newfoundland | 4.991380e-02 | True |
| 492 | 675706639471788032 | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | English_springer | 0.990300 | True | Welsh_springer_spaniel | 2.079910e-03 | True | cocker_spaniel | 2.013780e-03 | True |
| 493 | 675707330206547968 | https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg | 1 | bath_towel | 0.721933 | False | Staffordshire_bullterrier | 5.934420e-02 | True | bagel | 3.570160e-02 | False |
| 494 | 675710890956750848 | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | standard_schnauzer | 0.441427 | True | miniature_schnauzer | 2.488850e-01 | True | Sealyham_terrier | 1.649670e-01 | True |
| 495 | 675740360753160193 | https://pbs.twimg.com/ext_tw_video_thumb/67574... | 1 | golden_retriever | 0.800495 | True | kuvasz | 9.775640e-02 | True | Saluki | 6.841460e-02 | True |
| 496 | 675781562965868544 | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | Maltese_dog | 0.921968 | True | West_Highland_white_terrier | 1.781070e-02 | True | toy_poodle | 1.355540e-02 | True |
| 497 | 675798442703122432 | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | beagle | 0.681218 | True | basset | 1.251210e-01 | True | boxer | 8.039820e-02 | True |
| 498 | 675820929667219457 | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | basset | 0.556373 | True | beagle | 2.016750e-01 | True | bloodhound | 1.108480e-01 | True |
| 499 | 675822767435051008 | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | Pomeranian | 0.460710 | True | chow | 2.027650e-01 | True | Pekinese | 1.332660e-01 | True |
| 500 | 675845657354215424 | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | pug | 0.883952 | True | Boston_bull | 1.105680e-02 | True | French_bulldog | 9.839810e-03 | True |
| 501 | 675853064436391936 | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | Labrador_retriever | 0.868367 | True | golden_retriever | 4.330460e-02 | True | vizsla | 2.820720e-02 | True |
| 502 | 675870721063669760 | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | golden_retriever | 0.263892 | True | Welsh_springer_spaniel | 1.841930e-01 | True | beagle | 1.822410e-01 | True |
| 503 | 675878199931371520 | https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg | 1 | wood_rabbit | 0.785756 | False | hare | 1.181810e-01 | False | Cardigan | 4.362710e-02 | True |
| 504 | 675888385639251968 | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | West_Highland_white_terrier | 0.672117 | True | Old_English_sheepdog | 1.461470e-01 | True | komondor | 2.314140e-02 | True |
| 505 | 675891555769696257 | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | Italian_greyhound | 0.305637 | True | whippet | 2.320570e-01 | True | Great_Dane | 1.178060e-01 | True |
| 506 | 675898130735476737 | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | Labrador_retriever | 0.407430 | True | malinois | 7.703670e-02 | True | pug | 7.459730e-02 | True |
| 507 | 676089483918516224 | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | bull_mastiff | 0.743808 | True | boxer | 1.066970e-01 | True | American_Staffordshire_terrier | 4.233530e-02 | True |
| 508 | 676098748976615425 | https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg | 1 | walking_stick | 0.162179 | False | sandal | 1.290860e-01 | False | purse | 8.141190e-02 | False |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | Shih-Tzu | 0.225848 | True | Norfolk_terrier | 1.868730e-01 | True | Irish_terrier | 1.069870e-01 | True |
| 510 | 676146341966438401 | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | Irish_water_spaniel | 0.388332 | True | standard_poodle | 2.841210e-01 | True | greenhouse | 3.486810e-02 | False |
| 511 | 676191832485810177 | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | Chihuahua | 0.376741 | True | Italian_greyhound | 1.731140e-01 | True | muzzle | 7.148510e-02 | False |
| 512 | 676215927814406144 | https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg | 1 | hamster | 0.999484 | False | guinea_pig | 1.582170e-04 | False | broccoli | 6.091100e-05 | False |
| 513 | 676219687039057920 | https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg | 1 | bubble | 0.997556 | False | leafhopper | 1.589610e-04 | False | whippet | 1.324640e-04 | True |
| 514 | 676237365392908289 | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | French_bulldog | 0.961996 | True | Chihuahua | 2.179300e-02 | True | Boston_bull | 6.916290e-03 | True |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | teddy | 0.098283 | False | toy_poodle | 9.802930e-02 | True | shopping_basket | 7.785210e-02 | False |
| 516 | 676430933382295552 | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | golden_retriever | 0.583875 | True | cocker_spaniel | 2.036710e-01 | True | Labrador_retriever | 3.612170e-02 | True |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | Maltese_dog | 0.579472 | True | toy_poodle | 1.334460e-01 | True | Shih-Tzu | 9.439660e-02 | True |
| 518 | 676470639084101634 | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | golden_retriever | 0.790386 | True | borzoi | 2.288510e-02 | True | dingo | 1.534340e-02 | False |
| 519 | 676496375194980353 | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | pug | 0.985387 | True | Norwegian_elkhound | 4.416900e-03 | True | French_bulldog | 3.892870e-03 | True |
| 520 | 676533798876651520 | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | chow | 0.265274 | True | ice_bear | 1.676140e-01 | False | fur_coat | 1.175060e-01 | False |
| 521 | 676575501977128964 | https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg | 1 | feather_boa | 0.424106 | False | Yorkshire_terrier | 7.314430e-02 | True | Shetland_sheepdog | 5.759760e-02 | True |
| 522 | 676582956622721024 | https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg | 1 | seat_belt | 0.790028 | False | Boston_bull | 1.963070e-01 | True | French_bulldog | 1.242890e-02 | True |
| 523 | 676588346097852417 | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | Boston_bull | 0.976577 | True | French_bulldog | 1.432370e-02 | True | Chihuahua | 2.301920e-03 | True |
| 524 | 676603393314578432 | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | whippet | 0.877021 | True | Great_Dane | 3.418190e-02 | True | boxer | 2.840400e-02 | True |
| 525 | 676606785097199616 | https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg | 1 | Loafer | 0.202999 | False | doormat | 2.004110e-01 | False | malinois | 1.423000e-01 | True |
| 526 | 676613908052996102 | https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg | 1 | book_jacket | 0.493790 | False | Doberman | 9.642280e-02 | True | miniature_pinscher | 7.064670e-02 | True |
| 527 | 676617503762681856 | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | Chihuahua | 0.841084 | True | Pomeranian | 1.205300e-01 | True | Pekinese | 6.600340e-03 | True |
| 528 | 676776431406465024 | https://pbs.twimg.com/ext_tw_video_thumb/67677... | 1 | doormat | 0.201346 | False | dishwasher | 1.917490e-01 | False | microwave | 3.811000e-02 | False |
| 529 | 676811746707918848 | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | Chihuahua | 0.440916 | True | Pomeranian | 3.458060e-01 | True | cocker_spaniel | 6.033120e-02 | True |
| 530 | 676819651066732545 | https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg | 2 | rain_barrel | 0.625555 | False | barrel | 1.383830e-01 | False | Labrador_retriever | 3.946460e-02 | True |
| 531 | 676821958043033607 | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | Great_Pyrenees | 0.869804 | True | kuvasz | 7.981430e-02 | True | standard_poodle | 1.326300e-02 | True |
| 532 | 676864501615042560 | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | Chesapeake_Bay_retriever | 0.371146 | True | water_buffalo | 9.959630e-02 | False | Weimaraner | 4.896790e-02 | True |
| 533 | 676897532954456065 | https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg | 1 | hamster | 0.628255 | False | guinea_pig | 3.186460e-01 | False | macaque | 1.305820e-02 | False |
| 534 | 676936541936185344 | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | Chesapeake_Bay_retriever | 0.545286 | True | Norwegian_elkhound | 8.148200e-02 | True | space_heater | 4.739110e-02 | False |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 1.546300e-01 | False | weasel | 9.762550e-02 | False |
| 536 | 676946864479084545 | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | Pekinese | 0.752707 | True | golden_retriever | 5.565460e-02 | True | Great_Pyrenees | 4.101780e-02 | True |
| 537 | 676948236477857792 | https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg | 1 | guenon | 0.611603 | False | macaque | 1.351760e-01 | False | squirrel_monkey | 8.324730e-02 | False |
| 538 | 676949632774234114 | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | Welsh_springer_spaniel | 0.206479 | True | Saint_Bernard | 1.393390e-01 | True | boxer | 1.146060e-01 | True |
| 539 | 676957860086095872 | https://pbs.twimg.com/ext_tw_video_thumb/67695... | 1 | Labrador_retriever | 0.772423 | True | beagle | 5.590170e-02 | True | golden_retriever | 3.115190e-02 | True |
| 540 | 676975532580409345 | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | malamute | 0.363257 | True | Siberian_husky | 2.458620e-01 | True | Eskimo_dog | 1.255470e-01 | True |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | English_setter | 0.282396 | True | Shih-Tzu | 8.411190e-02 | True | Old_English_sheepdog | 5.953800e-02 | True |
| 542 | 677228873407442944 | https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg | 1 | common_iguana | 0.566338 | False | tennis_ball | 1.546460e-01 | False | green_lizard | 4.497580e-02 | False |
| 543 | 677269281705472000 | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | Shetland_sheepdog | 0.656616 | True | collie | 1.954050e-01 | True | German_shepherd | 1.310320e-02 | True |
| 544 | 677301033169788928 | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | Japanese_spaniel | 0.661178 | True | Pekinese | 1.501190e-01 | True | Chihuahua | 1.197200e-01 | True |
| 545 | 677314812125323265 | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | Blenheim_spaniel | 0.924127 | True | Japanese_spaniel | 5.479010e-02 | True | Chihuahua | 8.204040e-03 | True |
| 546 | 677328882937298944 | https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg | 1 | water_buffalo | 0.424250 | False | kelpie | 2.905410e-02 | True | Staffordshire_bullterrier | 2.846970e-02 | True |
| 547 | 677331501395156992 | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | beagle | 0.313464 | True | boxer | 2.185030e-01 | True | French_bulldog | 1.064620e-01 | True |
| 548 | 677334615166730240 | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | Lakeland_terrier | 0.859392 | True | Airedale | 6.729170e-02 | True | Irish_water_spaniel | 4.953060e-02 | True |
| 549 | 677530072887205888 | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | Staffordshire_bullterrier | 0.689259 | True | Norwegian_elkhound | 2.612100e-02 | True | American_Staffordshire_terrier | 2.307470e-02 | True |
| 550 | 677547928504967168 | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | American_Staffordshire_terrier | 0.914978 | True | Staffordshire_bullterrier | 8.439530e-02 | True | boxer | 4.616630e-04 | True |
| 551 | 677557565589463040 | https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg | 1 | seat_belt | 0.277257 | False | Shih-Tzu | 2.490170e-01 | True | Pekinese | 2.092130e-01 | True |
| 552 | 677565715327688705 | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | basset | 0.397295 | True | Welsh_springer_spaniel | 1.995540e-01 | True | purse | 1.056410e-01 | False |
| 553 | 677573743309385728 | https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg | 2 | patio | 0.535070 | False | folding_chair | 8.041920e-02 | False | parallel_bars | 3.479650e-02 | False |
| 554 | 677644091929329666 | https://pbs.twimg.com/ext_tw_video_thumb/67764... | 1 | Chihuahua | 0.626236 | True | Italian_greyhound | 1.284830e-01 | True | swing | 5.984040e-02 | False |
| 555 | 677662372920729601 | https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg | 1 | cowboy_hat | 0.256110 | False | trench_coat | 1.270860e-01 | False | cloak | 7.143890e-02 | False |
| 556 | 677673981332312066 | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | Maltese_dog | 0.817908 | True | Angora | 7.780510e-02 | False | Pomeranian | 2.218420e-02 | True |
| 557 | 677687604918272002 | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | Pembroke | 0.573047 | True | sunglasses | 1.267580e-01 | False | golden_retriever | 1.080470e-01 | True |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | Shih-Tzu | 0.916645 | True | Lhasa | 5.788340e-02 | True | Pekinese | 2.012580e-02 | True |
| 559 | 677700003327029250 | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | Siberian_husky | 0.120849 | True | junco | 7.920560e-02 | False | malamute | 6.308750e-02 | True |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | teddy | 0.662908 | False | crib | 3.189120e-02 | False | chow | 2.543780e-02 | True |
| 561 | 677895101218201600 | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | dalmatian | 0.550702 | True | kuvasz | 6.022640e-02 | True | Great_Pyrenees | 5.863100e-02 | True |
| 562 | 677918531514703872 | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | Eskimo_dog | 0.199347 | True | dalmatian | 1.532250e-01 | True | American_Staffordshire_terrier | 1.077980e-01 | True |
| 563 | 678021115718029313 | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | miniature_pinscher | 0.822048 | True | Doberman | 9.608450e-02 | True | Rottweiler | 3.270930e-02 | True |
| 564 | 678255464182861824 | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | Chihuahua | 0.613819 | True | Yorkshire_terrier | 1.279310e-01 | True | Pomeranian | 6.212430e-02 | True |
| 565 | 678278586130948096 | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | Maltese_dog | 0.897841 | True | Lhasa | 3.571750e-02 | True | Tibetan_terrier | 1.710750e-02 | True |
| 566 | 678334497360859136 | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | Norfolk_terrier | 0.378643 | True | golden_retriever | 9.559390e-02 | True | kelpie | 8.530920e-02 | True |
| 567 | 678341075375947776 | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | golden_retriever | 0.853284 | True | cocker_spaniel | 2.622980e-02 | True | Labrador_retriever | 2.412280e-02 | True |
| 568 | 678380236862578688 | https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg | 1 | dogsled | 0.088540 | False | snowmobile | 5.729100e-02 | False | Samoyed | 4.760140e-02 | True |
| 569 | 678389028614488064 | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | miniature_pinscher | 0.516284 | True | kelpie | 2.274020e-01 | True | vizsla | 1.032460e-01 | True |
| 570 | 678396796259975168 | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | Pembroke | 0.956180 | True | Cardigan | 3.180310e-02 | True | Chihuahua | 6.276500e-03 | True |
| 571 | 678399652199309312 | https://pbs.twimg.com/ext_tw_video_thumb/67839... | 1 | swing | 0.929196 | False | Bedlington_terrier | 1.504720e-02 | True | Great_Pyrenees | 1.403890e-02 | True |
| 572 | 678410210315247616 | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | schipperke | 0.145877 | True | Labrador_retriever | 9.835380e-02 | True | kelpie | 9.739340e-02 | True |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | Maltese_dog | 0.759945 | True | toy_poodle | 1.011940e-01 | True | Shih-Tzu | 5.603740e-02 | True |
| 574 | 678446151570427904 | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | Staffordshire_bullterrier | 0.284492 | True | Rottweiler | 1.894340e-01 | True | American_Staffordshire_terrier | 1.894300e-01 | True |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | Labrador_retriever | 0.338757 | True | flat-coated_retriever | 3.044700e-01 | True | chest | 9.339230e-02 | False |
| 576 | 678675843183484930 | https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg | 1 | maze | 0.339850 | False | streetcar | 9.968780e-02 | False | sundial | 8.480770e-02 | False |
| 577 | 678740035362037760 | https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg | 1 | seat_belt | 0.787164 | False | sunglasses | 4.573870e-02 | False | beagle | 2.252510e-02 | True |
| 578 | 678755239630127104 | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | malamute | 0.606654 | True | Border_collie | 1.938310e-01 | True | collie | 4.837810e-02 | True |
| 579 | 678764513869611008 | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | Irish_terrier | 0.696646 | True | Australian_terrier | 7.496160e-02 | True | Irish_setter | 6.390120e-02 | True |
| 580 | 678767140346941444 | https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg | 1 | harp | 0.821120 | False | window_screen | 2.512080e-02 | False | mosquito_net | 1.671560e-02 | False |
| 581 | 678774928607469569 | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | Pembroke | 0.194681 | True | toy_poodle | 1.218210e-01 | True | Pomeranian | 9.684300e-02 | True |
| 582 | 678798276842360832 | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | Airedale | 0.583122 | True | silky_terrier | 1.295670e-01 | True | Lakeland_terrier | 9.472660e-02 | True |
| 583 | 678800283649069056 | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | Labrador_retriever | 0.213673 | True | beagle | 1.462350e-01 | True | Airedale | 1.227010e-01 | True |
| 584 | 678969228704284672 | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | Labrador_retriever | 0.680251 | True | Chesapeake_Bay_retriever | 2.016970e-01 | True | golden_retriever | 1.967590e-02 | True |
| 585 | 678991772295516161 | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | Eskimo_dog | 0.330216 | True | Siberian_husky | 1.870030e-01 | True | Chihuahua | 1.014200e-01 | True |
| 586 | 679047485189439488 | https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg | 1 | panpipe | 0.962572 | False | bannister | 2.524820e-02 | False | golden_retriever | 2.930350e-03 | True |
| 587 | 679062614270468097 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 588 | 679111216690831360 | https://pbs.twimg.com/ext_tw_video_thumb/67911... | 1 | kelpie | 0.189423 | True | beagle | 1.219880e-01 | True | basset | 1.211710e-01 | True |
| 589 | 679132435750195208 | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | Scottish_deerhound | 0.194610 | True | Irish_wolfhound | 1.628550e-01 | True | giant_schnauzer | 1.598370e-01 | True |
| 590 | 679148763231985668 | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | Italian_greyhound | 0.302685 | True | hair_slide | 1.242810e-01 | False | Afghan_hound | 5.984600e-02 | True |
| 591 | 679158373988876288 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | toy_poodle | 0.621780 | True | miniature_poodle | 1.978190e-01 | True | soft-coated_wheaten_terrier | 4.674500e-02 | True |
| 593 | 679475951516934144 | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | Maltese_dog | 0.145742 | True | toy_poodle | 1.394070e-01 | True | West_Highland_white_terrier | 1.088210e-01 | True |
| 594 | 679503373272485890 | https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg | 1 | porcupine | 0.999846 | False | meerkat | 7.191480e-05 | False | echidna | 4.447290e-05 | False |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | Chihuahua | 0.761972 | True | black-footed_ferret | 1.506050e-01 | False | squirrel_monkey | 2.814790e-02 | False |
| 596 | 679527802031484928 | https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg | 1 | mailbox | 0.336393 | False | cannon | 1.589360e-01 | False | cuirass | 5.264710e-02 | False |
| 597 | 679530280114372609 | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | dalmatian | 0.750256 | True | jaguar | 1.690070e-01 | False | zebra | 6.481490e-03 | False |
| 598 | 679722016581222400 | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | boxer | 0.459604 | True | Boston_bull | 1.979130e-01 | True | French_bulldog | 8.702250e-02 | True |
| 599 | 679729593985699840 | https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg | 1 | wallaby | 0.164215 | False | West_Highland_white_terrier | 9.351480e-02 | True | ashcan | 6.727830e-02 | False |
| 600 | 679736210798047232 | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | French_bulldog | 0.319139 | True | Chihuahua | 1.540880e-01 | True | Cardigan | 1.176880e-01 | True |
| 601 | 679777920601223168 | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | bloodhound | 0.528819 | True | bull_mastiff | 4.201190e-01 | True | French_bulldog | 9.480590e-03 | True |
| 602 | 679828447187857408 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 603 | 679844490799091713 | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | Airedale | 0.903832 | True | Border_terrier | 3.471260e-02 | True | toy_poodle | 2.137800e-02 | True |
| 604 | 679854723806179328 | https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg | 1 | llama | 0.887963 | False | ram | 9.502070e-02 | False | chow | 2.307390e-03 | True |
| 605 | 679862121895714818 | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | EntleBucher | 0.523206 | True | Greater_Swiss_Mountain_dog | 4.316570e-01 | True | Appenzeller | 4.420790e-02 | True |
| 606 | 679877062409191424 | https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg | 1 | hog | 0.809466 | False | hay | 6.017780e-02 | False | lumbermill | 1.648340e-02 | False |
| 607 | 680055455951884288 | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | Samoyed | 0.995466 | True | Great_Pyrenees | 1.833950e-03 | True | Pomeranian | 6.669490e-04 | True |
| 608 | 680070545539371008 | https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg | 1 | earthstar | 0.127701 | False | Shih-Tzu | 1.218110e-01 | True | bubble | 1.178200e-01 | False |
| 609 | 680085611152338944 | https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg | 3 | pillow | 0.778113 | False | apron | 9.502280e-02 | False | wallet | 4.932580e-02 | False |
| 610 | 680100725817409536 | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | golden_retriever | 0.698961 | True | chow | 1.459710e-01 | True | Pomeranian | 3.488800e-02 | True |
| 611 | 680115823365742593 | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | pug | 0.999365 | True | French_bulldog | 5.436150e-04 | True | Boston_bull | 2.815280e-05 | True |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | Maltese_dog | 0.199121 | True | West_Highland_white_terrier | 1.978970e-01 | True | Shih-Tzu | 1.571300e-01 | True |
| 613 | 680145970311643136 | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | miniature_poodle | 0.457117 | True | toy_poodle | 2.264810e-01 | True | Maltese_dog | 6.768150e-02 | True |
| 614 | 680161097740095489 | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | bluetick | 0.268681 | True | miniature_pinscher | 1.256520e-01 | True | English_setter | 8.937270e-02 | True |
| 615 | 680176173301628928 | https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg | 1 | Christmas_stocking | 0.207547 | False | mask | 1.938800e-01 | False | feather_boa | 1.527380e-01 | False |
| 616 | 680191257256136705 | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | Brittany_spaniel | 0.733253 | True | Welsh_springer_spaniel | 2.516340e-01 | True | English_springer | 9.243210e-03 | True |
| 617 | 680206703334408192 | https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg | 1 | Christmas_stocking | 0.149758 | False | cloak | 1.288300e-01 | False | teddy | 1.091290e-01 | False |
| 618 | 680221482581123072 | https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg | 1 | bubble | 0.240173 | False | hen | 1.462220e-01 | False | abaya | 1.393420e-01 | False |
| 619 | 680440374763077632 | https://pbs.twimg.com/ext_tw_video_thumb/68044... | 1 | space_heater | 0.920367 | False | radiator | 4.993320e-02 | False | electric_fan | 6.719030e-03 | False |
| 620 | 680473011644985345 | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | Lakeland_terrier | 0.796694 | True | West_Highland_white_terrier | 1.387090e-01 | True | Norwich_terrier | 1.625340e-02 | True |
| 621 | 680494726643068929 | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | kuvasz | 0.438627 | True | Samoyed | 1.116220e-01 | True | Great_Pyrenees | 6.406080e-02 | True |
| 622 | 680497766108381184 | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | Chihuahua | 0.538354 | True | muzzle | 8.428870e-02 | False | ski_mask | 7.669010e-02 | False |
| 623 | 680583894916304897 | https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg | 1 | tub | 0.889801 | False | bathtub | 3.235110e-02 | False | hippopotamus | 1.417730e-02 | False |
| 624 | 680609293079592961 | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | French_bulldog | 0.700764 | True | Chihuahua | 7.238960e-02 | True | American_Staffordshire_terrier | 3.961870e-02 | True |
| 625 | 680798457301471234 | https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg | 1 | ram | 0.499761 | False | hog | 2.837950e-01 | False | ox | 6.745510e-02 | False |
| 626 | 680801747103793152 | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | pug | 0.996720 | True | Labrador_retriever | 1.438790e-03 | True | Staffordshire_bullterrier | 5.176030e-04 | True |
| 627 | 680836378243002368 | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | Pembroke | 0.427781 | True | Shetland_sheepdog | 1.606690e-01 | True | Pomeranian | 1.112500e-01 | True |
| 628 | 680889648562991104 | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | Shetland_sheepdog | 0.876337 | True | collie | 7.833100e-02 | True | Pomeranian | 2.040750e-02 | True |
| 629 | 680913438424612864 | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | Pomeranian | 0.615678 | True | golden_retriever | 1.264550e-01 | True | Chihuahua | 8.718360e-02 | True |
| 630 | 680934982542561280 | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | Labrador_retriever | 0.784398 | True | Siberian_husky | 5.592510e-02 | True | beagle | 2.275010e-02 | True |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | soft-coated_wheaten_terrier | 0.289598 | True | West_Highland_white_terrier | 1.571950e-01 | True | toy_poodle | 7.443470e-02 | True |
| 632 | 680959110691590145 | https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg | 2 | carousel | 0.500992 | False | feather_boa | 6.439000e-02 | False | pug | 4.435650e-02 | True |
| 633 | 680970795137544192 | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | pug | 0.713102 | True | whippet | 5.742630e-02 | True | quilt | 5.601810e-02 | False |
| 634 | 681193455364796417 | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | Pomeranian | 0.992619 | True | keeshond | 4.356450e-03 | True | schipperke | 8.140000e-04 | True |
| 635 | 681231109724700672 | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | Irish_setter | 0.406047 | True | cocker_spaniel | 3.456460e-01 | True | Airedale | 1.479120e-01 | True |
| 636 | 681242418453299201 | https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg | 1 | motor_scooter | 0.255934 | False | rifle | 1.452020e-01 | False | assault_rifle | 9.700010e-02 | False |
| 637 | 681261549936340994 | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | Tibetan_terrier | 0.382101 | True | miniature_poodle | 9.542940e-02 | True | Maltese_dog | 6.573770e-02 | True |
| 638 | 681281657291280384 | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | Saint_Bernard | 0.998830 | True | Pekinese | 3.913120e-04 | True | Great_Pyrenees | 2.235820e-04 | True |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | Lhasa | 0.482401 | True | Shih-Tzu | 1.136720e-01 | True | Pomeranian | 9.622860e-02 | True |
| 640 | 681302363064414209 | https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg | 1 | frilled_lizard | 0.326259 | False | tailed_frog | 1.045390e-01 | False | axolotl | 7.247930e-02 | False |
| 641 | 681320187870711809 | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | Samoyed | 0.362596 | True | Eskimo_dog | 2.453950e-01 | True | Siberian_husky | 1.082320e-01 | True |
| 642 | 681339448655802368 | https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg | 1 | seat_belt | 0.532441 | False | Labrador_retriever | 9.461490e-02 | True | kuvasz | 8.986300e-02 | True |
| 643 | 681523177663676416 | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | Norfolk_terrier | 0.205067 | True | German_shepherd | 1.604390e-01 | True | chow | 1.562340e-01 | True |
| 644 | 681579835668455424 | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | Rottweiler | 0.760671 | True | Labrador_retriever | 9.658470e-02 | True | Staffordshire_bullterrier | 4.033260e-02 | True |
| 645 | 681610798867845120 | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | toy_poodle | 0.821704 | True | miniature_poodle | 1.160420e-01 | True | Yorkshire_terrier | 1.484720e-02 | True |
| 646 | 681654059175129088 | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | Pomeranian | 0.800538 | True | chow | 1.468920e-01 | True | Pekinese | 3.761250e-02 | True |
| 647 | 681679526984871937 | https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg | 1 | birdhouse | 0.472351 | False | teddy | 1.420580e-01 | False | pot | 3.290590e-02 | False |
| 648 | 681694085539872773 | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | toy_poodle | 0.920992 | True | miniature_poodle | 6.085720e-02 | True | Maltese_dog | 6.063720e-03 | True |
| 649 | 681891461017812993 | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | Chihuahua | 0.203570 | True | doormat | 1.343160e-01 | False | toy_terrier | 8.448230e-02 | True |
| 650 | 681981167097122816 | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | Labrador_retriever | 0.452577 | True | golden_retriever | 4.034200e-01 | True | beagle | 6.948570e-02 | True |
| 651 | 682003177596559360 | https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg | 1 | triceratops | 0.249872 | False | chimpanzee | 6.092930e-02 | False | mask | 5.022100e-02 | False |
| 652 | 682032003584274432 | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | schipperke | 0.997953 | True | groenendael | 6.764350e-04 | True | miniature_pinscher | 2.112460e-04 | True |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | teddy | 0.364095 | False | doormat | 1.192430e-01 | False | toyshop | 3.512710e-02 | False |
| 654 | 682059653698686977 | https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg | 2 | jigsaw_puzzle | 0.995873 | False | Siamese_cat | 7.808850e-04 | False | pizza | 4.324800e-04 | False |
| 655 | 682242692827447297 | https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg | 1 | snorkel | 0.504983 | False | loggerhead | 3.452980e-01 | False | scuba_diver | 7.475390e-02 | False |
| 656 | 682259524040966145 | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | Siberian_husky | 0.439670 | True | Eskimo_dog | 3.404740e-01 | True | malamute | 1.012530e-01 | True |
| 657 | 682303737705140231 | https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg | 1 | seat_belt | 0.997659 | False | Lakeland_terrier | 1.730920e-03 | True | Airedale | 2.036100e-04 | True |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | curly-coated_retriever | 0.482288 | True | flat-coated_retriever | 3.152860e-01 | True | Great_Dane | 6.217890e-02 | True |
| 659 | 682393905736888321 | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | vizsla | 0.657275 | True | paddle | 9.028640e-02 | False | Rhodesian_ridgeback | 4.822830e-02 | True |
| 660 | 682406705142087680 | https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg | 1 | wombat | 0.709344 | False | koala | 1.697580e-01 | False | beaver | 7.943340e-02 | False |
| 661 | 682429480204398592 | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | whippet | 0.594701 | True | Italian_greyhound | 3.140910e-01 | True | Mexican_hairless | 3.777330e-02 | True |
| 662 | 682638830361513985 | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | English_springer | 0.440781 | True | Cardigan | 4.111820e-01 | True | Border_collie | 2.241220e-02 | True |
| 663 | 682662431982772225 | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | beagle | 0.413824 | True | Cardigan | 2.635530e-01 | True | basset | 1.676180e-01 | True |
| 664 | 682697186228989953 | https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg | 1 | bald_eagle | 0.097232 | False | torch | 9.662150e-02 | False | cliff | 9.038550e-02 | False |
| 665 | 682750546109968385 | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | English_setter | 0.947198 | True | English_springer | 3.112770e-02 | True | Brittany_spaniel | 5.512470e-03 | True |
| 666 | 682788441537560576 | https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg | 1 | toyshop | 0.375610 | False | orange | 9.453760e-02 | False | teddy | 3.980820e-02 | False |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | dingo | 0.278600 | False | Chihuahua | 1.552070e-01 | True | loupe | 1.535980e-01 | False |
| 668 | 683030066213818368 | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | boxer | 0.722218 | True | bull_mastiff | 1.938040e-01 | True | French_bulldog | 5.519370e-02 | True |
| 669 | 683078886620553216 | https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg | 1 | koala | 0.141432 | False | Eskimo_dog | 9.404420e-02 | True | wallaby | 8.523650e-02 | False |
| 670 | 683098815881154561 | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | golden_retriever | 0.889848 | True | kuvasz | 5.300820e-02 | True | Labrador_retriever | 3.788120e-02 | True |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | cocker_spaniel | 0.901392 | True | soft-coated_wheaten_terrier | 2.860480e-02 | True | miniature_schnauzer | 1.780540e-02 | True |
| 672 | 683142553609318400 | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | Leonberg | 0.605851 | True | chow | 1.834700e-01 | True | German_shepherd | 7.966190e-02 | True |
| 673 | 683357973142474752 | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | Pembroke | 0.406509 | True | Cardigan | 1.548540e-01 | True | Siberian_husky | 1.363660e-01 | True |
| 674 | 683391852557561860 | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | French_bulldog | 0.992833 | True | Boston_bull | 4.748630e-03 | True | pug | 1.391690e-03 | True |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | Lakeland_terrier | 0.303512 | True | soft-coated_wheaten_terrier | 2.114240e-01 | True | golden_retriever | 1.707250e-01 | True |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | Italian_greyhound | 0.399560 | True | whippet | 2.671530e-01 | True | German_short-haired_pointer | 8.131910e-02 | True |
| 677 | 683481228088049664 | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | keeshond | 0.508951 | True | chow | 4.420160e-01 | True | German_shepherd | 1.320600e-02 | True |
| 678 | 683498322573824003 | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | Airedale | 0.945362 | True | Irish_terrier | 2.685000e-02 | True | Lakeland_terrier | 1.682640e-02 | True |
| 679 | 683742671509258241 | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | Pembroke | 0.895279 | True | Cardigan | 2.238500e-02 | True | cocker_spaniel | 1.704520e-02 | True |
| 680 | 683773439333797890 | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | miniature_pinscher | 0.072885 | True | Labrador_retriever | 5.786580e-02 | True | schipperke | 5.325660e-02 | True |
| 681 | 683828599284170753 | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | malamute | 0.577376 | True | Siberian_husky | 2.871310e-01 | True | Eskimo_dog | 1.175630e-01 | True |
| 682 | 683834909291606017 | https://pbs.twimg.com/ext_tw_video_thumb/68383... | 1 | Maltese_dog | 0.738449 | True | toy_poodle | 1.029920e-01 | True | Samoyed | 2.324720e-02 | True |
| 683 | 683849932751646720 | https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg | 1 | hog | 0.458855 | False | Mexican_hairless | 1.649060e-01 | True | wild_boar | 1.117000e-01 | False |
| 684 | 683852578183077888 | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | toy_poodle | 0.551352 | True | teddy | 1.806780e-01 | False | miniature_poodle | 1.640950e-01 | True |
| 685 | 683857920510050305 | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | bluetick | 0.174738 | True | Shetland_sheepdog | 1.261010e-01 | True | beagle | 1.228870e-01 | True |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | Labrador_retriever | 0.627856 | True | German_short-haired_pointer | 1.736750e-01 | True | Chesapeake_Bay_retriever | 4.134170e-02 | True |
| 687 | 684122891630342144 | https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg | 1 | cheetah | 0.822193 | False | Arabian_camel | 4.697610e-02 | False | jaguar | 2.578480e-02 | False |
| 688 | 684177701129875456 | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | chow | 0.334783 | True | German_shepherd | 1.626470e-01 | True | golden_retriever | 1.386120e-01 | True |
| 689 | 684188786104872960 | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | kelpie | 0.537782 | True | American_Staffordshire_terrier | 8.295320e-02 | True | Staffordshire_bullterrier | 6.975990e-02 | True |
| 690 | 684195085588783105 | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | Chihuahua | 0.379365 | True | toy_terrier | 1.218090e-01 | True | Boston_bull | 9.598090e-02 | True |
| 691 | 684200372118904832 | https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg | 1 | llama | 0.681347 | False | ram | 1.201420e-01 | False | hog | 4.368580e-02 | False |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | soft-coated_wheaten_terrier | 0.791182 | True | cocker_spaniel | 7.244410e-02 | True | teddy | 7.148650e-02 | False |
| 693 | 684225744407494656 | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | golden_retriever | 0.203249 | True | Samoyed | 6.795810e-02 | True | Great_Pyrenees | 6.532750e-02 | True |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | Pembroke | 0.508498 | True | black-footed_ferret | 1.155320e-01 | False | weasel | 5.128010e-02 | False |
| 695 | 684460069371654144 | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | Labrador_retriever | 0.673691 | True | Chesapeake_Bay_retriever | 1.948970e-01 | True | American_Staffordshire_terrier | 5.947130e-02 | True |
| 696 | 684481074559381504 | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | Chihuahua | 0.937810 | True | Pomeranian | 2.030670e-02 | True | polecat | 1.735700e-02 | False |
| 697 | 684538444857667585 | https://pbs.twimg.com/ext_tw_video_thumb/68453... | 1 | Chihuahua | 0.702583 | True | Siamese_cat | 6.821810e-02 | False | macaque | 4.332460e-02 | False |
| 698 | 684567543613382656 | https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg | 1 | minibus | 0.401942 | False | llama | 2.291450e-01 | False | seat_belt | 2.093930e-01 | False |
| 699 | 684594889858887680 | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | Weimaraner | 0.948688 | True | English_setter | 3.535240e-02 | True | Brittany_spaniel | 3.878780e-03 | True |
| 700 | 684800227459624960 | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | miniature_schnauzer | 0.294457 | True | Norfolk_terrier | 1.618850e-01 | True | West_Highland_white_terrier | 1.209920e-01 | True |
| 701 | 684880619965411328 | https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg | 1 | clog | 0.081101 | False | spindle | 6.695660e-02 | False | agama | 6.088370e-02 | False |
| 702 | 684902183876321280 | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | Pembroke | 0.708034 | True | Cardigan | 2.914470e-01 | True | dingo | 1.845610e-04 | False |
| 703 | 684914660081053696 | https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg | 1 | shopping_cart | 0.460950 | False | chow | 2.612880e-01 | True | Labrador_retriever | 7.419380e-02 | True |
| 704 | 684926975086034944 | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | Labrador_retriever | 0.769412 | True | golden_retriever | 1.448930e-01 | True | lion | 2.143980e-02 | False |
| 705 | 684940049151070208 | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | Border_collie | 0.665578 | True | collie | 1.768460e-01 | True | Old_English_sheepdog | 6.517470e-02 | True |
| 706 | 684959798585110529 | https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg | 1 | llama | 0.379624 | False | triceratops | 1.627610e-01 | False | hog | 8.425150e-02 | False |
| 707 | 685169283572338688 | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | Bernese_mountain_dog | 0.975096 | True | Appenzeller | 1.457810e-02 | True | EntleBucher | 5.943480e-03 | True |
| 708 | 685198997565345792 | https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg | 1 | dishwasher | 0.888829 | False | stove | 1.341150e-02 | False | Old_English_sheepdog | 9.671380e-03 | True |
| 709 | 685268753634967552 | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | pug | 0.999044 | True | Norwegian_elkhound | 5.465860e-04 | True | bull_mastiff | 2.351950e-04 | True |
| 710 | 685307451701334016 | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | Pomeranian | 0.963176 | True | Shetland_sheepdog | 1.946830e-02 | True | keeshond | 8.604930e-03 | True |
| 711 | 685315239903100929 | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | chow | 0.470162 | True | Pomeranian | 1.596770e-01 | True | Eskimo_dog | 1.050740e-01 | True |
| 712 | 685321586178670592 | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | Boston_bull | 0.972483 | True | French_bulldog | 2.546930e-02 | True | boxer | 4.575440e-04 | True |
| 713 | 685325112850124800 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 714 | 685532292383666176 | https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg | 1 | white_wolf | 0.318524 | False | dingo | 2.154360e-01 | False | collie | 9.580520e-02 | True |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 9.712370e-03 | False | hand-held_computer | 8.768570e-03 | False |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | Lakeland_terrier | 0.253839 | True | Airedale | 2.133490e-01 | True | three-toed_sloth | 8.383410e-02 | False |
| 717 | 685663452032069632 | https://pbs.twimg.com/ext_tw_video_thumb/68566... | 1 | Chesapeake_Bay_retriever | 0.171174 | True | tennis_ball | 9.064400e-02 | False | racket | 4.850770e-02 | False |
| 718 | 685667379192414208 | https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg | 1 | sliding_door | 0.344526 | False | doormat | 1.900270e-01 | False | washbasin | 4.632640e-02 | False |
| 719 | 685906723014619143 | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | Yorkshire_terrier | 0.414963 | True | briard | 6.350520e-02 | True | Pekinese | 5.368220e-02 | True |
| 720 | 685943807276412928 | https://pbs.twimg.com/ext_tw_video_thumb/68594... | 1 | papillon | 0.200812 | True | toy_terrier | 1.145120e-01 | True | Cardigan | 9.451960e-02 | True |
| 721 | 685973236358713344 | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | Siberian_husky | 0.450678 | True | Eskimo_dog | 4.302750e-01 | True | malamute | 1.185900e-01 | True |
| 722 | 686003207160610816 | https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg | 1 | damselfly | 0.190786 | False | common_newt | 9.813140e-02 | False | whiptail | 8.895820e-02 | False |
| 723 | 686007916130873345 | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | Rhodesian_ridgeback | 0.885301 | True | redbone | 4.233540e-02 | True | seat_belt | 1.049300e-02 | False |
| 724 | 686034024800862208 | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | Great_Dane | 0.236920 | True | Irish_wolfhound | 1.176080e-01 | True | Greater_Swiss_Mountain_dog | 1.039000e-01 | True |
| 725 | 686050296934563840 | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | Pomeranian | 0.985789 | True | keeshond | 4.082910e-03 | True | Pekinese | 3.333660e-03 | True |
| 726 | 686358356425093120 | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | pug | 0.985237 | True | bull_mastiff | 8.840620e-03 | True | boxer | 2.321430e-03 | True |
| 727 | 686377065986265092 | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | German_shepherd | 0.830816 | True | Leonberg | 7.632520e-02 | True | bloodhound | 3.744860e-02 | True |
| 728 | 686386521809772549 | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | Yorkshire_terrier | 0.477704 | True | silky_terrier | 1.716730e-01 | True | Australian_terrier | 8.833400e-02 | True |
| 729 | 686606069955735556 | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | Labrador_retriever | 0.320012 | True | Ibizan_hound | 2.081720e-01 | True | Saluki | 7.897470e-02 | True |
| 730 | 686618349602762752 | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | Rottweiler | 0.441331 | True | miniature_pinscher | 2.331800e-01 | True | Gordon_setter | 9.358200e-02 | True |
| 731 | 686683045143953408 | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | Norwich_terrier | 0.100499 | True | cocker_spaniel | 8.067110e-02 | True | golden_retriever | 7.940620e-02 | True |
| 732 | 686730991906516992 | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | Tibetan_mastiff | 0.338812 | True | Newfoundland | 1.809250e-01 | True | golden_retriever | 1.800230e-01 | True |
| 733 | 686749460672679938 | https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg | 1 | cheeseburger | 0.643808 | False | hotdog | 2.013780e-01 | False | bagel | 6.387970e-02 | False |
| 734 | 686947101016735744 | https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg | 1 | refrigerator | 0.799795 | False | medicine_chest | 1.825380e-01 | False | ice_bear | 1.430580e-03 | False |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | Labrador_retriever | 0.417107 | True | Chesapeake_Bay_retriever | 3.417300e-01 | True | German_short-haired_pointer | 1.777020e-01 | True |
| 736 | 687102708889812993 | https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg | 1 | fiddler_crab | 0.992069 | False | quail | 2.490600e-03 | False | rock_crab | 1.512570e-03 | False |
| 737 | 687109925361856513 | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | borzoi | 0.883086 | True | whippet | 2.293360e-02 | True | Saluki | 2.160560e-02 | True |
| 738 | 687124485711986689 | https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg | 1 | car_mirror | 0.997121 | False | seat_belt | 3.750870e-04 | False | beagle | 2.162060e-04 | True |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | pug | 0.178205 | True | Chihuahua | 1.491640e-01 | True | Shih-Tzu | 1.205050e-01 | True |
| 740 | 687312378585812992 | https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg | 1 | seat_belt | 0.703561 | False | Great_Dane | 1.399090e-01 | True | Weimaraner | 2.111250e-02 | True |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | Shih-Tzu | 0.747208 | True | Maltese_dog | 9.102540e-02 | True | Lhasa | 3.578780e-02 | True |
| 742 | 687460506001633280 | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | Boston_bull | 0.223366 | True | boxer | 1.835960e-01 | True | French_bulldog | 1.769160e-01 | True |
| 743 | 687476254459715584 | https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg | 1 | wood_rabbit | 0.702725 | False | Angora | 1.906590e-01 | False | hare | 1.050720e-01 | False |
| 744 | 687480748861947905 | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | English_springer | 0.472273 | True | English_setter | 1.668620e-01 | True | Brittany_spaniel | 1.634110e-01 | True |
| 745 | 687494652870668288 | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | Rottweiler | 0.391471 | True | miniature_pinscher | 2.735950e-01 | True | Tibetan_mastiff | 4.169190e-02 | True |
| 746 | 687664829264453632 | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | pug | 0.957365 | True | French_bulldog | 3.855870e-02 | True | toy_poodle | 6.673610e-04 | True |
| 747 | 687704180304273409 | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | miniature_pinscher | 0.956063 | True | toy_terrier | 1.223060e-02 | True | Chihuahua | 5.397480e-03 | True |
| 748 | 687807801670897665 | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | Staffordshire_bullterrier | 0.151113 | True | boxer | 1.356970e-01 | True | American_Staffordshire_terrier | 8.659120e-02 | True |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | Lakeland_terrier | 0.873029 | True | soft-coated_wheaten_terrier | 6.092420e-02 | True | toy_poodle | 1.703090e-02 | True |
| 750 | 687826841265172480 | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | Pomeranian | 0.997210 | True | Pekinese | 8.032410e-04 | True | keeshond | 3.725150e-04 | True |
| 751 | 688064179421470721 | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | Eskimo_dog | 0.240602 | True | Norwegian_elkhound | 1.803690e-01 | True | Siberian_husky | 9.073880e-02 | True |
| 752 | 688116655151435777 | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | pug | 0.973819 | True | Chihuahua | 1.089100e-02 | True | Staffordshire_bullterrier | 6.863890e-03 | True |
| 753 | 688179443353796608 | https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg | 1 | sorrel | 0.811520 | False | horse_cart | 2.482010e-02 | False | Arabian_camel | 1.515530e-02 | False |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/68821... | 1 | bannister | 0.369449 | False | four-poster | 1.053070e-01 | False | shoji | 9.876690e-02 | False |
| 755 | 688385280030670848 | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | golden_retriever | 0.900437 | True | cocker_spaniel | 2.229250e-02 | True | sombrero | 1.499680e-02 | False |
| 756 | 688519176466644993 | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | Pembroke | 0.696372 | True | Cardigan | 1.210520e-01 | True | Shetland_sheepdog | 5.059200e-02 | True |
| 757 | 688547210804498433 | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | papillon | 0.531279 | True | Blenheim_spaniel | 2.141970e-01 | True | Border_collie | 5.383990e-02 | True |
| 758 | 688789766343622656 | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | American_Staffordshire_terrier | 0.599660 | True | Staffordshire_bullterrier | 3.809760e-01 | True | bull_mastiff | 3.889020e-03 | True |
| 759 | 688804835492233216 | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | malinois | 0.199512 | True | German_shepherd | 9.679730e-02 | True | Saluki | 8.284820e-02 | True |
| 760 | 688828561667567616 | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | Cardigan | 0.614231 | True | skunk | 1.393920e-01 | False | toilet_tissue | 3.115820e-02 | False |
| 761 | 688894073864884227 | https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg | 1 | hog | 0.669996 | False | guinea_pig | 7.734700e-02 | False | hamster | 6.239820e-02 | False |
| 762 | 688898160958271489 | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | Ibizan_hound | 0.853170 | True | Chihuahua | 3.989730e-02 | True | Italian_greyhound | 3.521960e-02 | True |
| 763 | 688908934925697024 | https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg | 1 | crane | 0.158859 | False | pier | 1.300160e-01 | False | bell_cote | 8.774140e-02 | False |
| 764 | 688916208532455424 | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | Pembroke | 0.430544 | True | red_fox | 2.065760e-01 | False | Pomeranian | 1.543520e-01 | True |
| 765 | 689143371370250240 | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | English_springer | 0.303781 | True | papillon | 1.651320e-01 | True | Welsh_springer_spaniel | 1.490510e-01 | True |
| 766 | 689154315265683456 | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | cocker_spaniel | 0.816044 | True | golden_retriever | 5.413540e-02 | True | Airedale | 3.064810e-02 | True |
| 767 | 689275259254616065 | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | American_Staffordshire_terrier | 0.215161 | True | Chesapeake_Bay_retriever | 7.905090e-02 | True | Doberman | 7.022590e-02 | True |
| 768 | 689280876073582592 | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | Chihuahua | 0.637546 | True | American_Staffordshire_terrier | 1.506940e-01 | True | Staffordshire_bullterrier | 1.039530e-01 | True |
| 769 | 689283819090870273 | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | Scotch_terrier | 0.267979 | True | affenpinscher | 1.996190e-01 | True | cairn | 1.274690e-01 | True |
| 770 | 689289219123089408 | https://pbs.twimg.com/ext_tw_video_thumb/68928... | 1 | snowmobile | 0.254642 | False | assault_rifle | 1.295580e-01 | False | rifle | 1.108750e-01 | False |
| 771 | 689517482558820352 | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | Pembroke | 0.799319 | True | Cardigan | 1.895370e-01 | True | papillon | 3.386190e-03 | True |
| 772 | 689557536375177216 | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | Eskimo_dog | 0.169482 | True | Siberian_husky | 1.616550e-01 | True | dingo | 1.544140e-01 | False |
| 773 | 689599056876867584 | https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg | 1 | dogsled | 0.426494 | False | cocker_spaniel | 7.310140e-02 | True | Chihuahua | 7.032290e-02 | True |
| 774 | 689623661272240129 | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | toy_poodle | 0.279604 | True | mashed_potato | 2.085640e-01 | False | Labrador_retriever | 7.748090e-02 | True |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | bustard | 0.225221 | False | koala | 5.762530e-02 | False | goose | 5.356890e-02 | False |
| 776 | 689661964914655233 | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | Italian_greyhound | 0.322818 | True | whippet | 2.469660e-01 | True | Chihuahua | 1.225410e-01 | True |
| 777 | 689835978131935233 | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | collie | 0.600186 | True | Shetland_sheepdog | 2.989390e-01 | True | borzoi | 2.261560e-02 | True |
| 778 | 689877686181715968 | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | Old_English_sheepdog | 0.269155 | True | Tibetan_terrier | 1.114960e-01 | True | Lakeland_terrier | 1.049390e-01 | True |
| 779 | 689905486972461056 | https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg | 4 | Pomeranian | 0.943331 | True | Shetland_sheepdog | 2.367510e-02 | True | chow | 7.164950e-03 | True |
| 780 | 689977555533848577 | https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg | 1 | cowboy_hat | 0.291081 | False | Labrador_retriever | 1.796250e-01 | True | sombrero | 1.214930e-01 | False |
| 781 | 689999384604450816 | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | standard_poodle | 0.444499 | True | English_springer | 1.298300e-01 | True | pug | 7.380570e-02 | True |
| 782 | 690005060500217858 | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | Samoyed | 0.270287 | True | Great_Pyrenees | 1.140270e-01 | True | teddy | 7.247480e-02 | False |
| 783 | 690015576308211712 | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | malamute | 0.949609 | True | Siberian_husky | 3.308370e-02 | True | Eskimo_dog | 1.666270e-02 | True |
| 784 | 690021994562220032 | https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg | 1 | badger | 0.289550 | False | weasel | 9.914020e-02 | False | malamute | 4.069580e-02 | True |
| 785 | 690248561355657216 | https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg | 1 | motor_scooter | 0.382690 | False | moped | 3.180170e-01 | False | pickup | 4.062540e-02 | False |
| 786 | 690360449368465409 | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | pug | 0.686933 | True | French_bulldog | 7.635870e-02 | True | Brabancon_griffon | 3.500700e-02 | True |
| 787 | 690374419777196032 | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | kuvasz | 0.286345 | True | Labrador_retriever | 1.071440e-01 | True | ice_bear | 8.508580e-02 | False |
| 788 | 690400367696297985 | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | Pembroke | 0.426459 | True | papillon | 3.173680e-01 | True | Shetland_sheepdog | 7.761600e-02 | True |
| 789 | 690597161306841088 | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | Lhasa | 0.097500 | True | koala | 9.193390e-02 | False | sunglasses | 9.150480e-02 | False |
| 790 | 690649993829576704 | https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg | 1 | bighorn | 0.215438 | False | hyena | 1.379280e-01 | False | Mexican_hairless | 9.817080e-02 | True |
| 791 | 690690673629138944 | https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg | 1 | bath_towel | 0.194532 | False | radiator | 1.277760e-01 | False | Maltese_dog | 8.962460e-02 | True |
| 792 | 690728923253055490 | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | kuvasz | 0.422806 | True | golden_retriever | 2.915860e-01 | True | Great_Pyrenees | 7.618920e-02 | True |
| 793 | 690735892932222976 | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | golden_retriever | 0.883229 | True | Labrador_retriever | 1.096350e-01 | True | kuvasz | 2.795070e-03 | True |
| 794 | 690932576555528194 | https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg | 1 | snorkel | 0.526536 | False | muzzle | 4.808880e-02 | False | scuba_diver | 3.422620e-02 | False |
| 795 | 690938899477221376 | https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg | 1 | geyser | 0.370318 | False | seashore | 2.748880e-01 | False | beacon | 4.639700e-02 | False |
| 796 | 690959652130045952 | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | golden_retriever | 0.862964 | True | Labrador_retriever | 4.486530e-02 | True | Saluki | 1.246780e-02 | True |
| 797 | 691090071332753408 | https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg | 1 | barrow | 0.241637 | False | tub | 2.384500e-01 | False | bathtub | 1.672850e-01 | False |
| 798 | 691096613310316544 | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | borzoi | 0.441269 | True | llama | 2.782700e-01 | False | Arabian_camel | 6.350350e-02 | False |
| 799 | 691321916024623104 | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | Rottweiler | 0.508981 | True | German_shepherd | 2.078970e-01 | True | kelpie | 9.435330e-02 | True |
| 800 | 691416866452082688 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 801 | 691444869282295808 | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | Bernese_mountain_dog | 0.767563 | True | Border_collie | 8.580460e-02 | True | EntleBucher | 4.376930e-02 | True |
| 802 | 691459709405118465 | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | Shetland_sheepdog | 0.551206 | True | collie | 2.325440e-01 | True | Border_collie | 9.521820e-02 | True |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | bloodhound | 0.886232 | True | black-and-tan_coonhound | 7.741960e-02 | True | Gordon_setter | 9.826430e-03 | True |
| 804 | 691675652215414786 | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | Chihuahua | 0.182898 | True | teddy | 1.280770e-01 | False | West_Highland_white_terrier | 9.787480e-02 | True |
| 805 | 691756958957883396 | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | Saint_Bernard | 0.342571 | True | boxer | 2.890960e-01 | True | Pembroke | 7.646340e-02 | True |
| 806 | 691820333922455552 | https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg | 1 | minivan | 0.332756 | False | sports_car | 1.294520e-01 | False | limousine | 7.393590e-02 | False |
| 807 | 692017291282812928 | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | Tibetan_terrier | 0.247565 | True | cocker_spaniel | 1.213770e-01 | True | bow_tie | 9.936250e-02 | False |
| 808 | 692142790915014657 | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | toy_poodle | 0.670068 | True | teddy | 1.908980e-01 | False | miniature_poodle | 3.217790e-02 | True |
| 809 | 692158366030913536 | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | pug | 0.956565 | True | swing | 1.890670e-02 | False | toy_poodle | 1.354440e-02 | True |
| 810 | 692187005137076224 | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | Siberian_husky | 0.810592 | True | malamute | 1.197450e-01 | True | Eskimo_dog | 2.926480e-02 | True |
| 811 | 692417313023332352 | https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg | 1 | bison | 0.208922 | False | mink | 1.699450e-01 | False | polecat | 1.444940e-01 | False |
| 812 | 692530551048294401 | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | Siberian_husky | 0.486428 | True | Eskimo_dog | 4.485180e-01 | True | white_wolf | 4.150610e-02 | False |
| 813 | 692535307825213440 | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | pug | 0.413090 | True | French_bulldog | 1.998650e-01 | True | Chihuahua | 8.199060e-02 | True |
| 814 | 692568918515392513 | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | golden_retriever | 0.636845 | True | Labrador_retriever | 1.633620e-01 | True | Pekinese | 4.555400e-02 | True |
| 815 | 692752401762250755 | https://pbs.twimg.com/tweet_video_thumb/CZ0mhd... | 1 | Samoyed | 0.471276 | True | Siberian_husky | 1.588500e-01 | True | Eskimo_dog | 1.386720e-01 | True |
| 816 | 692828166163931137 | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | Samoyed | 0.985857 | True | Arctic_fox | 7.851640e-03 | False | white_wolf | 3.277700e-03 | False |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | German_short-haired_pointer | 0.876977 | True | bluetick | 3.661510e-02 | True | basset | 1.784770e-02 | True |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | soft-coated_wheaten_terrier | 0.403496 | True | cocker_spaniel | 1.351640e-01 | True | golden_retriever | 8.871870e-02 | True |
| 819 | 692905862751522816 | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | Mexican_hairless | 0.162638 | True | Doberman | 1.562870e-01 | True | Rhodesian_ridgeback | 8.147780e-02 | True |
| 820 | 692919143163629568 | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | Saint_Bernard | 0.612635 | True | English_springer | 2.697440e-01 | True | boxer | 4.866550e-02 | True |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | ice_lolly | 0.660099 | False | neck_brace | 3.956290e-02 | False | Yorkshire_terrier | 3.348780e-02 | True |
| 822 | 693109034023534592 | https://pbs.twimg.com/ext_tw_video_thumb/69310... | 1 | cocker_spaniel | 0.740013 | True | Welsh_springer_spaniel | 8.873900e-02 | True | golden_retriever | 4.746980e-02 | True |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | Shih-Tzu | 0.697480 | True | Lhasa | 2.001510e-01 | True | Tibetan_terrier | 9.097040e-02 | True |
| 824 | 693231807727280129 | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | vizsla | 0.876413 | True | Chesapeake_Bay_retriever | 7.839980e-02 | True | Rhodesian_ridgeback | 3.219410e-02 | True |
| 825 | 693262851218264065 | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | golden_retriever | 0.989333 | True | Labrador_retriever | 7.946440e-03 | True | kuvasz | 7.489320e-04 | True |
| 826 | 693280720173801472 | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | Labrador_retriever | 0.340008 | True | bull_mastiff | 1.753160e-01 | True | box_turtle | 1.643370e-01 | False |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/69348... | 1 | sea_lion | 0.519811 | False | Siamese_cat | 2.909710e-01 | False | black-footed_ferret | 3.996670e-02 | False |
| 828 | 693590843962331137 | https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg | 1 | dining_table | 0.383448 | False | grey_fox | 1.031910e-01 | False | Siamese_cat | 9.825580e-02 | False |
| 829 | 693622659251335168 | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | malamute | 0.449298 | True | Siberian_husky | 3.850750e-01 | True | Eskimo_dog | 1.634850e-01 | True |
| 830 | 693629975228977152 | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | pug | 0.841987 | True | French_bulldog | 6.979110e-02 | True | Boston_bull | 3.871990e-02 | True |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | Scottish_deerhound | 0.111893 | True | bluetick | 7.430180e-02 | True | German_short-haired_pointer | 6.700040e-02 | True |
| 832 | 693647888581312512 | https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg | 1 | washbasin | 0.272451 | False | doormat | 1.658710e-01 | False | bathtub | 6.636840e-02 | False |
| 833 | 693942351086120961 | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | groenendael | 0.550796 | True | Norwegian_elkhound | 1.547700e-01 | True | schipperke | 8.080190e-02 | True |
| 834 | 694001791655137281 | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | Pembroke | 0.769999 | True | Cardigan | 2.292280e-01 | True | Chihuahua | 2.468370e-04 | True |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | teddy | 0.441499 | False | Pekinese | 8.087000e-02 | True | Shih-Tzu | 7.209880e-02 | True |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | Shih-Tzu | 0.352547 | True | toy_poodle | 1.557200e-01 | True | Maltese_dog | 1.166570e-01 | True |
| 837 | 694329668942569472 | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | boxer | 0.990060 | True | bull_mastiff | 7.436270e-03 | True | Saint_Bernard | 1.617290e-03 | True |
| 838 | 694352839993344000 | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | Australian_terrier | 0.407886 | True | Yorkshire_terrier | 3.281730e-01 | True | silky_terrier | 1.084040e-01 | True |
| 839 | 694356675654983680 | https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg | 1 | hamster | 0.429871 | False | Pomeranian | 1.442720e-01 | True | pretzel | 1.272200e-01 | False |
| 840 | 694669722378485760 | https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg | 2 | beaver | 0.457094 | False | mongoose | 2.282980e-01 | False | marmot | 1.483090e-01 | False |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 1.390990e-01 | False | black-footed_ferret | 8.223200e-02 | False |
| 842 | 695051054296211456 | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | Boston_bull | 0.761454 | True | pug | 7.539490e-02 | True | Chihuahua | 4.159780e-02 | True |
| 843 | 695064344191721472 | https://pbs.twimg.com/ext_tw_video_thumb/69506... | 1 | seat_belt | 0.522211 | False | sunglasses | 7.755210e-02 | False | ice_lolly | 5.177400e-02 | False |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | Shih-Tzu | 0.510106 | True | Tibetan_terrier | 7.198090e-02 | True | Lhasa | 6.923100e-02 | True |
| 845 | 695095422348574720 | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | papillon | 0.227784 | True | Chihuahua | 2.181280e-01 | True | Border_collie | 9.345740e-02 | True |
| 846 | 695314793360662529 | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | Maltese_dog | 0.678547 | True | Lhasa | 1.250460e-01 | True | Pekinese | 4.899880e-02 | True |
| 847 | 695409464418041856 | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | pug | 0.997445 | True | bull_mastiff | 1.748550e-03 | True | Pekinese | 3.044040e-04 | True |
| 848 | 695446424020918272 | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | basenji | 0.748904 | True | Cardigan | 1.211020e-01 | True | Pembroke | 1.117670e-01 | True |
| 849 | 695629776980148225 | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | Old_English_sheepdog | 0.693857 | True | otterhound | 2.321170e-01 | True | West_Highland_white_terrier | 1.286670e-02 | True |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | soft-coated_wheaten_terrier | 0.805139 | True | Lakeland_terrier | 1.216620e-01 | True | Afghan_hound | 2.330250e-02 | True |
| 851 | 695794761660297217 | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | Samoyed | 0.962139 | True | Arctic_fox | 3.055280e-02 | False | white_wolf | 1.482340e-03 | False |
| 852 | 695816827381944320 | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | Pomeranian | 0.382234 | True | chow | 2.083020e-01 | True | sunglasses | 1.313280e-01 | False |
| 853 | 696405997980676096 | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | borzoi | 0.132845 | True | Walker_hound | 8.600480e-02 | True | Great_Pyrenees | 6.558230e-02 | True |
| 854 | 696488710901260288 | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | briard | 0.369063 | True | Scotch_terrier | 1.682040e-01 | True | giant_schnauzer | 1.205530e-01 | True |
| 855 | 696713835009417216 | https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg | 1 | car_mirror | 0.379797 | False | Chesapeake_Bay_retriever | 3.215890e-01 | True | vizsla | 1.169310e-01 | True |
| 856 | 696754882863349760 | https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg | 1 | weasel | 0.137832 | False | toy_poodle | 9.837810e-02 | True | Scottish_deerhound | 9.739670e-02 | True |
| 857 | 696877980375769088 | https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg | 1 | space_heater | 0.206876 | False | spatula | 1.234500e-01 | False | vacuum | 1.192180e-01 | False |
| 858 | 696886256886657024 | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | kuvasz | 0.383941 | True | golden_retriever | 2.890850e-01 | True | dingo | 5.654810e-02 | False |
| 859 | 696894894812565505 | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | Appenzeller | 0.665628 | True | beagle | 1.047950e-01 | True | Greater_Swiss_Mountain_dog | 6.786800e-02 | True |
| 860 | 696900204696625153 | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | Chihuahua | 0.297735 | True | Pembroke | 2.669530e-01 | True | basenji | 1.368140e-01 | True |
| 861 | 697242256848379904 | https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg | 1 | grey_fox | 0.236031 | False | Siamese_cat | 1.657910e-01 | False | Eskimo_dog | 6.353280e-02 | True |
| 862 | 697255105972801536 | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | Great_Dane | 0.173989 | True | malinois | 1.658880e-01 | True | Doberman | 1.198900e-01 | True |
| 863 | 697259378236399616 | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | Great_Dane | 0.999223 | True | boxer | 1.865250e-04 | True | whippet | 1.510710e-04 | True |
| 864 | 697270446429966336 | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | toy_poodle | 0.880014 | True | miniature_poodle | 1.001360e-01 | True | Norfolk_terrier | 7.027060e-03 | True |
| 865 | 697463031882764288 | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | Labrador_retriever | 0.999885 | True | golden_retriever | 9.758170e-05 | True | pug | 8.267760e-06 | True |
| 866 | 697482927769255936 | https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg | 1 | bath_towel | 0.110587 | False | Christmas_stocking | 1.085730e-01 | False | weasel | 1.054420e-01 | False |
| 867 | 697575480820686848 | https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg | 1 | Siamese_cat | 0.256698 | False | whippet | 1.198050e-01 | True | bull_mastiff | 1.025950e-01 | True |
| 868 | 697596423848730625 | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | Shetland_sheepdog | 0.621668 | True | collie | 3.665780e-01 | True | Pembroke | 7.698190e-03 | True |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | Lhasa | 0.521931 | True | Shih-Tzu | 4.034510e-01 | True | Tibetan_terrier | 3.991220e-02 | True |
| 870 | 697881462549430272 | https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg | 1 | washbasin | 0.176423 | False | paper_towel | 1.674620e-01 | False | toilet_tissue | 9.802910e-02 | False |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | Great_Dane | 0.126924 | True | Greater_Swiss_Mountain_dog | 1.100370e-01 | True | German_short-haired_pointer | 9.081600e-02 | True |
| 872 | 697990423684476929 | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | Pembroke | 0.984783 | True | Cardigan | 1.501800e-02 | True | Shetland_sheepdog | 7.358600e-05 | True |
| 873 | 697995514407682048 | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | Staffordshire_bullterrier | 0.280222 | True | Boston_bull | 1.614780e-01 | True | American_Staffordshire_terrier | 1.268840e-01 | True |
| 874 | 698178924120031232 | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | Chesapeake_Bay_retriever | 0.351868 | True | malinois | 2.077530e-01 | True | Labrador_retriever | 1.546060e-01 | True |
| 875 | 698195409219559425 | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | Labrador_retriever | 0.643690 | True | American_Staffordshire_terrier | 1.026840e-01 | True | dalmatian | 5.000780e-02 | True |
| 876 | 698262614669991936 | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | Italian_greyhound | 0.107948 | True | basset | 7.523000e-02 | True | Staffordshire_bullterrier | 6.943610e-02 | True |
| 877 | 698342080612007937 | https://pbs.twimg.com/ext_tw_video_thumb/69834... | 1 | boxer | 0.883048 | True | Saint_Bernard | 3.057940e-02 | True | Staffordshire_bullterrier | 1.299410e-02 | True |
| 878 | 698355670425473025 | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | pug | 0.990191 | True | Pekinese | 2.798540e-03 | True | sunglasses | 1.309520e-03 | False |
| 879 | 698549713696649216 | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | French_bulldog | 0.998544 | True | Boston_bull | 1.403940e-03 | True | boxer | 2.322000e-05 | True |
| 880 | 698635131305795584 | https://pbs.twimg.com/ext_tw_video_thumb/69863... | 1 | Samoyed | 0.158464 | True | kuvasz | 8.940250e-02 | True | West_Highland_white_terrier | 2.503730e-02 | True |
| 881 | 698703483621523456 | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | Brittany_spaniel | 0.931963 | True | Welsh_springer_spaniel | 3.069490e-02 | True | beagle | 1.289610e-02 | True |
| 882 | 698710712454139905 | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | Samoyed | 0.329895 | True | shoji | 1.657720e-01 | False | prison | 1.035960e-01 | False |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | German_short-haired_pointer | 0.983131 | True | bluetick | 5.557720e-03 | True | curly-coated_retriever | 3.322210e-03 | True |
| 884 | 698953797952008193 | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | Italian_greyhound | 0.382378 | True | redbone | 1.022550e-01 | True | shower_cap | 7.683370e-02 | False |
| 885 | 698989035503689728 | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | Norfolk_terrier | 0.246340 | True | Irish_terrier | 2.433490e-01 | True | golden_retriever | 8.587100e-02 | True |
| 886 | 699036661657767936 | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | Chihuahua | 0.222943 | True | toyshop | 1.799380e-01 | False | Weimaraner | 1.630330e-01 | True |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/69907... | 1 | Shih-Tzu | 0.599587 | True | Pekinese | 2.130690e-01 | True | Maltese_dog | 1.542930e-01 | True |
| 888 | 699079609774645248 | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | schipperke | 0.667324 | True | Chesapeake_Bay_retriever | 1.195500e-01 | True | kelpie | 9.759950e-02 | True |
| 889 | 699088579889332224 | https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg | 1 | mousetrap | 0.456186 | False | banded_gecko | 2.586770e-01 | False | common_iguana | 6.178260e-02 | False |
| 890 | 699323444782047232 | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | Labrador_retriever | 0.309696 | True | doormat | 3.037000e-01 | False | sliding_door | 7.726600e-02 | False |
| 891 | 699370870310113280 | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | cairn | 0.337557 | True | Chihuahua | 2.091300e-01 | True | Border_terrier | 1.369460e-01 | True |
| 892 | 699413908797464576 | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | Samoyed | 0.517479 | True | malamute | 1.559350e-01 | True | Eskimo_dog | 9.500090e-02 | True |
| 893 | 699423671849451520 | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | pug | 0.997860 | True | French_bulldog | 1.824860e-03 | True | bull_mastiff | 2.989400e-04 | True |
| 894 | 699434518667751424 | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | golden_retriever | 0.836572 | True | kuvasz | 1.059460e-01 | True | Labrador_retriever | 2.514390e-02 | True |
| 895 | 699446877801091073 | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | Pembroke | 0.969400 | True | Cardigan | 2.605880e-02 | True | Chihuahua | 3.505470e-03 | True |
| 896 | 699691744225525762 | https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg | 1 | hippopotamus | 0.982269 | False | sea_lion | 6.295150e-03 | False | dugong | 5.767950e-03 | False |
| 897 | 699775878809702401 | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | Dandie_Dinmont | 0.271683 | True | Old_English_sheepdog | 1.649310e-01 | True | otterhound | 1.059180e-01 | True |
| 898 | 699779630832685056 | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | malinois | 0.706038 | True | German_shepherd | 1.656550e-01 | True | Great_Dane | 5.904750e-02 | True |
| 899 | 699788877217865730 | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | Border_terrier | 0.355060 | True | toy_poodle | 1.697360e-01 | True | Norwegian_elkhound | 9.988370e-02 | True |
| 900 | 699801817392291840 | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | golden_retriever | 0.808978 | True | Irish_setter | 4.242810e-02 | True | Labrador_retriever | 2.353640e-02 | True |
| 901 | 700002074055016451 | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | Chihuahua | 0.369488 | True | schipperke | 2.433670e-01 | True | pug | 1.616140e-01 | True |
| 902 | 700029284593901568 | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | West_Highland_white_terrier | 0.726571 | True | Maltese_dog | 1.768280e-01 | True | Dandie_Dinmont | 7.013380e-02 | True |
| 903 | 700062718104104960 | https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg | 1 | hummingbird | 0.180998 | False | peacock | 1.351790e-01 | False | eel | 7.537100e-02 | False |
| 904 | 700143752053182464 | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | golden_retriever | 0.532460 | True | crossword_puzzle | 1.037960e-01 | False | binder | 1.003710e-01 | False |
| 905 | 700151421916807169 | https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg | 1 | tennis_ball | 0.328236 | False | Italian_greyhound | 1.768380e-01 | True | Staffordshire_bullterrier | 1.340800e-01 | True |
| 906 | 700167517596164096 | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | beagle | 0.162585 | True | Pembroke | 1.204810e-01 | True | Siberian_husky | 1.102840e-01 | True |
| 907 | 700462010979500032 | https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg | 1 | hamster | 0.678651 | False | Pomeranian | 1.102680e-01 | True | Angora | 1.041390e-01 | False |
| 908 | 700505138482569216 | https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg | 1 | bath_towel | 0.449684 | False | Norwegian_elkhound | 1.602050e-01 | True | Great_Dane | 4.866580e-02 | True |
| 909 | 700518061187723268 | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | American_Staffordshire_terrier | 0.569501 | True | Staffordshire_bullterrier | 2.113080e-01 | True | Chihuahua | 1.218390e-01 | True |
| 910 | 700747788515020802 | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | Great_Pyrenees | 0.481333 | True | Samoyed | 3.117690e-01 | True | Maltese_dog | 7.496210e-02 | True |
| 911 | 700796979434098688 | https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg | 1 | tailed_frog | 0.652712 | False | tree_frog | 2.802120e-01 | False | bullfrog | 4.017750e-02 | False |
| 912 | 700847567345688576 | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | Rhodesian_ridgeback | 0.252514 | True | redbone | 1.530050e-01 | True | whippet | 1.351990e-01 | True |
| 913 | 700864154249383937 | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | kuvasz | 0.805857 | True | Great_Pyrenees | 1.872720e-01 | True | Samoyed | 3.490900e-03 | True |
| 914 | 700890391244103680 | https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg | 1 | white_wolf | 0.166563 | False | schipperke | 1.223560e-01 | True | West_Highland_white_terrier | 1.192470e-01 | True |
| 915 | 701214700881756160 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 916 | 701545186879471618 | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | Border_collie | 0.280893 | True | Cardigan | 1.125500e-01 | True | toy_terrier | 5.331720e-02 | True |
| 917 | 701570477911896070 | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | Yorkshire_terrier | 0.907990 | True | silky_terrier | 7.688290e-02 | True | Australian_terrier | 8.472760e-03 | True |
| 918 | 701601587219795968 | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | Chihuahua | 0.993661 | True | Pembroke | 1.504870e-03 | True | toy_terrier | 8.666070e-04 | True |
| 919 | 701889187134500865 | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | French_bulldog | 0.902856 | True | Staffordshire_bullterrier | 2.263410e-02 | True | soap_dispenser | 1.197320e-02 | False |
| 920 | 701952816642965504 | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | toy_poodle | 0.331707 | True | miniature_poodle | 2.724850e-01 | True | standard_poodle | 1.694150e-01 | True |
| 921 | 701981390485725185 | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | Pomeranian | 0.491022 | True | weasel | 1.308790e-01 | False | Yorkshire_terrier | 9.924100e-02 | True |
| 922 | 702217446468493312 | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | golden_retriever | 0.242419 | True | chow | 2.268000e-01 | True | cocker_spaniel | 1.940860e-01 | True |
| 923 | 702276748847800320 | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | Boston_bull | 0.697303 | True | French_bulldog | 2.390150e-01 | True | American_Staffordshire_terrier | 1.983810e-02 | True |
| 924 | 702321140488925184 | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | West_Highland_white_terrier | 0.769159 | True | Scotch_terrier | 6.436880e-02 | True | Old_English_sheepdog | 4.376340e-02 | True |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | Pomeranian | 0.714367 | True | Shih-Tzu | 4.057410e-02 | True | silky_terrier | 3.251050e-02 | True |
| 926 | 702598099714314240 | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | kelpie | 0.219179 | True | badger | 1.335840e-01 | False | Siamese_cat | 7.444000e-02 | False |
| 927 | 702671118226825216 | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | bloodhound | 0.381227 | True | Sussex_spaniel | 2.120170e-01 | True | clumber | 1.286220e-01 | True |
| 928 | 702684942141153280 | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | golden_retriever | 0.514085 | True | Chesapeake_Bay_retriever | 1.732240e-01 | True | Brittany_spaniel | 1.183840e-01 | True |
| 929 | 702932127499816960 | https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg | 1 | wallaby | 0.410710 | False | wombat | 2.393320e-01 | False | beaver | 1.496050e-01 | False |
| 930 | 703041949650034688 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 931 | 703079050210877440 | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | Pembroke | 0.778503 | True | Shetland_sheepdog | 9.383390e-02 | True | Cardigan | 6.029640e-02 | True |
| 932 | 703268521220972544 | https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg | 1 | wool | 0.525434 | False | fur_coat | 2.363910e-01 | False | kuvasz | 3.824300e-02 | True |
| 933 | 703356393781329922 | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | Border_collie | 0.894842 | True | collie | 9.736370e-02 | True | English_springer | 3.036740e-03 | True |
| 934 | 703382836347330562 | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | golden_retriever | 0.945664 | True | standard_poodle | 1.439200e-02 | True | Tibetan_mastiff | 1.202170e-02 | True |
| 935 | 703407252292673536 | https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg | 1 | doormat | 0.201058 | False | turnstile | 8.858320e-02 | False | carton | 8.292380e-02 | False |
| 936 | 703425003149250560 | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | miniature_pinscher | 0.292866 | True | sleeping_bag | 1.421220e-01 | False | Italian_greyhound | 7.084900e-02 | True |
| 937 | 703611486317502464 | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | Pembroke | 0.756441 | True | basenji | 1.266210e-01 | True | Cardigan | 8.011670e-02 | True |
| 938 | 703631701117943808 | https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg | 2 | window_shade | 0.909533 | False | window_screen | 1.142660e-02 | False | brass | 8.882100e-03 | False |
| 939 | 703769065844768768 | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | boxer | 0.838994 | True | Greater_Swiss_Mountain_dog | 8.880030e-02 | True | bull_mastiff | 3.168390e-02 | True |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | Labrador_retriever | 0.990119 | True | Chesapeake_Bay_retriever | 8.025580e-03 | True | curly-coated_retriever | 1.242290e-03 | True |
| 941 | 704054845121142784 | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | Great_Pyrenees | 0.667939 | True | kuvasz | 2.287640e-01 | True | golden_retriever | 4.388540e-02 | True |
| 942 | 704113298707505153 | https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg | 2 | otter | 0.945537 | False | mink | 1.823110e-02 | False | sea_lion | 1.586080e-02 | False |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | teddy | 0.233378 | False | feather_boa | 8.847440e-02 | False | Brittany_spaniel | 8.291730e-02 | True |
| 944 | 704364645503647744 | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | Pembroke | 0.980695 | True | Cardigan | 1.850440e-02 | True | Chihuahua | 2.152930e-04 | True |
| 945 | 704480331685040129 | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | Samoyed | 0.979206 | True | Pomeranian | 7.185400e-03 | True | Arctic_fox | 6.438090e-03 | False |
| 946 | 704499785726889984 | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | Chihuahua | 0.376541 | True | Siamese_cat | 9.805710e-02 | False | Labrador_retriever | 8.521090e-02 | True |
| 947 | 704761120771465216 | https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg | 1 | Siamese_cat | 0.202294 | False | Chihuahua | 1.004180e-01 | True | basenji | 7.209650e-02 | True |
| 948 | 704819833553219584 | https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg | 1 | guinea_pig | 0.994776 | False | hamster | 4.068790e-03 | False | wood_rabbit | 2.058690e-04 | False |
| 949 | 704847917308362754 | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | golden_retriever | 0.857240 | True | Labrador_retriever | 1.354600e-01 | True | Tibetan_mastiff | 1.903320e-03 | True |
| 950 | 704859558691414016 | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | pug | 0.284428 | True | teddy | 1.563390e-01 | False | mitten | 1.389150e-01 | False |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | Norfolk_terrier | 0.689504 | True | soft-coated_wheaten_terrier | 1.014800e-01 | True | Norwich_terrier | 5.577850e-02 | True |
| 952 | 705066031337840642 | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | Airedale | 0.868658 | True | Irish_terrier | 2.758710e-02 | True | otterhound | 2.532360e-02 | True |
| 953 | 705102439679201280 | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | collie | 0.457672 | True | chow | 2.791010e-01 | True | Pomeranian | 7.692230e-02 | True |
| 954 | 705223444686888960 | https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg | 1 | Egyptian_cat | 0.090508 | False | Chesapeake_Bay_retriever | 7.737330e-02 | True | Mexican_hairless | 4.947150e-02 | True |
| 955 | 705239209544720384 | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | Chihuahua | 0.157950 | True | toy_terrier | 8.992030e-02 | True | Mexican_hairless | 6.322450e-02 | True |
| 956 | 705428427625635840 | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | Chihuahua | 0.774792 | True | quilt | 7.307940e-02 | False | Pembroke | 2.236510e-02 | True |
| 957 | 705442520700944385 | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | Great_Pyrenees | 0.309106 | True | kuvasz | 2.245560e-01 | True | seat_belt | 2.021000e-01 | False |
| 958 | 705475953783398401 | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | golden_retriever | 0.908784 | True | Labrador_retriever | 3.036120e-02 | True | tennis_ball | 4.995620e-03 | False |
| 959 | 705591895322394625 | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | basenji | 0.877207 | True | Italian_greyhound | 4.785420e-02 | True | miniature_pinscher | 3.563810e-02 | True |
| 960 | 705786532653883392 | https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg | 1 | web_site | 0.550294 | False | Labrador_retriever | 1.484960e-01 | True | golden_retriever | 1.484820e-01 | True |
| 961 | 705898680587526145 | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | collie | 0.808276 | True | Border_collie | 5.943700e-02 | True | groenendael | 2.672030e-02 | True |
| 962 | 705970349788291072 | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | golden_retriever | 0.776346 | True | Labrador_retriever | 1.124130e-01 | True | chow | 3.695290e-02 | True |
| 963 | 705975130514706432 | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | Staffordshire_bullterrier | 0.587764 | True | American_Staffordshire_terrier | 2.814290e-01 | True | bull_mastiff | 9.479810e-02 | True |
| 964 | 706166467411222528 | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | Samoyed | 0.430418 | True | kuvasz | 2.796000e-01 | True | Great_Pyrenees | 1.174800e-01 | True |
| 965 | 706265994973601792 | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | papillon | 0.743715 | True | Pekinese | 1.140420e-01 | True | Saint_Bernard | 4.771520e-02 | True |
| 966 | 706291001778950144 | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | Border_terrier | 0.587101 | True | bull_mastiff | 1.640870e-01 | True | Staffordshire_bullterrier | 1.050110e-01 | True |
| 967 | 706310011488698368 | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | Pembroke | 0.698165 | True | Chihuahua | 1.058340e-01 | True | bloodhound | 6.203040e-02 | True |
| 968 | 706346369204748288 | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | Tibetan_mastiff | 0.956462 | True | Rottweiler | 2.538090e-02 | True | Appenzeller | 8.679210e-03 | True |
| 969 | 706516534877929472 | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | golden_retriever | 0.772685 | True | Labrador_retriever | 7.166530e-02 | True | golfcart | 2.099310e-02 | False |
| 970 | 706538006853918722 | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | chow | 0.541794 | True | Pembroke | 9.491840e-02 | True | Pomeranian | 8.543940e-02 | True |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 1.893120e-01 | False | pillow | 2.940880e-02 | False |
| 972 | 706644897839910912 | https://pbs.twimg.com/ext_tw_video_thumb/70664... | 1 | space_heater | 0.137871 | False | Chihuahua | 1.329280e-01 | True | cougar | 1.138660e-01 | False |
| 973 | 706681918348251136 | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | toy_poodle | 0.717584 | True | miniature_poodle | 1.514330e-01 | True | Norwich_terrier | 4.708700e-02 | True |
| 974 | 706901761596989440 | https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg | 1 | wild_boar | 0.859499 | False | hog | 1.289810e-01 | False | warthog | 1.131780e-02 | False |
| 975 | 707014260413456384 | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | Chihuahua | 0.583780 | True | Italian_greyhound | 1.296830e-01 | True | toy_terrier | 8.915270e-02 | True |
| 976 | 707021089608753152 | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | cocker_spaniel | 0.559658 | True | golden_retriever | 3.146730e-01 | True | Pekinese | 6.667170e-02 | True |
| 977 | 707038192327901184 | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | pug | 0.642426 | True | llama | 5.730620e-02 | False | French_bulldog | 5.418650e-02 | True |
| 978 | 707059547140169728 | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | Samoyed | 0.897312 | True | Great_Pyrenees | 3.918020e-02 | True | kuvasz | 1.951600e-02 | True |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | Blenheim_spaniel | 0.370717 | True | Shih-Tzu | 2.015660e-01 | True | black-footed_ferret | 1.015590e-01 | False |
| 980 | 707315916783140866 | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | Bernese_mountain_dog | 0.979235 | True | Shetland_sheepdog | 1.103680e-02 | True | Appenzeller | 3.971110e-03 | True |
| 981 | 707377100785885184 | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | golden_retriever | 0.637225 | True | bloodhound | 9.454210e-02 | True | cocker_spaniel | 6.979710e-02 | True |
| 982 | 707387676719185920 | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | Chihuahua | 0.888468 | True | Italian_greyhound | 8.863460e-02 | True | toy_terrier | 1.593830e-02 | True |
| 983 | 707411934438625280 | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | Lakeland_terrier | 0.738277 | True | Airedale | 2.851490e-02 | True | giant_schnauzer | 2.487630e-02 | True |
| 984 | 707420581654872064 | https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg | 1 | ram | 0.518215 | False | kuvasz | 1.493910e-01 | True | Great_Pyrenees | 1.060030e-01 | True |
| 985 | 707610948723478529 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 986 | 707693576495472641 | https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg | 1 | bathtub | 0.499525 | False | tub | 4.880140e-01 | False | washbasin | 9.298250e-03 | False |
| 987 | 707741517457260545 | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | whippet | 0.738371 | True | Italian_greyhound | 1.917890e-01 | True | American_Staffordshire_terrier | 2.012570e-02 | True |
| 988 | 707776935007539200 | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | miniature_pinscher | 0.890426 | True | toy_terrier | 5.133470e-02 | True | Chihuahua | 1.801530e-02 | True |
| 989 | 707969809498152960 | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | toy_poodle | 0.908491 | True | miniature_poodle | 8.265160e-02 | True | teddy | 5.786130e-03 | False |
| 990 | 707995814724026368 | https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg | 1 | agama | 0.172087 | False | Gila_monster | 1.269780e-01 | False | lumbermill | 5.040000e-02 | False |
| 991 | 708026248782585858 | https://pbs.twimg.com/ext_tw_video_thumb/70802... | 1 | malinois | 0.786468 | True | Chesapeake_Bay_retriever | 6.897890e-02 | True | Siamese_cat | 2.930440e-02 | False |
| 992 | 708109389455101952 | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | Staffordshire_bullterrier | 0.516106 | True | American_Staffordshire_terrier | 2.360750e-01 | True | kelpie | 6.974950e-02 | True |
| 993 | 708119489313951744 | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | Norwich_terrier | 0.264483 | True | Norfolk_terrier | 2.587860e-01 | True | chow | 9.689870e-02 | True |
| 994 | 708130923141795840 | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | French_bulldog | 0.710354 | True | Chihuahua | 2.623020e-01 | True | Cardigan | 6.903820e-03 | True |
| 995 | 708149363256774660 | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | Cardigan | 0.350993 | True | basset | 1.645550e-01 | True | toy_terrier | 8.048360e-02 | True |
| 996 | 708349470027751425 | https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg | 1 | muzzle | 0.243890 | False | basenji | 1.871580e-01 | True | Boston_bull | 9.272700e-02 | True |
| 997 | 708356463048204288 | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | pug | 0.871283 | True | French_bulldog | 4.182000e-02 | True | bath_towel | 1.522800e-02 | False |
| 998 | 708469915515297792 | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | Chihuahua | 0.748163 | True | toy_terrier | 1.277170e-01 | True | Pembroke | 4.214100e-02 | True |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | Shih-Tzu | 0.218479 | True | Lhasa | 2.019660e-01 | True | Norfolk_terrier | 1.652250e-01 | True |
| 1000 | 708711088997666817 | https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg | 2 | tennis_ball | 0.912961 | False | German_short-haired_pointer | 5.269460e-02 | True | Labrador_retriever | 1.847740e-02 | True |
| 1001 | 708738143638450176 | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | Pomeranian | 0.933457 | True | Samoyed | 5.722080e-02 | True | West_Highland_white_terrier | 9.041510e-04 | True |
| 1002 | 708810915978854401 | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | golden_retriever | 0.976139 | True | Labrador_retriever | 1.630090e-02 | True | Norfolk_terrier | 1.871370e-03 | True |
| 1003 | 708834316713893888 | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | Eskimo_dog | 0.283945 | True | giant_panda | 2.182520e-01 | False | malamute | 1.804010e-01 | True |
| 1004 | 708845821941387268 | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | schipperke | 0.745640 | True | kelpie | 1.678530e-01 | True | Boston_bull | 1.476290e-02 | True |
| 1005 | 709042156699303936 | https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg | 1 | hotdog | 0.826579 | False | Rottweiler | 6.817930e-02 | True | Labrador_retriever | 4.921790e-02 | True |
| 1006 | 709158332880297985 | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | Siberian_husky | 0.212957 | True | Eskimo_dog | 1.788870e-01 | True | Labrador_retriever | 1.742180e-01 | True |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | borzoi | 0.490783 | True | wire-haired_fox_terrier | 8.351330e-02 | True | English_setter | 8.318430e-02 | True |
| 1008 | 709207347839836162 | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | Chihuahua | 0.948323 | True | Italian_greyhound | 1.773030e-02 | True | quilt | 1.668790e-02 | False |
| 1009 | 709225125749587968 | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | Labrador_retriever | 0.271109 | True | Pomeranian | 1.504870e-01 | True | golden_retriever | 1.455780e-01 | True |
| 1010 | 709409458133323776 | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | Shetland_sheepdog | 0.797450 | True | collie | 5.405530e-02 | True | keeshond | 3.167330e-02 | True |
| 1011 | 709449600415961088 | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | Maltese_dog | 0.780187 | True | Dandie_Dinmont | 7.442870e-02 | True | Norfolk_terrier | 3.377620e-02 | True |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | cocker_spaniel | 0.414982 | True | Newfoundland | 2.254820e-01 | True | flat-coated_retriever | 1.967890e-01 | True |
| 1013 | 709556954897764353 | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | golden_retriever | 0.790026 | True | kuvasz | 1.050310e-01 | True | Labrador_retriever | 8.705120e-02 | True |
| 1014 | 709566166965075968 | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | chow | 0.999837 | True | Tibetan_mastiff | 1.169070e-04 | True | Australian_terrier | 1.133840e-05 | True |
| 1015 | 709852847387627521 | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | Chihuahua | 0.945629 | True | Pomeranian | 1.920360e-02 | True | West_Highland_white_terrier | 1.013420e-02 | True |
| 1016 | 709901256215666688 | https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg | 2 | bib | 0.998814 | False | handkerchief | 5.117730e-04 | False | umbrella | 2.244770e-04 | False |
| 1017 | 709918798883774466 | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | Pembroke | 0.956222 | True | Cardigan | 2.072730e-02 | True | Chihuahua | 7.912180e-03 | True |
| 1018 | 710117014656950272 | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | toy_poodle | 0.802092 | True | miniature_poodle | 1.116470e-01 | True | cocker_spaniel | 6.286620e-02 | True |
| 1019 | 710140971284037632 | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | Pekinese | 0.953170 | True | papillon | 1.951690e-02 | True | Japanese_spaniel | 5.820510e-03 | True |
| 1020 | 710153181850935296 | https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg | 2 | cowboy_hat | 0.979053 | False | sombrero | 1.068250e-02 | False | cocker_spaniel | 2.712960e-03 | True |
| 1021 | 710269109699739648 | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | pug | 0.415495 | True | German_shepherd | 1.781570e-01 | True | Labrador_retriever | 1.002020e-01 | True |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | Old_English_sheepdog | 0.586307 | True | wire-haired_fox_terrier | 1.186220e-01 | True | Lakeland_terrier | 1.068060e-01 | True |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | Shih-Tzu | 0.932401 | True | Lhasa | 3.080570e-02 | True | Tibetan_terrier | 8.974280e-03 | True |
| 1024 | 710588934686908417 | https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg | 4 | Pembroke | 0.982004 | True | Cardigan | 8.943470e-03 | True | malamute | 7.549900e-03 | True |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | soft-coated_wheaten_terrier | 0.948617 | True | Dandie_Dinmont | 1.866440e-02 | True | cairn | 1.594270e-02 | True |
| 1026 | 710833117892898816 | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | Pembroke | 0.803742 | True | Cardigan | 1.897120e-01 | True | German_shepherd | 1.746090e-03 | True |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | dingo | 0.536593 | False | Pembroke | 2.004070e-01 | True | basenji | 6.073450e-02 | True |
| 1028 | 710997087345876993 | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | malamute | 0.281260 | True | Eskimo_dog | 2.326410e-01 | True | Pembroke | 9.160200e-02 | True |
| 1029 | 711008018775851008 | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | French_bulldog | 0.731405 | True | Boston_bull | 1.506720e-01 | True | pug | 2.181090e-02 | True |
| 1030 | 711306686208872448 | https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg | 1 | leatherback_turtle | 0.280835 | False | loggerhead | 1.232900e-01 | False | Dandie_Dinmont | 8.679250e-02 | True |
| 1031 | 711363825979756544 | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | Pembroke | 0.750906 | True | Cardigan | 2.411520e-01 | True | basenji | 2.639620e-03 | True |
| 1032 | 711652651650457602 | https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg | 1 | llama | 0.856789 | False | Arabian_camel | 9.872700e-02 | False | neck_brace | 1.637720e-02 | False |
| 1033 | 711694788429553666 | https://pbs.twimg.com/tweet_video_thumb/CeBym7... | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | dingo | 0.366875 | False | Ibizan_hound | 3.349290e-01 | True | Eskimo_dog | 7.387620e-02 | True |
| 1035 | 711743778164514816 | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | Lakeland_terrier | 0.459515 | True | miniature_poodle | 2.196610e-01 | True | standard_poodle | 1.301890e-01 | True |
| 1036 | 711968124745228288 | https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg | 1 | espresso | 0.430135 | False | coffee_mug | 4.184830e-01 | False | cup | 8.839120e-02 | False |
| 1037 | 711998809858043904 | https://pbs.twimg.com/tweet_video_thumb/CeGGkW... | 1 | comic_book | 0.105171 | False | kuvasz | 5.989510e-02 | True | book_jacket | 4.663810e-02 | False |
| 1038 | 712065007010385924 | https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg | 1 | goose | 0.214301 | False | gibbon | 8.425300e-02 | False | pizza | 8.016830e-02 | False |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | Shih-Tzu | 0.625129 | True | Tibetan_terrier | 1.268970e-01 | True | Lhasa | 1.196630e-01 | True |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 1.531260e-01 | False | three-toed_sloth | 1.118400e-01 | False |
| 1041 | 712097430750289920 | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | Labrador_retriever | 0.720481 | True | whippet | 4.803180e-02 | True | Chesapeake_Bay_retriever | 4.504640e-02 | True |
| 1042 | 712438159032893441 | https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg | 1 | ice_bear | 0.869477 | False | Great_Pyrenees | 6.945700e-02 | True | Labrador_retriever | 2.474000e-02 | True |
| 1043 | 712668654853337088 | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | Labrador_retriever | 0.829058 | True | golden_retriever | 3.866450e-02 | True | Chihuahua | 2.622140e-02 | True |
| 1044 | 712717840512598017 | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | Great_Pyrenees | 0.732043 | True | kuvasz | 1.213750e-01 | True | Irish_wolfhound | 4.952370e-02 | True |
| 1045 | 712809025985978368 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1046 | 713175907180089344 | https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg | 1 | timber_wolf | 0.503788 | False | malamute | 4.306240e-01 | True | Siberian_husky | 2.845420e-02 | True |
| 1047 | 713177543487135744 | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | whippet | 0.734244 | True | basenji | 2.594800e-02 | True | Great_Dane | 2.587430e-02 | True |
| 1048 | 713411074226274305 | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | Great_Pyrenees | 0.720337 | True | Samoyed | 1.295420e-01 | True | kuvasz | 1.224510e-01 | True |
| 1049 | 713761197720473600 | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | Brittany_spaniel | 0.797936 | True | English_springer | 4.471820e-02 | True | Welsh_springer_spaniel | 3.791070e-02 | True |
| 1050 | 713900603437621249 | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | golden_retriever | 0.371816 | True | cocker_spaniel | 1.774130e-01 | True | Irish_setter | 9.272520e-02 | True |
| 1051 | 713919462244790272 | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | Siberian_husky | 0.463223 | True | Eskimo_dog | 3.899590e-01 | True | malamute | 9.796270e-02 | True |
| 1052 | 714141408463036416 | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | Labrador_retriever | 0.586951 | True | golden_retriever | 3.788120e-01 | True | redbone | 3.604890e-03 | True |
| 1053 | 714214115368108032 | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | pug | 0.533967 | True | bloodhound | 1.648260e-01 | True | German_shepherd | 4.652400e-02 | True |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | soft-coated_wheaten_terrier | 0.751962 | True | Bedlington_terrier | 1.756520e-01 | True | Great_Pyrenees | 1.145240e-02 | True |
| 1055 | 714258258790387713 | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | collie | 0.176758 | True | Chesapeake_Bay_retriever | 1.018340e-01 | True | beagle | 1.012940e-01 | True |
| 1056 | 714606013974974464 | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | Norfolk_terrier | 0.293007 | True | Labrador_retriever | 2.561980e-01 | True | golden_retriever | 1.296430e-01 | True |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 1.174020e-01 | False | black-footed_ferret | 9.993270e-02 | False |
| 1058 | 714957620017307648 | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | Great_Pyrenees | 0.251516 | True | Samoyed | 1.393460e-01 | True | kuvasz | 1.290050e-01 | True |
| 1059 | 714982300363173890 | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | Brittany_spaniel | 0.944376 | True | beagle | 2.543530e-02 | True | Ibizan_hound | 9.962040e-03 | True |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | dingo | 0.310903 | False | Chihuahua | 1.422880e-01 | True | Cardigan | 1.039450e-01 | True |
| 1061 | 715200624753819648 | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | Chihuahua | 0.956787 | True | beagle | 8.382870e-03 | True | Labrador_retriever | 8.344090e-03 | True |
| 1062 | 715220193576927233 | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | Chihuahua | 0.584026 | True | Italian_greyhound | 3.770770e-01 | True | Boston_bull | 1.740040e-02 | True |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | West_Highland_white_terrier | 0.597111 | True | soft-coated_wheaten_terrier | 1.429930e-01 | True | Lakeland_terrier | 1.367120e-01 | True |
| 1064 | 715360349751484417 | https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg | 1 | nail | 0.855552 | False | screw | 7.327730e-02 | False | padlock | 2.397040e-02 | False |
| 1065 | 715680795826982913 | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | golden_retriever | 0.990715 | True | Labrador_retriever | 2.228340e-03 | True | chow | 1.197150e-03 | True |
| 1066 | 715696743237730304 | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | Staffordshire_bullterrier | 0.427836 | True | pug | 2.214090e-01 | True | French_bulldog | 1.321350e-01 | True |
| 1067 | 715733265223708672 | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | Dandie_Dinmont | 0.740229 | True | miniature_poodle | 8.191510e-02 | True | toy_poodle | 6.374850e-02 | True |
| 1068 | 715928423106027520 | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | pug | 0.976685 | True | French_bulldog | 1.966260e-02 | True | bull_mastiff | 2.278190e-03 | True |
| 1069 | 716080869887381504 | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | golden_retriever | 0.638625 | True | chow | 2.547170e-01 | True | Tibetan_mastiff | 7.173170e-02 | True |
| 1070 | 716285507865542656 | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | Yorkshire_terrier | 0.430420 | True | silky_terrier | 1.967690e-01 | True | cairn | 7.267610e-02 | True |
| 1071 | 716439118184652801 | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | Siberian_husky | 0.396495 | True | malamute | 3.170530e-01 | True | Eskimo_dog | 2.734190e-01 | True |
| 1072 | 716791146589110272 | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | Pomeranian | 0.468751 | True | seat_belt | 1.546520e-01 | False | golden_retriever | 1.250170e-01 | True |
| 1073 | 716802964044845056 | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | malinois | 0.619577 | True | Leonberg | 1.180890e-01 | True | bull_mastiff | 6.650780e-02 | True |
| 1074 | 717009362452090881 | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | Siberian_husky | 0.506154 | True | Eskimo_dog | 2.696560e-01 | True | malamute | 6.065850e-02 | True |
| 1075 | 717047459982213120 | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | golden_retriever | 0.983548 | True | Labrador_retriever | 1.218540e-02 | True | cocker_spaniel | 2.412030e-03 | True |
| 1076 | 717421804990701568 | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | miniature_pinscher | 0.286479 | True | Italian_greyhound | 8.413390e-02 | True | beagle | 6.469700e-02 | True |
| 1077 | 717537687239008257 | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | golden_retriever | 0.779356 | True | Labrador_retriever | 5.251140e-02 | True | kuvasz | 4.981050e-02 | True |
| 1078 | 717790033953034240 | https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg | 1 | car_mirror | 0.819106 | False | minibus | 1.073830e-01 | False | cab | 3.484640e-02 | False |
| 1079 | 717841801130979328 | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | Brittany_spaniel | 0.922876 | True | English_springer | 7.011350e-02 | True | bath_towel | 2.560790e-03 | False |
| 1080 | 718234618122661888 | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | malamute | 0.370152 | True | Siberian_husky | 3.563980e-01 | True | Eskimo_dog | 2.710420e-01 | True |
| 1081 | 718246886998687744 | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | Chihuahua | 0.354488 | True | carton | 1.596720e-01 | False | Siberian_husky | 5.749830e-02 | True |
| 1082 | 718454725339934721 | https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg | 1 | hammer | 0.169865 | False | hatchet | 1.157440e-01 | False | chime | 6.809160e-02 | False |
| 1083 | 718460005985447936 | https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg | 1 | badger | 0.356946 | False | Boston_bull | 2.527810e-01 | True | kelpie | 1.134330e-01 | True |
| 1084 | 718540630683709445 | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | Maltese_dog | 0.632289 | True | West_Highland_white_terrier | 1.870550e-01 | True | cairn | 4.441290e-02 | True |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | Labrador_retriever | 0.584580 | True | German_short-haired_pointer | 3.406570e-01 | True | Chesapeake_Bay_retriever | 3.197510e-02 | True |
| 1086 | 718631497683582976 | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | Pomeranian | 0.993718 | True | Pekinese | 3.610830e-03 | True | Persian_cat | 5.248230e-04 | False |
| 1087 | 718939241951195136 | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | Pembroke | 0.766327 | True | Cardigan | 2.221260e-01 | True | toilet_tissue | 6.757230e-03 | False |
| 1088 | 718971898235854848 | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | golden_retriever | 0.140394 | True | Saint_Bernard | 1.187690e-01 | True | Labrador_retriever | 7.549170e-02 | True |
| 1089 | 719332531645071360 | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | Dandie_Dinmont | 0.224415 | True | miniature_poodle | 2.048820e-01 | True | Norfolk_terrier | 9.063290e-02 | True |
| 1090 | 719339463458033665 | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | golden_retriever | 0.765778 | True | borzoi | 7.114810e-02 | True | Leonberg | 7.037050e-02 | True |
| 1091 | 719367763014393856 | https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg | 1 | swing | 0.171486 | False | soft-coated_wheaten_terrier | 5.097100e-02 | True | Tibetan_terrier | 4.775940e-02 | True |
| 1092 | 719551379208073216 | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | malamute | 0.873233 | True | Siberian_husky | 7.643540e-02 | True | Eskimo_dog | 3.574500e-02 | True |
| 1093 | 719704490224398336 | https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg | 1 | home_theater | 0.059033 | False | window_shade | 3.829900e-02 | False | bathtub | 3.552820e-02 | False |
| 1094 | 719991154352222208 | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | golden_retriever | 0.605304 | True | cocker_spaniel | 1.309480e-01 | True | Labrador_retriever | 9.469160e-02 | True |
| 1095 | 720043174954147842 | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | Samoyed | 0.954517 | True | Eskimo_dog | 2.912960e-02 | True | white_wolf | 4.462030e-03 | False |
| 1096 | 720059472081784833 | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | Mexican_hairless | 0.451852 | True | redbone | 2.548840e-01 | True | Italian_greyhound | 9.481810e-02 | True |
| 1097 | 720340705894408192 | https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg | 1 | alp | 0.320126 | False | lawn_mower | 8.080770e-02 | False | viaduct | 6.532100e-02 | False |
| 1098 | 720389942216527872 | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | Pembroke | 0.873977 | True | Cardigan | 4.333850e-02 | True | Eskimo_dog | 1.919710e-02 | True |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | Rottweiler | 0.990312 | True | black-and-tan_coonhound | 2.494780e-03 | True | American_black_bear | 1.733120e-03 | False |
| 1100 | 720775346191278080 | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | Newfoundland | 0.489970 | True | groenendael | 1.744970e-01 | True | giant_schnauzer | 7.906670e-02 | True |
| 1101 | 720785406564900865 | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | Chihuahua | 0.896422 | True | dingo | 2.792940e-02 | False | kelpie | 1.791580e-02 | True |
| 1102 | 721001180231503872 | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | Samoyed | 0.950053 | True | washbasin | 6.321390e-03 | False | tub | 6.243350e-03 | False |
| 1103 | 721503162398597120 | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | Pomeranian | 0.997750 | True | Chihuahua | 1.248000e-03 | True | Pekinese | 7.750020e-04 | True |
| 1104 | 722613351520608256 | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | Labrador_retriever | 0.530915 | True | golden_retriever | 2.882300e-01 | True | chow | 4.485370e-02 | True |
| 1105 | 722974582966214656 | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | Great_Dane | 0.246762 | True | Greater_Swiss_Mountain_dog | 1.261310e-01 | True | Weimaraner | 8.529690e-02 | True |
| 1106 | 723179728551723008 | https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg | 1 | tennis_ball | 0.176495 | False | badger | 5.990520e-02 | False | Norwegian_elkhound | 5.685050e-02 | True |
| 1107 | 723673163800948736 | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | golden_retriever | 0.839390 | True | Labrador_retriever | 6.570580e-02 | True | hand_blower | 1.294100e-02 | False |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | teddy | 0.263256 | False | chow | 8.901020e-02 | True | Irish_terrier | 6.530570e-02 | True |
| 1109 | 723912936180330496 | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | Samoyed | 0.991772 | True | Pomeranian | 3.626380e-03 | True | chow | 2.231830e-03 | True |
| 1110 | 724004602748780546 | https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg | 3 | Siamese_cat | 0.950526 | False | pug | 1.887690e-02 | True | quilt | 7.627600e-03 | False |
| 1111 | 724046343203856385 | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | boxer | 0.826272 | True | bull_mastiff | 1.585950e-01 | True | Great_Dane | 1.185860e-02 | True |
| 1112 | 724049859469295616 | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | Border_collie | 0.581835 | True | collie | 3.445880e-01 | True | Shetland_sheepdog | 4.358420e-02 | True |
| 1113 | 724405726123311104 | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | golden_retriever | 0.240695 | True | cocker_spaniel | 2.024440e-01 | True | feather_boa | 1.593480e-01 | False |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | German_short-haired_pointer | 0.835491 | True | bluetick | 5.878800e-02 | True | English_setter | 3.720830e-02 | True |
| 1115 | 724983749226668032 | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | golden_retriever | 0.675750 | True | Great_Pyrenees | 9.516790e-02 | True | cocker_spaniel | 7.604290e-02 | True |
| 1116 | 725729321944506368 | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | boxer | 0.599076 | True | bull_mastiff | 1.773180e-01 | True | French_bulldog | 1.414610e-01 | True |
| 1117 | 725786712245440512 | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | chow | 0.335761 | True | Samoyed | 1.671730e-01 | True | kuvasz | 1.457150e-01 | True |
| 1118 | 725842289046749185 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1119 | 726224900189511680 | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | standard_poodle | 0.261112 | True | cocker_spaniel | 9.478520e-02 | True | bucket | 6.994640e-02 | False |
| 1120 | 726828223124897792 | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | miniature_pinscher | 0.255327 | True | Border_terrier | 1.812790e-01 | True | Labrador_retriever | 1.251850e-01 | True |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | soft-coated_wheaten_terrier | 0.515919 | True | Irish_terrier | 1.626550e-01 | True | Chesapeake_Bay_retriever | 1.251820e-01 | True |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | teddy | 0.821615 | False | toy_poodle | 8.374900e-02 | True | Lakeland_terrier | 3.331800e-02 | True |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | flat-coated_retriever | 0.656463 | True | Great_Dane | 8.476580e-02 | True | Labrador_retriever | 5.890850e-02 | True |
| 1124 | 727286334147182592 | https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg | 1 | bonnet | 0.146440 | False | sock | 8.309100e-02 | False | Chihuahua | 7.055420e-02 | True |
| 1125 | 727314416056803329 | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | toy_poodle | 0.827469 | True | miniature_poodle | 1.607600e-01 | True | Tibetan_terrier | 1.730750e-03 | True |
| 1126 | 727524757080539137 | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | Pomeranian | 0.958834 | True | Chihuahua | 2.409920e-02 | True | chow | 3.941050e-03 | True |
| 1127 | 727644517743104000 | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | Great_Pyrenees | 0.457164 | True | kuvasz | 3.917100e-01 | True | Labrador_retriever | 9.452260e-02 | True |
| 1128 | 727685679342333952 | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | Border_collie | 0.462408 | True | collie | 2.145560e-01 | True | Eskimo_dog | 3.560360e-02 | True |
| 1129 | 728015554473250816 | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | cocker_spaniel | 0.384559 | True | golden_retriever | 9.166100e-02 | True | sandbar | 8.179890e-02 | False |
| 1130 | 728035342121635841 | https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg | 1 | handkerchief | 0.302961 | False | Pomeranian | 2.486640e-01 | True | Shih-Tzu | 1.110150e-01 | True |
| 1131 | 728046963732717569 | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | Newfoundland | 0.255971 | True | groenendael | 1.755830e-01 | True | German_shepherd | 1.641350e-01 | True |
| 1132 | 728387165835677696 | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | collie | 0.266414 | True | Great_Pyrenees | 1.385460e-01 | True | keeshond | 1.090140e-01 | True |
| 1133 | 728409960103686147 | https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg | 1 | Siamese_cat | 0.478278 | False | Saint_Bernard | 9.424560e-02 | True | king_penguin | 8.215670e-02 | False |
| 1134 | 728653952833728512 | https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg | 2 | window_shade | 0.594333 | False | studio_couch | 5.351500e-02 | False | rotisserie | 4.124780e-02 | False |
| 1135 | 728751179681943552 | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | Saint_Bernard | 0.482050 | True | collie | 2.027400e-01 | True | borzoi | 3.797580e-02 | True |
| 1136 | 728760639972315136 | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | Pembroke | 0.939134 | True | Cardigan | 5.433560e-02 | True | Chihuahua | 5.590290e-03 | True |
| 1137 | 728986383096946689 | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | Maltese_dog | 0.952070 | True | toy_poodle | 2.727060e-02 | True | miniature_poodle | 4.874360e-03 | True |
| 1138 | 729113531270991872 | https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg | 2 | stone_wall | 0.606188 | False | prison | 6.483100e-02 | False | bannister | 4.804820e-02 | False |
| 1139 | 729463711119904772 | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | German_shepherd | 0.829307 | True | Doberman | 2.250000e-02 | True | basenji | 2.119010e-02 | True |
| 1140 | 729823566028484608 | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | kelpie | 0.218408 | True | Arabian_camel | 1.143680e-01 | False | coyote | 9.640930e-02 | False |
| 1141 | 729838605770891264 | https://pbs.twimg.com/ext_tw_video_thumb/72983... | 1 | stone_wall | 0.758218 | False | patio | 7.420540e-02 | False | prison | 1.382600e-02 | False |
| 1142 | 729854734790754305 | https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg | 1 | doormat | 0.359586 | False | china_cabinet | 5.390140e-02 | False | passenger_car | 5.266470e-02 | False |
| 1143 | 730196704625098752 | https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg | 1 | hand_blower | 0.296145 | False | chain_mail | 2.622710e-01 | False | toilet_seat | 1.494970e-01 | False |
| 1144 | 730211855403241472 | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | pug | 0.341663 | True | Norwegian_elkhound | 1.712220e-01 | True | German_shepherd | 1.246870e-01 | True |
| 1145 | 730427201120833536 | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | Eskimo_dog | 0.682082 | True | Siberian_husky | 2.892880e-01 | True | Staffordshire_bullterrier | 8.770690e-03 | True |
| 1146 | 730573383004487680 | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | American_Staffordshire_terrier | 0.810158 | True | Labrador_retriever | 5.820500e-02 | True | Weimaraner | 2.792950e-02 | True |
| 1147 | 730924654643314689 | https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg | 1 | polecat | 0.185382 | False | mink | 1.052820e-01 | False | Newfoundland | 8.624110e-02 | True |
| 1148 | 731156023742988288 | https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg | 1 | lakeside | 0.501767 | False | breakwater | 5.135060e-02 | False | king_penguin | 4.944380e-02 | False |
| 1149 | 731285275100512256 | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | Pembroke | 0.967103 | True | Cardigan | 2.112640e-02 | True | Chihuahua | 2.231070e-03 | True |
| 1150 | 732005617171337216 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1151 | 732375214819057664 | https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg | 1 | tennis_ball | 0.998673 | False | basset | 5.470530e-04 | True | golden_retriever | 3.599800e-04 | True |
| 1152 | 732585889486888962 | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | Staffordshire_bullterrier | 0.843359 | True | American_Staffordshire_terrier | 2.829030e-02 | True | miniature_pinscher | 1.679290e-02 | True |
| 1153 | 732726085725589504 | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | Pomeranian | 0.961902 | True | Samoyed | 2.428930e-02 | True | chow | 5.771780e-03 | True |
| 1154 | 732732193018155009 | https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg | 1 | koala | 0.162935 | False | Staffordshire_bullterrier | 1.279690e-01 | True | mongoose | 9.642100e-02 | False |
| 1155 | 733109485275860992 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1156 | 733460102733135873 | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | chow | 0.931275 | True | beaver | 2.883110e-02 | False | dhole | 1.737900e-02 | False |
| 1157 | 733482008106668032 | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | French_bulldog | 0.619382 | True | computer_keyboard | 1.422740e-01 | False | mouse | 5.850470e-02 | False |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | Lhasa | 0.457356 | True | Shih-Tzu | 3.712820e-01 | True | Tibetan_terrier | 4.835900e-02 | True |
| 1159 | 733828123016450049 | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | beagle | 0.472324 | True | Walker_hound | 1.217790e-01 | True | Saint_Bernard | 1.146400e-01 | True |
| 1160 | 734776360183431168 | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | Siberian_husky | 0.304902 | True | Eskimo_dog | 1.551470e-01 | True | malamute | 5.094240e-02 | True |
| 1161 | 734787690684657664 | https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg | 4 | golden_retriever | 0.883991 | True | chow | 2.354160e-02 | True | Labrador_retriever | 1.605590e-02 | True |
| 1162 | 734912297295085568 | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | Maltese_dog | 0.847292 | True | feather_boa | 5.937860e-02 | False | Old_English_sheepdog | 5.275800e-02 | True |
| 1163 | 735137028879360001 | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | Walker_hound | 0.413535 | True | beagle | 2.338910e-01 | True | English_foxhound | 1.649430e-01 | True |
| 1164 | 735256018284875776 | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | Staffordshire_bullterrier | 0.523191 | True | French_bulldog | 3.511040e-01 | True | doormat | 2.807530e-02 | False |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 7.941630e-03 | False | quilt | 6.302060e-03 | False |
| 1166 | 735635087207878657 | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | pug | 0.891871 | True | goose | 1.437660e-02 | False | fur_coat | 8.451430e-03 | False |
| 1167 | 735648611367784448 | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | Pembroke | 0.462594 | True | seat_belt | 2.618540e-01 | False | Cardigan | 1.516980e-01 | True |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | cocker_spaniel | 0.961643 | True | toy_poodle | 1.154690e-02 | True | soft-coated_wheaten_terrier | 4.903330e-03 | True |
| 1169 | 736010884653420544 | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | golden_retriever | 0.553901 | True | Labrador_retriever | 1.194750e-01 | True | bluetick | 7.747500e-02 | True |
| 1170 | 736225175608430592 | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | Labrador_retriever | 0.399217 | True | West_Highland_white_terrier | 1.377100e-01 | True | cocker_spaniel | 6.203270e-02 | True |
| 1171 | 736365877722001409 | https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg | 3 | cup | 0.473555 | False | toy_poodle | 8.260600e-02 | True | consomme | 4.829800e-02 | False |
| 1172 | 736736130620620800 | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | schipperke | 0.545502 | True | groenendael | 2.986220e-01 | True | Labrador_retriever | 3.098640e-02 | True |
| 1173 | 737310737551491075 | https://pbs.twimg.com/ext_tw_video_thumb/73731... | 1 | cliff | 0.439077 | False | lakeside | 6.289920e-02 | False | valley | 3.975850e-02 | False |
| 1174 | 737322739594330112 | https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg | 1 | guinea_pig | 0.148526 | False | solar_dish | 9.718290e-02 | False | park_bench | 5.931190e-02 | False |
| 1175 | 737445876994609152 | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | Samoyed | 0.400568 | True | Pomeranian | 3.312680e-01 | True | Maltese_dog | 4.542610e-02 | True |
| 1176 | 737678689543020544 | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | Pembroke | 0.935307 | True | Cardigan | 4.987420e-02 | True | Chihuahua | 1.160320e-02 | True |
| 1177 | 737800304142471168 | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | malamute | 0.374682 | True | Norwegian_elkhound | 3.348530e-01 | True | limousine | 6.817320e-02 | False |
| 1178 | 737826014890496000 | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | vizsla | 0.990391 | True | Rhodesian_ridgeback | 5.604740e-03 | True | Chesapeake_Bay_retriever | 2.869360e-03 | True |
| 1179 | 738156290900254721 | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | pug | 0.751758 | True | tub | 1.107480e-01 | False | bathtub | 1.041320e-01 | False |
| 1180 | 738166403467907072 | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | keeshond | 0.878886 | True | Norwegian_elkhound | 8.665940e-02 | True | malamute | 2.128030e-02 | True |
| 1181 | 738184450748633089 | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | Bedlington_terrier | 0.289471 | True | standard_poodle | 1.736850e-01 | True | Great_Pyrenees | 1.570810e-01 | True |
| 1182 | 738402415918125056 | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | cocker_spaniel | 0.346695 | True | Blenheim_spaniel | 1.939050e-01 | True | Chihuahua | 7.800000e-02 | True |
| 1183 | 738537504001953792 | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | chow | 0.808737 | True | gibbon | 2.894240e-02 | False | Pembroke | 2.649790e-02 | True |
| 1184 | 738883359779196928 | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | Labrador_retriever | 0.691137 | True | golden_retriever | 1.955580e-01 | True | Chesapeake_Bay_retriever | 1.958490e-02 | True |
| 1185 | 738885046782832640 | https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg | 1 | bath_towel | 0.878320 | False | swab | 2.063330e-02 | False | American_Staffordshire_terrier | 1.553510e-02 | True |
| 1186 | 739238157791694849 | https://pbs.twimg.com/ext_tw_video_thumb/73923... | 1 | Eskimo_dog | 0.503372 | True | Siberian_husky | 3.904130e-01 | True | malamute | 8.090120e-02 | True |
| 1187 | 739485634323156992 | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | Walker_hound | 0.640256 | True | English_foxhound | 2.297990e-01 | True | beagle | 3.775400e-02 | True |
| 1188 | 739544079319588864 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1189 | 739606147276148736 | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | Blenheim_spaniel | 0.933755 | True | cocker_spaniel | 4.171940e-02 | True | Brittany_spaniel | 6.712560e-03 | True |
| 1190 | 739844404073074688 | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | toy_poodle | 0.342397 | True | table_lamp | 1.044510e-01 | False | miniature_poodle | 7.987100e-02 | True |
| 1191 | 739932936087216128 | https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg | 1 | redbone | 0.243904 | True | beagle | 2.109750e-01 | True | vizsla | 7.644300e-02 | True |
| 1192 | 739979191639244800 | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | Irish_water_spaniel | 0.285800 | True | wig | 2.406530e-01 | False | toy_poodle | 7.491390e-02 | True |
| 1193 | 740214038584557568 | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | Chesapeake_Bay_retriever | 0.586414 | True | Labrador_retriever | 1.897820e-01 | True | vizsla | 6.760720e-02 | True |
| 1194 | 740359016048689152 | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | golden_retriever | 0.863687 | True | kuvasz | 4.859010e-02 | True | Labrador_retriever | 4.739660e-02 | True |
| 1195 | 740365076218183684 | https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg | 1 | bow_tie | 0.246313 | False | Windsor_tie | 1.724460e-01 | False | mushroom | 1.375160e-01 | False |
| 1196 | 740373189193256964 | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | golden_retriever | 0.807644 | True | kuvasz | 1.012860e-01 | True | Labrador_retriever | 2.378530e-02 | True |
| 1197 | 740676976021798912 | https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg | 1 | wombat | 0.462952 | False | Norwegian_elkhound | 2.752250e-01 | True | Siamese_cat | 4.355930e-02 | False |
| 1198 | 740699697422163968 | https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg | 1 | lawn_mower | 0.878863 | False | swing | 2.453510e-02 | False | barrow | 1.957720e-02 | False |
| 1199 | 740711788199743490 | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | toy_poodle | 0.388277 | True | Angora | 1.802640e-01 | False | Persian_cat | 4.965610e-02 | False |
| 1200 | 740995100998766593 | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | malamute | 0.454363 | True | Samoyed | 2.159670e-01 | True | Siberian_husky | 7.750030e-02 | True |
| 1201 | 741067306818797568 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1202 | 741303864243200000 | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | Chihuahua | 0.768156 | True | pug | 1.490160e-02 | True | Pekinese | 1.281580e-02 | True |
| 1203 | 741438259667034112 | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | Chesapeake_Bay_retriever | 0.292675 | True | redbone | 1.978580e-01 | True | vizsla | 1.503120e-01 | True |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | Labrador_retriever | 0.786089 | True | flat-coated_retriever | 4.865240e-02 | True | Chesapeake_Bay_retriever | 3.469330e-02 | True |
| 1205 | 741793263812808706 | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | kuvasz | 0.311325 | True | French_bulldog | 1.153490e-01 | True | Labrador_retriever | 6.853350e-02 | True |
| 1206 | 742150209887731712 | https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg | 1 | Siamese_cat | 0.112413 | False | French_bulldog | 7.141440e-02 | True | hog | 6.246540e-02 | False |
| 1207 | 742161199639494656 | https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg | 1 | balloon | 0.990736 | False | punching_bag | 4.753560e-03 | False | parachute | 4.359740e-04 | False |
| 1208 | 742385895052087300 | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | Cardigan | 0.566911 | True | Border_collie | 1.175660e-01 | True | Appenzeller | 4.766400e-02 | True |
| 1209 | 742423170473463808 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1210 | 742465774154047488 | https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg | 1 | web_site | 0.997154 | False | comic_book | 4.392210e-04 | False | desktop_computer | 2.675790e-04 | False |
| 1211 | 742528092657332225 | https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg | 2 | sunglasses | 0.900864 | False | sunglass | 4.029060e-02 | False | snorkel | 9.332920e-03 | False |
| 1212 | 743210557239623680 | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | golden_retriever | 0.930705 | True | Chesapeake_Bay_retriever | 2.593410e-02 | True | Labrador_retriever | 7.535360e-03 | True |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | kuvasz | 0.350629 | True | soft-coated_wheaten_terrier | 1.827820e-01 | True | golden_retriever | 8.766240e-02 | True |
| 1214 | 743253157753532416 | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | malamute | 0.442612 | True | Siberian_husky | 3.681370e-01 | True | Eskimo_dog | 1.778220e-01 | True |
| 1215 | 743510151680958465 | https://pbs.twimg.com/ext_tw_video_thumb/74350... | 1 | sea_lion | 0.859046 | False | tub | 2.040540e-02 | False | hippopotamus | 1.309480e-02 | False |
| 1216 | 743545585370791937 | https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg | 2 | rapeseed | 0.876875 | False | standard_poodle | 6.058350e-02 | True | Great_Pyrenees | 3.300570e-02 | True |
| 1217 | 743595368194129920 | https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg | 1 | hippopotamus | 0.505675 | False | hog | 3.707260e-01 | False | warthog | 1.882720e-02 | False |
| 1218 | 743609206067040256 | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | Weimaraner | 0.982794 | True | American_Staffordshire_terrier | 4.766400e-03 | True | Great_Dane | 3.432010e-03 | True |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | dalmatian | 0.562315 | True | Great_Dane | 4.164780e-01 | True | German_short-haired_pointer | 8.552360e-03 | True |
| 1220 | 743980027717509120 | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | bull_mastiff | 0.975730 | True | Rhodesian_ridgeback | 8.072610e-03 | True | pug | 5.570870e-03 | True |
| 1221 | 744234799360020481 | https://pbs.twimg.com/ext_tw_video_thumb/74423... | 1 | Labrador_retriever | 0.825333 | True | ice_bear | 4.468080e-02 | False | whippet | 1.844220e-02 | True |
| 1222 | 744334592493166593 | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | Samoyed | 0.960543 | True | Pomeranian | 1.219190e-02 | True | white_wolf | 4.752990e-03 | False |
| 1223 | 744709971296780288 | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | Shetland_sheepdog | 0.234431 | True | Samoyed | 1.148760e-01 | True | collie | 8.661370e-02 | True |
| 1224 | 744971049620602880 | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | toy_poodle | 0.497755 | True | golden_retriever | 2.820170e-01 | True | miniature_poodle | 9.003240e-02 | True |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | Old_English_sheepdog | 0.427481 | True | Shih-Tzu | 1.463360e-01 | True | Tibetan_terrier | 1.342690e-01 | True |
| 1226 | 745057283344719872 | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | Shetland_sheepdog | 0.963985 | True | collie | 2.620570e-02 | True | Border_collie | 4.543650e-03 | True |
| 1227 | 745314880350101504 | https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg | 2 | ice_bear | 0.807762 | False | great_white_shark | 2.704040e-02 | False | fountain | 2.205180e-02 | False |
| 1228 | 745422732645535745 | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | Labrador_retriever | 0.663800 | True | golden_retriever | 3.082610e-01 | True | ice_bear | 4.269210e-03 | False |
| 1229 | 745433870967832576 | https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg | 1 | barrow | 0.999962 | False | basset | 1.448950e-05 | True | wok | 6.060880e-06 | False |
| 1230 | 745712589599014916 | https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg | 1 | seat_belt | 0.379055 | False | chow | 6.275450e-02 | True | minibus | 5.242260e-02 | False |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | Pekinese | 0.984267 | True | Shih-Tzu | 8.941660e-03 | True | cocker_spaniel | 1.928260e-03 | True |
| 1232 | 746056683365994496 | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | Shetland_sheepdog | 0.433320 | True | collie | 3.359970e-01 | True | borzoi | 1.771790e-01 | True |
| 1233 | 746131877086527488 | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | chow | 0.575637 | True | Pomeranian | 1.959500e-01 | True | Norwich_terrier | 1.412240e-01 | True |
| 1234 | 746369468511756288 | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | German_shepherd | 0.622957 | True | malinois | 3.388840e-01 | True | wallaby | 2.416150e-02 | False |
| 1235 | 746507379341139972 | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | toy_poodle | 0.508292 | True | Lakeland_terrier | 2.344580e-01 | True | affenpinscher | 8.456280e-02 | True |
| 1236 | 746726898085036033 | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | golden_retriever | 0.256505 | True | Labrador_retriever | 2.524170e-01 | True | seat_belt | 2.031630e-01 | False |
| 1237 | 746790600704425984 | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | Boston_bull | 0.936183 | True | guinea_pig | 1.008400e-02 | False | Cardigan | 1.007700e-02 | True |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | dingo | 0.175518 | False | timber_wolf | 1.336470e-01 | False | Ibizan_hound | 1.015370e-01 | True |
| 1239 | 746872823977771008 | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | Pembroke | 0.540201 | True | beagle | 2.078350e-01 | True | Italian_greyhound | 4.356490e-02 | True |
| 1240 | 746906459439529985 | https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg | 1 | traffic_light | 0.470708 | False | fountain | 1.997760e-01 | False | space_shuttle | 6.480700e-02 | False |
| 1241 | 747103485104099331 | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | Labrador_retriever | 0.991954 | True | golden_retriever | 2.228490e-03 | True | doormat | 1.404020e-03 | False |
| 1242 | 747204161125646336 | https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg | 2 | coil | 0.533699 | False | dugong | 8.795910e-02 | False | rain_barrel | 3.922150e-02 | False |
| 1243 | 747219827526344708 | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | Shetland_sheepdog | 0.548018 | True | marmot | 1.655030e-01 | False | collie | 4.300260e-02 | True |
| 1244 | 747461612269887489 | https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg | 1 | binoculars | 0.192717 | False | barbershop | 8.583820e-02 | False | ballplayer | 8.467220e-02 | False |
| 1245 | 747512671126323200 | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | Cardigan | 0.111493 | True | malinois | 9.508920e-02 | True | German_shepherd | 8.014560e-02 | True |
| 1246 | 747594051852075008 | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | basenji | 0.389136 | True | dingo | 2.702260e-01 | False | Chihuahua | 9.893880e-02 | True |
| 1247 | 747600769478692864 | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | Chesapeake_Bay_retriever | 0.804363 | True | Weimaraner | 5.443110e-02 | True | Labrador_retriever | 4.326760e-02 | True |
| 1248 | 747816857231626240 | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | Pembroke | 0.768923 | True | Chihuahua | 2.905300e-02 | True | Shetland_sheepdog | 2.903540e-02 | True |
| 1249 | 747844099428986880 | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | Pembroke | 0.360428 | True | papillon | 2.631340e-01 | True | Chihuahua | 1.312460e-01 | True |
| 1250 | 747885874273214464 | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | kuvasz | 0.408450 | True | Samoyed | 1.413300e-01 | True | pug | 8.301840e-02 | True |
| 1251 | 747933425676525569 | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | Samoyed | 0.998201 | True | Eskimo_dog | 7.928500e-04 | True | Great_Pyrenees | 2.957500e-04 | True |
| 1252 | 747963614829678593 | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | kelpie | 0.307672 | True | Irish_terrier | 1.974860e-01 | True | dingo | 1.054750e-01 | False |
| 1253 | 748307329658011649 | https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg | 2 | paddle | 0.589066 | False | shovel | 3.806230e-02 | False | mountain_tent | 2.920330e-02 | False |
| 1254 | 748324050481647620 | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | Shetland_sheepdog | 0.880499 | True | collie | 1.079010e-01 | True | Pembroke | 3.606670e-03 | True |
| 1255 | 748346686624440324 | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | borzoi | 0.596455 | True | whippet | 2.314280e-01 | True | Saluki | 5.826140e-02 | True |
| 1256 | 748568946752774144 | https://pbs.twimg.com/ext_tw_video_thumb/74856... | 1 | Tibetan_terrier | 0.328161 | True | toy_poodle | 3.048360e-01 | True | miniature_poodle | 7.087840e-02 | True |
| 1257 | 748575535303884801 | https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg | 1 | muzzle | 0.176172 | False | seat_belt | 1.609530e-01 | False | soft-coated_wheaten_terrier | 8.649880e-02 | True |
| 1258 | 748692773788876800 | https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg | 1 | ox | 0.337871 | False | plow | 2.692870e-01 | False | oxcart | 2.456530e-01 | False |
| 1259 | 748699167502000129 | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | Pembroke | 0.849029 | True | Cardigan | 8.362880e-02 | True | kelpie | 2.439450e-02 | True |
| 1260 | 748705597323898880 | https://pbs.twimg.com/ext_tw_video_thumb/74870... | 1 | tiger_shark | 0.548497 | False | great_white_shark | 1.302520e-01 | False | scuba_diver | 1.218870e-01 | False |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | borzoi | 0.742912 | True | wire-haired_fox_terrier | 2.040820e-01 | True | English_setter | 2.103230e-02 | True |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | German_short-haired_pointer | 0.742216 | True | bluetick | 1.528100e-01 | True | English_setter | 5.183470e-02 | True |
| 1263 | 749036806121881602 | https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg | 1 | sulphur-crested_cockatoo | 0.960276 | False | West_Highland_white_terrier | 1.952230e-02 | True | Samoyed | 6.395620e-03 | True |
| 1264 | 749064354620928000 | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | pug | 0.985222 | True | Brabancon_griffon | 3.313660e-03 | True | Pekinese | 2.988880e-03 | True |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/74931... | 1 | wire-haired_fox_terrier | 0.155144 | True | Lakeland_terrier | 1.083820e-01 | True | buckeye | 7.461670e-02 | False |
| 1266 | 749395845976588288 | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | Pomeranian | 0.973715 | True | chow | 2.075810e-02 | True | keeshond | 3.784360e-03 | True |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | Chesapeake_Bay_retriever | 0.694541 | True | curly-coated_retriever | 7.633530e-02 | True | Irish_water_spaniel | 4.854950e-02 | True |
| 1268 | 749417653287129088 | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | papillon | 0.772894 | True | Shetland_sheepdog | 4.240760e-02 | True | collie | 4.231310e-02 | True |
| 1269 | 749774190421639168 | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | Pekinese | 0.879012 | True | Chihuahua | 5.485500e-02 | True | Blenheim_spaniel | 2.104100e-02 | True |
| 1270 | 749981277374128128 | https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg | 1 | bow_tie | 0.533941 | False | sunglasses | 8.082220e-02 | False | sunglass | 5.077620e-02 | False |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | Old_English_sheepdog | 0.515319 | True | West_Highland_white_terrier | 1.510400e-01 | True | soft-coated_wheaten_terrier | 5.642000e-02 | True |
| 1272 | 750011400160841729 | https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg | 1 | muzzle | 0.237620 | False | Boston_bull | 8.714980e-02 | True | sombrero | 6.850990e-02 | False |
| 1273 | 750026558547456000 | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | standard_poodle | 0.258732 | True | teddy | 1.307600e-01 | False | toy_poodle | 7.172630e-02 | True |
| 1274 | 750041628174217216 | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | Labrador_retriever | 0.252031 | True | Maltese_dog | 1.880900e-01 | True | golden_retriever | 1.330170e-01 | True |
| 1275 | 750056684286914561 | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | Saluki | 0.484428 | True | borzoi | 2.635500e-01 | True | Labrador_retriever | 7.700380e-02 | True |
| 1276 | 750071704093859840 | https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg | 2 | redbone | 0.382113 | True | malinois | 2.499430e-01 | True | miniature_pinscher | 7.092620e-02 | True |
| 1277 | 750086836815486976 | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | pug | 0.978277 | True | teddy | 3.134460e-03 | False | Brabancon_griffon | 3.061490e-03 | True |
| 1278 | 750101899009982464 | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | golden_retriever | 0.316704 | True | llama | 1.742690e-01 | False | Labrador_retriever | 1.473640e-01 | True |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | Shih-Tzu | 0.814405 | True | Lhasa | 1.752200e-01 | True | Pekinese | 8.072300e-03 | True |
| 1280 | 750132105863102464 | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | toy_poodle | 0.478018 | True | miniature_poodle | 2.074580e-01 | True | croquet_ball | 8.587890e-02 | False |
| 1281 | 750147208377409536 | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | pug | 0.977765 | True | Boston_bull | 4.794250e-03 | True | French_bulldog | 4.572840e-03 | True |
| 1282 | 750383411068534784 | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | Border_collie | 0.672791 | True | collie | 2.701880e-01 | True | papillon | 3.450390e-02 | True |
| 1283 | 750429297815552001 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1284 | 750506206503038976 | https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg | 1 | American_black_bear | 0.219166 | False | lesser_panda | 2.147150e-01 | False | titi | 9.168510e-02 | False |
| 1285 | 750719632563142656 | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | Pembroke | 0.972587 | True | Cardigan | 1.477170e-02 | True | basenji | 5.798030e-03 | True |
| 1286 | 750868782890057730 | https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg | 4 | toy_poodle | 0.912648 | True | miniature_poodle | 3.505920e-02 | True | seat_belt | 2.637560e-02 | False |
| 1287 | 751132876104687617 | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | Labrador_retriever | 0.929390 | True | Chesapeake_Bay_retriever | 3.825350e-02 | True | golden_retriever | 7.610200e-03 | True |
| 1288 | 751205363882532864 | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | Labrador_retriever | 0.947164 | True | Chesapeake_Bay_retriever | 2.059670e-02 | True | golden_retriever | 1.657920e-02 | True |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/75125... | 1 | Walker_hound | 0.178852 | True | German_short-haired_pointer | 1.157520e-01 | True | English_foxhound | 1.137960e-01 | True |
| 1290 | 751456908746354688 | https://pbs.twimg.com/ext_tw_video_thumb/75145... | 1 | golden_retriever | 0.714409 | True | Afghan_hound | 6.616260e-02 | True | chow | 2.841260e-02 | True |
| 1291 | 751538714308972544 | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | Labrador_retriever | 0.516257 | True | golden_retriever | 2.108390e-01 | True | dingo | 1.620220e-01 | False |
| 1292 | 751583847268179968 | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | dalmatian | 0.868304 | True | studio_couch | 5.962300e-02 | False | snow_leopard | 1.387630e-02 | False |
| 1293 | 751598357617971201 | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | toy_poodle | 0.757756 | True | miniature_poodle | 3.514950e-02 | True | Scottish_deerhound | 2.769820e-02 | True |
| 1294 | 751830394383790080 | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | chow | 0.703569 | True | Pomeranian | 7.663670e-02 | True | Siamese_cat | 4.595910e-02 | False |
| 1295 | 751937170840121344 | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | Lakeland_terrier | 0.424168 | True | teddy | 2.605620e-01 | False | golden_retriever | 1.274320e-01 | True |
| 1296 | 752173152931807232 | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | Labrador_retriever | 0.527659 | True | German_shepherd | 1.747650e-01 | True | Chihuahua | 4.552540e-02 | True |
| 1297 | 752309394570878976 | https://pbs.twimg.com/ext_tw_video_thumb/67535... | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/75233... | 1 | Bedlington_terrier | 0.399163 | True | standard_poodle | 8.642490e-02 | True | wire-haired_fox_terrier | 7.523110e-02 | True |
| 1299 | 752519690950500352 | https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg | 3 | swing | 0.999984 | False | Labrador_retriever | 1.002880e-05 | True | Eskimo_dog | 1.434470e-06 | True |
| 1300 | 752660715232722944 | https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg | 2 | goose | 0.339324 | False | English_setter | 5.051180e-02 | True | basset | 4.909330e-02 | True |
| 1301 | 752682090207055872 | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | German_shepherd | 0.299966 | True | Eskimo_dog | 2.783550e-01 | True | Siberian_husky | 1.785200e-01 | True |
| 1302 | 752917284578922496 | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | German_shepherd | 0.609283 | True | malinois | 3.524600e-01 | True | kelpie | 1.610520e-02 | True |
| 1303 | 753026973505581056 | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | Pembroke | 0.868511 | True | Cardigan | 1.037080e-01 | True | Shetland_sheepdog | 1.814160e-02 | True |
| 1304 | 753294487569522689 | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | chow | 0.194773 | True | monitor | 1.023050e-01 | False | Siberian_husky | 8.685470e-02 | True |
| 1305 | 753375668877008896 | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | bluetick | 0.360071 | True | crutch | 1.348160e-01 | False | tripod | 9.820660e-02 | False |
| 1306 | 753398408988139520 | https://pbs.twimg.com/ext_tw_video_thumb/75339... | 1 | whippet | 0.163794 | True | Italian_greyhound | 1.571920e-01 | True | English_foxhound | 1.429950e-01 | True |
| 1307 | 753420520834629632 | https://pbs.twimg.com/ext_tw_video_thumb/75342... | 1 | balloon | 0.267961 | False | lakeside | 8.576370e-02 | False | rapeseed | 4.080890e-02 | False |
| 1308 | 753655901052166144 | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | miniature_pinscher | 0.456092 | True | toy_terrier | 1.531260e-01 | True | Italian_greyhound | 1.441470e-01 | True |
| 1309 | 754011816964026368 | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | French_bulldog | 0.600985 | True | Boston_bull | 2.731760e-01 | True | boxer | 5.677150e-02 | True |
| 1310 | 754120377874386944 | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | chow | 0.168909 | True | Norfolk_terrier | 1.291140e-01 | True | Pomeranian | 1.208220e-01 | True |
| 1311 | 754449512966619136 | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | beagle | 0.858513 | True | basset | 7.601190e-02 | True | English_foxhound | 1.624560e-02 | True |
| 1312 | 754482103782404096 | https://pbs.twimg.com/ext_tw_video_thumb/75448... | 1 | tub | 0.596796 | False | bathtub | 3.810980e-01 | False | shower_curtain | 1.762880e-02 | False |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | rotisserie | 0.471493 | False | cash_machine | 2.508370e-01 | False | sliding_door | 1.178720e-01 | False |
| 1314 | 754856583969079297 | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | golden_retriever | 0.872385 | True | Labrador_retriever | 9.996310e-02 | True | cocker_spaniel | 6.050830e-03 | True |
| 1315 | 754874841593970688 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 1316 | 755110668769038337 | https://pbs.twimg.com/ext_tw_video_thumb/75511... | 1 | Labrador_retriever | 0.708974 | True | golden_retriever | 1.143140e-01 | True | Great_Pyrenees | 6.581340e-02 | True |
| 1317 | 755206590534418437 | https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg | 1 | web_site | 0.906673 | False | printer | 8.600270e-03 | False | carton | 4.533190e-03 | False |
| 1318 | 755955933503782912 | https://pbs.twimg.com/ext_tw_video_thumb/75595... | 1 | Pekinese | 0.596882 | True | Maltese_dog | 1.764780e-01 | True | Great_Pyrenees | 2.677530e-02 | True |
| 1319 | 756275833623502848 | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | Airedale | 0.602957 | True | Irish_terrier | 8.698080e-02 | True | bloodhound | 8.627650e-02 | True |
| 1320 | 756288534030475264 | https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg | 3 | conch | 0.925621 | False | French_bulldog | 3.249220e-02 | True | tiger_cat | 6.679080e-03 | False |
| 1321 | 756303284449767430 | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | golden_retriever | 0.981652 | True | cocker_spaniel | 6.790300e-03 | True | Labrador_retriever | 4.324510e-03 | True |
| 1322 | 756526248105566208 | https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg | 1 | geyser | 0.991273 | False | volcano | 4.672510e-03 | False | fountain | 1.234030e-03 | False |
| 1323 | 756651752796094464 | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | Pembroke | 0.294808 | True | kelpie | 2.823010e-01 | True | Cardigan | 1.126010e-01 | True |
| 1324 | 756939218950160384 | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | golden_retriever | 0.790371 | True | cocker_spaniel | 1.302680e-01 | True | Labrador_retriever | 6.462870e-02 | True |
| 1325 | 756998049151549440 | https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg | 4 | golden_retriever | 0.678555 | True | Labrador_retriever | 7.263200e-02 | True | Border_terrier | 4.903300e-02 | True |
| 1326 | 757354760399941633 | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | Italian_greyhound | 0.914667 | True | whippet | 4.777370e-02 | True | ice_lolly | 1.547680e-02 | False |
| 1327 | 757393109802180609 | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | Labrador_retriever | 0.787125 | True | Chesapeake_Bay_retriever | 1.126760e-01 | True | Rottweiler | 4.803860e-02 | True |
| 1328 | 757400162377592832 | https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg | 1 | seat_belt | 0.523926 | False | golden_retriever | 8.780030e-02 | True | Tibetan_mastiff | 7.512670e-02 | True |
| 1329 | 757596066325864448 | https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg | 1 | doormat | 0.845256 | False | wallet | 9.571800e-02 | False | wool | 2.607190e-02 | False |
| 1330 | 757597904299253760 | https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg | 1 | doormat | 0.836106 | False | wallet | 5.662690e-02 | False | purse | 5.133350e-02 | False |
| 1331 | 757611664640446465 | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | bluetick | 0.829259 | True | beagle | 1.453580e-01 | True | Walker_hound | 1.959530e-02 | True |
| 1332 | 757725642876129280 | https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg | 2 | seat_belt | 0.425176 | False | Labrador_retriever | 1.281280e-01 | True | Siamese_cat | 9.124110e-02 | False |
| 1333 | 757729163776290825 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 1334 | 757741869644341248 | https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg | 1 | skunk | 0.609715 | False | Old_English_sheepdog | 1.288990e-01 | True | Siberian_husky | 1.907610e-02 | True |
| 1335 | 758041019896193024 | https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg | 1 | bookshop | 0.794272 | False | Cardigan | 5.126530e-02 | True | Bernese_mountain_dog | 2.659630e-02 | True |
| 1336 | 758355060040593408 | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | Pembroke | 0.987643 | True | Cardigan | 1.211210e-02 | True | Siamese_cat | 1.174770e-04 | False |
| 1337 | 758405701903519748 | https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg | 4 | Chesapeake_Bay_retriever | 0.702954 | True | laptop | 9.227750e-02 | False | notebook | 3.272680e-02 | False |
| 1338 | 758467244762497024 | https://pbs.twimg.com/ext_tw_video_thumb/75846... | 1 | Labrador_retriever | 0.436377 | True | Chihuahua | 1.139560e-01 | True | American_Staffordshire_terrier | 9.968910e-02 | True |
| 1339 | 758474966123810816 | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | Pembroke | 0.546145 | True | Cardigan | 2.442000e-01 | True | German_shepherd | 1.004290e-01 | True |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | Chesapeake_Bay_retriever | 0.848514 | True | Labrador_retriever | 1.100540e-01 | True | curly-coated_retriever | 2.520140e-02 | True |
| 1341 | 758828659922702336 | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | Chesapeake_Bay_retriever | 0.480048 | True | vizsla | 2.645220e-01 | True | Weimaraner | 1.218400e-01 | True |
| 1342 | 758854675097526272 | https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg | 4 | barrow | 0.974047 | False | Old_English_sheepdog | 2.379140e-02 | True | komondor | 1.246300e-03 | True |
| 1343 | 759047813560868866 | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | Labrador_retriever | 0.778546 | True | bathing_cap | 1.542540e-01 | False | golden_retriever | 2.497160e-02 | True |
| 1344 | 759099523532779520 | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | Shetland_sheepdog | 0.129034 | True | kelpie | 1.175080e-01 | True | Siberian_husky | 1.067080e-01 | True |
| 1345 | 759159934323924993 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 1346 | 759197388317847553 | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | kuvasz | 0.511341 | True | golden_retriever | 7.689910e-02 | True | white_wolf | 6.326940e-02 | False |
| 1347 | 759447681597108224 | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | kuvasz | 0.223148 | True | Bedlington_terrier | 2.207310e-01 | True | teddy | 1.813030e-01 | False |
| 1348 | 759557299618865152 | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | golden_retriever | 0.763333 | True | Chesapeake_Bay_retriever | 1.942510e-01 | True | Labrador_retriever | 1.222540e-02 | True |
| 1349 | 759566828574212096 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1350 | 759793422261743616 | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | golden_retriever | 0.985876 | True | Labrador_retriever | 1.947770e-03 | True | kuvasz | 1.751740e-03 | True |
| 1351 | 759846353224826880 | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | Sussex_spaniel | 0.355395 | True | vizsla | 1.410940e-01 | True | otterhound | 9.219820e-02 | True |
| 1352 | 759923798737051648 | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | Labrador_retriever | 0.324579 | True | seat_belt | 1.091680e-01 | False | pug | 1.024660e-01 | True |
| 1353 | 760190180481531904 | https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg | 1 | balloon | 0.917525 | False | confectionery | 4.932910e-02 | False | maraca | 1.764780e-02 | False |
| 1354 | 760252756032651264 | https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg | 1 | radio_telescope | 0.155279 | False | dam | 1.545150e-01 | False | crane | 9.804000e-02 | False |
| 1355 | 760290219849637889 | https://pbs.twimg.com/ext_tw_video_thumb/76028... | 1 | Old_English_sheepdog | 0.302200 | True | Lhasa | 2.588030e-01 | True | briard | 1.792000e-01 | True |
| 1356 | 760539183865880579 | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | Samoyed | 0.988013 | True | malamute | 4.518240e-03 | True | West_Highland_white_terrier | 1.189250e-03 | True |
| 1357 | 760641137271070720 | https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg | 1 | axolotl | 0.132695 | False | killer_whale | 1.311130e-01 | False | sea_lion | 6.965200e-02 | False |
| 1358 | 760656994973933572 | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | golden_retriever | 0.760546 | True | Labrador_retriever | 2.320790e-01 | True | redbone | 2.874170e-03 | True |
| 1359 | 760893934457552897 | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | Blenheim_spaniel | 0.113992 | True | cocker_spaniel | 1.057800e-01 | True | borzoi | 7.393450e-02 | True |
| 1360 | 761004547850530816 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1361 | 761227390836215808 | https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg | 1 | cougar | 0.306512 | False | French_bulldog | 2.808020e-01 | True | boxer | 5.452340e-02 | True |
| 1362 | 761292947749015552 | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | standard_poodle | 0.660893 | True | Samoyed | 3.148860e-01 | True | miniature_poodle | 8.833830e-03 | True |
| 1363 | 761334018830917632 | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | Norwegian_elkhound | 0.822936 | True | malinois | 8.615250e-02 | True | German_shepherd | 6.333290e-02 | True |
| 1364 | 761371037149827077 | https://pbs.twimg.com/tweet_video_thumb/CeBym7... | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1365 | 761599872357261312 | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | Gordon_setter | 0.240427 | True | Saluki | 2.242690e-01 | True | Doberman | 1.297300e-01 | True |
| 1366 | 761672994376806400 | https://pbs.twimg.com/ext_tw_video_thumb/76167... | 1 | gondola | 0.318851 | False | sea_lion | 3.065250e-01 | False | pool_table | 1.115650e-01 | False |
| 1367 | 761745352076779520 | https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg | 1 | paddle | 0.393118 | False | canoe | 1.780880e-01 | False | lakeside | 9.971260e-02 | False |
| 1368 | 761750502866649088 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 1369 | 761976711479193600 | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | Labrador_retriever | 0.475552 | True | Chesapeake_Bay_retriever | 8.289800e-02 | True | Staffordshire_bullterrier | 4.846400e-02 | True |
| 1370 | 762035686371364864 | https://pbs.twimg.com/ext_tw_video_thumb/76203... | 1 | home_theater | 0.063152 | False | cash_machine | 4.669210e-02 | False | theater_curtain | 4.627680e-02 | False |
| 1371 | 762316489655476224 | https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg | 1 | African_grey | 0.270468 | False | Madagascar_cat | 7.618650e-02 | False | television | 3.330580e-02 | False |
| 1372 | 762464539388485633 | https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg | 4 | chow | 0.999953 | True | Tibetan_mastiff | 2.335910e-05 | True | dhole | 3.010330e-06 | False |
| 1373 | 762471784394268675 | https://pbs.twimg.com/ext_tw_video_thumb/76247... | 1 | Samoyed | 0.540276 | True | standard_poodle | 2.798020e-01 | True | toy_poodle | 1.020580e-01 | True |
| 1374 | 762699858130116608 | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | kelpie | 0.519047 | True | German_shepherd | 2.960690e-01 | True | dingo | 6.100530e-02 | False |
| 1375 | 763103485927849985 | https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg | 2 | seat_belt | 0.685821 | False | ice_bear | 8.159720e-02 | False | chow | 3.908480e-02 | True |
| 1376 | 763183847194451968 | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | miniature_poodle | 0.354674 | True | toy_poodle | 3.386420e-01 | True | teddy | 1.558280e-01 | False |
| 1377 | 763837565564780549 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1378 | 764259802650378240 | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | German_shepherd | 0.973677 | True | malinois | 2.594970e-02 | True | kelpie | 1.915680e-04 | True |
| 1379 | 764857477905154048 | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | Bernese_mountain_dog | 0.792059 | True | Appenzeller | 1.550340e-01 | True | EntleBucher | 3.837380e-02 | True |
| 1380 | 765222098633691136 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1381 | 765371061932261376 | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | golden_retriever | 0.829456 | True | Labrador_retriever | 8.937090e-02 | True | kuvasz | 1.702750e-02 | True |
| 1382 | 765395769549590528 | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | Pembroke | 0.509491 | True | Cardigan | 3.304010e-01 | True | Shetland_sheepdog | 3.887490e-02 | True |
| 1383 | 765669560888528897 | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | beagle | 0.993333 | True | Walker_hound | 2.902190e-03 | True | basset | 2.415180e-03 | True |
| 1384 | 765719909049503744 | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | golden_retriever | 0.969518 | True | Labrador_retriever | 2.169610e-02 | True | Border_terrier | 2.074550e-03 | True |
| 1385 | 766008592277377025 | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | Welsh_springer_spaniel | 0.728153 | True | basset | 1.038420e-01 | True | Brittany_spaniel | 6.241430e-02 | True |
| 1386 | 766069199026450432 | https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg | 1 | redbone | 0.484855 | True | beagle | 4.375270e-01 | True | basset | 1.058540e-02 | True |
| 1387 | 766078092750233600 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1388 | 766313316352462849 | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | toy_poodle | 0.966896 | True | miniature_poodle | 1.642430e-02 | True | cocker_spaniel | 1.022710e-02 | True |
| 1389 | 766423258543644672 | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | keeshond | 0.995823 | True | Pomeranian | 3.897210e-03 | True | Norwegian_elkhound | 2.531090e-04 | True |
| 1390 | 766693177336135680 | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | Doberman | 0.948355 | True | vizsla | 1.503200e-02 | True | Rhodesian_ridgeback | 9.630840e-03 | True |
| 1391 | 766793450729734144 | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | beagle | 0.451697 | True | basset | 1.975130e-01 | True | bloodhound | 7.269860e-02 | True |
| 1392 | 767122157629476866 | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | toy_poodle | 0.873841 | True | miniature_poodle | 5.919180e-02 | True | Irish_terrier | 3.530600e-02 | True |
| 1393 | 767191397493538821 | https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg | 1 | patio | 0.708665 | False | boathouse | 1.100560e-01 | False | pier | 3.953230e-02 | False |
| 1394 | 767500508068192258 | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | chow | 0.483228 | True | golden_retriever | 1.650630e-01 | True | Norfolk_terrier | 6.017290e-02 | True |
| 1395 | 767754930266464257 | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | vizsla | 0.307794 | True | fountain | 1.421850e-01 | False | Chesapeake_Bay_retriever | 1.139030e-01 | True |
| 1396 | 767884188863397888 | https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg | 3 | coral_reef | 0.327740 | False | cliff | 1.571820e-01 | False | lakeside | 4.880960e-02 | False |
| 1397 | 768193404517830656 | https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg | 1 | lion | 0.396984 | False | ram | 3.008510e-01 | False | cheetah | 9.447400e-02 | False |
| 1398 | 768473857036525572 | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | Labrador_retriever | 0.739170 | True | Chesapeake_Bay_retriever | 2.464880e-01 | True | kelpie | 6.892340e-03 | True |
| 1399 | 768596291618299904 | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | Great_Pyrenees | 0.729745 | True | golden_retriever | 2.379610e-01 | True | Labrador_retriever | 2.090330e-02 | True |
| 1400 | 768609597686943744 | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | basenji | 0.183283 | True | Italian_greyhound | 1.360120e-01 | True | whippet | 6.012990e-02 | True |
| 1401 | 768855141948723200 | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | chow | 0.720219 | True | Brabancon_griffon | 5.836530e-02 | True | Rottweiler | 5.511350e-02 | True |
| 1402 | 768970937022709760 | https://pbs.twimg.com/ext_tw_video_thumb/76896... | 1 | Pomeranian | 0.182358 | True | golden_retriever | 1.106580e-01 | True | mousetrap | 8.639890e-02 | False |
| 1403 | 769212283578875904 | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | golden_retriever | 0.166538 | True | Pekinese | 1.482150e-01 | True | cocker_spaniel | 8.273510e-02 | True |
| 1404 | 769695466921623552 | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | pug | 0.407117 | True | muzzle | 1.656380e-01 | False | kuvasz | 4.583720e-02 | True |
| 1405 | 769940425801170949 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1406 | 770069151037685760 | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | Boston_bull | 0.414965 | True | American_Staffordshire_terrier | 2.869850e-01 | True | Staffordshire_bullterrier | 1.149700e-01 | True |
| 1407 | 770093767776997377 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1408 | 770293558247038976 | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | Italian_greyhound | 0.931668 | True | Mexican_hairless | 3.889620e-02 | True | whippet | 1.315140e-02 | True |
| 1409 | 770414278348247044 | https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg | 1 | maillot | 0.580528 | False | maillot | 8.144890e-02 | False | golden_retriever | 5.356960e-02 | True |
| 1410 | 770655142660169732 | https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg | 1 | Madagascar_cat | 0.494803 | False | skunk | 1.611840e-01 | False | paper_towel | 9.157150e-02 | False |
| 1411 | 770772759874076672 | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | chow | 0.979515 | True | golden_retriever | 1.021870e-02 | True | Pomeranian | 4.606040e-03 | True |
| 1412 | 770787852854652928 | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | Bernese_mountain_dog | 0.787812 | True | Greater_Swiss_Mountain_dog | 1.639460e-01 | True | EntleBucher | 2.029340e-02 | True |
| 1413 | 771004394259247104 | https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg | 1 | home_theater | 0.414338 | False | iPod | 5.274130e-02 | False | pop_bottle | 4.882060e-02 | False |
| 1414 | 771014301343748096 | https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg | 1 | meerkat | 0.202335 | False | doormat | 1.117900e-01 | False | macaque | 8.892530e-02 | False |
| 1415 | 771102124360998913 | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | Labrador_retriever | 0.568789 | True | pug | 1.799180e-01 | True | Staffordshire_bullterrier | 3.443740e-02 | True |
| 1416 | 771136648247640064 | https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg | 1 | bathtub | 0.368660 | False | golden_retriever | 2.974020e-01 | True | tub | 2.017110e-01 | False |
| 1417 | 771171053431250945 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 1418 | 771380798096281600 | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | collie | 0.503728 | True | Border_collie | 4.509440e-01 | True | English_springer | 1.269280e-02 | True |
| 1419 | 771500966810099713 | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | Labrador_retriever | 0.833952 | True | golden_retriever | 1.032230e-01 | True | soccer_ball | 1.209390e-02 | False |
| 1420 | 771770456517009408 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1421 | 772102971039580160 | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | Pembroke | 0.541780 | True | Cardigan | 2.605040e-01 | True | Shetland_sheepdog | 6.370310e-02 | True |
| 1422 | 772114945936949249 | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | Chihuahua | 0.803293 | True | toy_terrier | 5.298000e-02 | True | Italian_greyhound | 3.723880e-02 | True |
| 1423 | 772117678702071809 | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | Labrador_retriever | 0.217821 | True | beagle | 1.576770e-01 | True | golden_retriever | 1.277260e-01 | True |
| 1424 | 772152991789019136 | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | golden_retriever | 0.275318 | True | Irish_setter | 1.009880e-01 | True | vizsla | 7.352490e-02 | True |
| 1425 | 772193107915964416 | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | Pembroke | 0.367945 | True | Chihuahua | 2.235220e-01 | True | Pekinese | 1.648710e-01 | True |
| 1426 | 772581559778025472 | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | Newfoundland | 0.574345 | True | Border_collie | 1.283520e-01 | True | Saint_Bernard | 5.947550e-02 | True |
| 1427 | 772615324260794368 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1428 | 772826264096874500 | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | basset | 0.915351 | True | Walker_hound | 7.241590e-02 | True | beagle | 8.228940e-03 | True |
| 1429 | 772877495989305348 | https://pbs.twimg.com/ext_tw_video_thumb/77287... | 1 | tabby | 0.218303 | False | Norwegian_elkhound | 1.385230e-01 | True | wombat | 7.421720e-02 | False |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | Blenheim_spaniel | 0.427766 | True | Shih-Tzu | 2.192560e-01 | True | Welsh_springer_spaniel | 1.446140e-01 | True |
| 1431 | 773247561583001600 | https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg | 1 | seat_belt | 0.713588 | False | miniature_pinscher | 8.336880e-02 | True | Brabancon_griffon | 7.569610e-02 | True |
| 1432 | 773308824254029826 | https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg | 1 | shopping_cart | 0.572349 | False | Labrador_retriever | 1.514060e-01 | True | shopping_basket | 1.071020e-01 | False |
| 1433 | 773547596996571136 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | Old_English_sheepdog | 0.969311 | True | Maltese_dog | 1.324300e-02 | True | soft-coated_wheaten_terrier | 4.857310e-03 | True |
| 1435 | 773704687002451968 | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | silky_terrier | 0.324251 | True | Yorkshire_terrier | 1.812100e-01 | True | Airedale | 1.334360e-01 | True |
| 1436 | 773922284943896577 | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | Pomeranian | 0.554331 | True | Samoyed | 4.321580e-01 | True | chow | 3.199420e-03 | True |
| 1437 | 773985732834758656 | https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg | 4 | giant_panda | 0.451149 | False | fur_coat | 1.480010e-01 | False | pug | 1.095700e-01 | True |
| 1438 | 774314403806253056 | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | Eskimo_dog | 0.596045 | True | Siberian_husky | 2.230670e-01 | True | Saluki | 3.632470e-02 | True |
| 1439 | 774639387460112384 | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | Walker_hound | 0.627593 | True | basenji | 1.287050e-01 | True | Ibizan_hound | 1.262820e-01 | True |
| 1440 | 774757898236878852 | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | toy_poodle | 0.719941 | True | miniature_poodle | 2.515460e-01 | True | Lakeland_terrier | 7.008380e-03 | True |
| 1441 | 775085132600442880 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1442 | 775364825476165632 | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | beagle | 0.571229 | True | Chihuahua | 1.752570e-01 | True | Pembroke | 3.430630e-02 | True |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 2.139020e-03 | False | menu | 2.115360e-03 | False |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 2.947280e-02 | False | rhinoceros_beetle | 2.780610e-02 | False |
| 1445 | 775842724423557120 | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | chow | 0.520022 | True | bath_towel | 2.877470e-02 | False | French_bulldog | 2.599010e-02 | True |
| 1446 | 775898661951791106 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1447 | 776088319444877312 | https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg | 3 | web_site | 0.999916 | False | pug | 7.657020e-05 | True | menu | 2.164680e-06 | False |
| 1448 | 776113305656188928 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | Rottweiler | 0.502228 | True | black-and-tan_coonhound | 1.545940e-01 | True | bloodhound | 1.351760e-01 | True |
| 1450 | 776218204058357768 | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | Samoyed | 0.940326 | True | Pomeranian | 5.552720e-02 | True | keeshond | 2.226350e-03 | True |
| 1451 | 776477788987613185 | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | Labrador_retriever | 0.884839 | True | Chesapeake_Bay_retriever | 5.756510e-02 | True | paintbrush | 5.766080e-03 | False |
| 1452 | 776813020089548800 | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | toy_poodle | 0.516610 | True | miniature_poodle | 2.550330e-01 | True | standard_poodle | 1.689890e-01 | True |
| 1453 | 776819012571455488 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 1454 | 777189768882946048 | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | Chihuahua | 0.988412 | True | Mexican_hairless | 4.177220e-03 | True | hog | 1.506580e-03 | False |
| 1455 | 777621514455814149 | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | chow | 0.999823 | True | Norwich_terrier | 5.644850e-05 | True | Pomeranian | 2.768060e-05 | True |
| 1456 | 777641927919427584 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1457 | 777684233540206592 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1458 | 777885040357281792 | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | Afghan_hound | 0.123529 | True | basset | 1.196820e-01 | True | Siberian_husky | 1.087090e-01 | True |
| 1459 | 778027034220126208 | https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg | 1 | clumber | 0.946718 | True | cocker_spaniel | 1.594990e-02 | True | Lhasa | 6.519110e-03 | True |
| 1460 | 778039087836069888 | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | German_shepherd | 0.717776 | True | malinois | 1.111750e-01 | True | Norwegian_elkhound | 5.880240e-02 | True |
| 1461 | 778286810187399168 | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | Boston_bull | 0.322070 | True | pug | 2.299030e-01 | True | muzzle | 1.014200e-01 | False |
| 1462 | 778383385161035776 | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | collie | 0.345266 | True | borzoi | 3.128230e-01 | True | Border_collie | 2.130110e-01 | True |
| 1463 | 778396591732486144 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 1464 | 778408200802557953 | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | Pembroke | 0.848362 | True | Cardigan | 1.081240e-01 | True | beagle | 1.194170e-02 | True |
| 1465 | 778624900596654080 | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | Airedale | 0.786089 | True | Irish_terrier | 1.214880e-01 | True | Lakeland_terrier | 1.460310e-02 | True |
| 1466 | 778650543019483137 | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | German_shepherd | 0.515699 | True | malinois | 3.002920e-01 | True | kelpie | 8.702230e-02 | True |
| 1467 | 778748913645780993 | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | Staffordshire_bullterrier | 0.351434 | True | boxer | 2.014780e-01 | True | American_Staffordshire_terrier | 1.428380e-01 | True |
| 1468 | 778990705243029504 | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | cocker_spaniel | 0.715351 | True | Labrador_retriever | 2.070560e-01 | True | Chihuahua | 2.851940e-02 | True |
| 1469 | 779056095788752897 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | toy_poodle | 0.431080 | True | soft-coated_wheaten_terrier | 6.036490e-02 | True | cocker_spaniel | 5.984540e-02 | True |
| 1471 | 779377524342161408 | https://pbs.twimg.com/ext_tw_video_thumb/77937... | 1 | sundial | 0.170921 | False | cash_machine | 6.035860e-02 | False | maze | 5.498140e-02 | False |
| 1472 | 779834332596887552 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1473 | 780192070812196864 | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | vizsla | 0.144012 | True | mongoose | 9.147360e-02 | False | hatchet | 7.354470e-02 | False |
| 1474 | 780459368902959104 | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | Great_Dane | 0.382491 | True | German_shepherd | 3.120260e-01 | True | bull_mastiff | 3.327190e-02 | True |
| 1475 | 780476555013349377 | https://pbs.twimg.com/tweet_video_thumb/CtTFZZ... | 1 | pug | 0.919255 | True | French_bulldog | 3.235030e-02 | True | bull_mastiff | 2.846790e-02 | True |
| 1476 | 780496263422808064 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1477 | 780543529827336192 | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | golden_retriever | 0.628312 | True | Labrador_retriever | 3.173650e-01 | True | Tibetan_mastiff | 1.226010e-02 | True |
| 1478 | 780601303617732608 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1479 | 780800785462489090 | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | Siberian_husky | 0.951963 | True | Eskimo_dog | 3.534610e-02 | True | Pembroke | 8.861940e-03 | True |
| 1480 | 780858289093574656 | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | Chesapeake_Bay_retriever | 0.488555 | True | Sussex_spaniel | 2.716550e-01 | True | kelpie | 1.069130e-01 | True |
| 1481 | 780931614150983680 | https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg | 1 | padlock | 0.731564 | False | necklace | 6.546160e-02 | False | chain | 3.646910e-02 | False |
| 1482 | 781163403222056960 | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | Shetland_sheepdog | 0.973841 | True | collie | 2.518760e-02 | True | Border_collie | 2.973110e-04 | True |
| 1483 | 781251288990355457 | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | Mexican_hairless | 0.887771 | True | Italian_greyhound | 3.066640e-02 | True | seat_belt | 2.672980e-02 | False |
| 1484 | 781524693396357120 | https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg | 1 | tennis_ball | 0.994712 | False | Chesapeake_Bay_retriever | 3.522500e-03 | True | Labrador_retriever | 9.214390e-04 | True |
| 1485 | 781661882474196992 | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | Pembroke | 0.438087 | True | golden_retriever | 2.269540e-01 | True | collie | 7.065160e-02 | True |
| 1486 | 781955203444699136 | https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg | 1 | pool_table | 0.179568 | False | dining_table | 1.543960e-01 | False | microwave | 3.369050e-02 | False |
| 1487 | 782021823840026624 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | briard | 0.504427 | True | soft-coated_wheaten_terrier | 3.906780e-01 | True | Lhasa | 3.459550e-02 | True |
| 1489 | 782598640137187329 | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | malamute | 0.840871 | True | Tibetan_mastiff | 1.405160e-01 | True | Eskimo_dog | 1.201160e-02 | True |
| 1490 | 782722598790725632 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1491 | 782747134529531904 | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | golden_retriever | 0.560699 | True | otterhound | 1.994820e-01 | True | clumber | 4.068180e-02 | True |
| 1492 | 782969140009107456 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1493 | 783085703974514689 | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | Chesapeake_Bay_retriever | 0.240602 | True | Airedale | 1.640880e-01 | True | boxer | 1.345060e-01 | True |
| 1494 | 783334639985389568 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1495 | 783347506784731136 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 1496 | 783391753726550016 | https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg | 4 | Norwegian_elkhound | 0.877130 | True | cairn | 8.624060e-02 | True | keeshond | 1.101910e-02 | True |
| 1497 | 783466772167098368 | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | Chihuahua | 0.789000 | True | miniature_pinscher | 1.159160e-01 | True | toy_terrier | 3.629390e-02 | True |
| 1498 | 783695101801398276 | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | chow | 0.314265 | True | golden_retriever | 3.004350e-01 | True | Australian_terrier | 4.948690e-02 | True |
| 1499 | 783821107061198850 | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | Lakeland_terrier | 0.265659 | True | golden_retriever | 1.964140e-01 | True | standard_poodle | 1.335340e-01 | True |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 1.362450e-01 | False | three-toed_sloth | 1.174640e-01 | False |
| 1501 | 784431430411685888 | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | miniature_poodle | 0.744819 | True | toy_poodle | 2.431920e-01 | True | standard_poodle | 1.092020e-02 | True |
| 1502 | 784517518371221505 | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | malamute | 0.757764 | True | Eskimo_dog | 1.512480e-01 | True | Siberian_husky | 8.484020e-02 | True |
| 1503 | 784826020293709826 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1504 | 785170936622350336 | https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg | 2 | seat_belt | 0.891193 | False | Eskimo_dog | 2.749440e-02 | True | Samoyed | 1.953030e-02 | True |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | teddy | 0.674893 | False | cradle | 5.673960e-02 | False | chow | 5.613700e-02 | True |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | miniature_pinscher | 0.436023 | True | black-and-tan_coonhound | 2.580490e-01 | True | Rottweiler | 1.452310e-01 | True |
| 1507 | 785639753186217984 | https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg | 1 | porcupine | 0.978042 | False | sea_urchin | 6.106300e-03 | False | echidna | 5.441970e-03 | False |
| 1508 | 785872687017132033 | https://pbs.twimg.com/ext_tw_video_thumb/78587... | 1 | Great_Pyrenees | 0.392108 | True | golden_retriever | 1.983580e-01 | True | Pekinese | 1.433280e-01 | True |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | teddy | 0.972070 | False | toy_poodle | 8.492620e-03 | True | chow | 2.882710e-03 | True |
| 1510 | 786036967502913536 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1511 | 786233965241827333 | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | Labrador_retriever | 0.478193 | True | schipperke | 2.248170e-01 | True | Staffordshire_bullterrier | 7.739560e-02 | True |
| 1512 | 786363235746385920 | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | golden_retriever | 0.929266 | True | Labrador_retriever | 6.286670e-02 | True | Saluki | 2.156690e-03 | True |
| 1513 | 786595970293370880 | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | Pembroke | 0.709512 | True | Cardigan | 2.871780e-01 | True | chow | 5.701760e-04 | True |
| 1514 | 786664955043049472 | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | Leonberg | 0.512034 | True | keeshond | 4.648160e-01 | True | Pomeranian | 7.812490e-03 | True |
| 1515 | 786709082849828864 | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | Pomeranian | 0.467321 | True | Persian_cat | 1.229780e-01 | False | chow | 1.026540e-01 | True |
| 1516 | 786963064373534720 | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | golden_retriever | 0.915303 | True | Saluki | 4.621260e-02 | True | Labrador_retriever | 3.750410e-02 | True |
| 1517 | 787322443945877504 | https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg | 1 | seat_belt | 0.747739 | False | golden_retriever | 1.057030e-01 | True | dingo | 1.725680e-02 | False |
| 1518 | 787397959788929025 | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | Chihuahua | 0.900483 | True | toy_terrier | 2.108450e-02 | True | miniature_pinscher | 1.948400e-02 | True |
| 1519 | 787717603741622272 | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | German_shepherd | 0.992339 | True | malinois | 4.920390e-03 | True | kelpie | 8.528020e-04 | True |
| 1520 | 787810552592695296 | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | pug | 0.362835 | True | French_bulldog | 2.218640e-01 | True | English_setter | 8.041830e-02 | True |
| 1521 | 788039637453406209 | https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg | 1 | beach_wagon | 0.362925 | False | minivan | 3.047590e-01 | False | limousine | 1.017020e-01 | False |
| 1522 | 788070120937619456 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1523 | 788150585577050112 | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | chow | 0.814145 | True | Pomeranian | 1.127040e-01 | True | Chihuahua | 1.588320e-02 | True |
| 1524 | 788178268662984705 | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | Samoyed | 0.735480 | True | Pomeranian | 7.510100e-02 | True | Arctic_fox | 3.607190e-02 | False |
| 1525 | 788412144018661376 | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | golden_retriever | 0.805238 | True | Labrador_retriever | 1.137980e-01 | True | Brittany_spaniel | 3.855870e-02 | True |
| 1526 | 788765914992902144 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1527 | 788908386943430656 | https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg | 1 | remote_control | 0.881538 | False | oscilloscope | 3.551310e-02 | False | golden_retriever | 3.408970e-02 | True |
| 1528 | 789137962068021249 | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | Chihuahua | 0.746135 | True | Pekinese | 7.038340e-02 | True | Pembroke | 4.923690e-02 | True |
| 1529 | 789268448748703744 | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | malamute | 0.812860 | True | Siberian_husky | 1.208530e-01 | True | Eskimo_dog | 2.426930e-02 | True |
| 1530 | 789530877013393408 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1531 | 789599242079838210 | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | Chesapeake_Bay_retriever | 0.878822 | True | beagle | 1.857030e-02 | True | Labrador_retriever | 1.749850e-02 | True |
| 1532 | 789628658055020548 | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | chow | 0.260702 | True | cougar | 8.814270e-02 | False | Pomeranian | 7.988310e-02 | True |
| 1533 | 789986466051088384 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1535 | 790337589677002753 | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | Pembroke | 0.658808 | True | Cardigan | 1.530960e-01 | True | toy_terrier | 1.022990e-01 | True |
| 1536 | 790581949425475584 | https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg | 2 | refrigerator | 0.998886 | False | malinois | 1.529990e-04 | True | kelpie | 1.308170e-04 | True |
| 1537 | 790698755171364864 | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | Bernese_mountain_dog | 0.996541 | True | EntleBucher | 1.056980e-03 | True | Appenzeller | 9.979070e-04 | True |
| 1538 | 790723298204217344 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1539 | 790946055508652032 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | cocker_spaniel | 0.349195 | True | flat-coated_retriever | 3.095350e-01 | True | Newfoundland | 1.047680e-01 | True |
| 1541 | 791026214425268224 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1542 | 791312159183634433 | https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg | 4 | miniature_pinscher | 0.892925 | True | toy_terrier | 9.552380e-02 | True | Doberman | 3.544260e-03 | True |
| 1543 | 791406955684368384 | https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg | 4 | Pembroke | 0.972629 | True | Cardigan | 2.702590e-02 | True | basenji | 1.525020e-04 | True |
| 1544 | 791672322847637504 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1545 | 792050063153438720 | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | komondor | 0.942856 | True | swab | 5.271520e-02 | False | Tibetan_terrier | 2.743000e-03 | True |
| 1546 | 792394556390137856 | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | cocker_spaniel | 0.746387 | True | Irish_setter | 9.161510e-02 | True | miniature_poodle | 6.107820e-02 | True |
| 1547 | 792773781206999040 | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | Yorkshire_terrier | 0.912804 | True | silky_terrier | 6.782250e-02 | True | Australian_terrier | 4.450690e-03 | True |
| 1548 | 792883833364439040 | https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg | 3 | jack-o'-lantern | 0.999306 | False | basketball | 1.131290e-04 | False | standard_poodle | 8.314510e-05 | True |
| 1549 | 792913359805018113 | https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg | 4 | web_site | 0.226716 | False | lighter | 8.194140e-02 | False | switch | 3.900860e-02 | False |
| 1550 | 793120401413079041 | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | Labrador_retriever | 0.724944 | True | golden_retriever | 1.697440e-01 | True | kuvasz | 3.550230e-02 | True |
| 1551 | 793135492858580992 | https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg | 1 | bakery | 0.737041 | False | saltshaker | 5.239590e-02 | False | teddy | 4.659260e-02 | False |
| 1552 | 793150605191548928 | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | Italian_greyhound | 0.193869 | True | bluetick | 1.603800e-01 | True | standard_poodle | 1.259820e-01 | True |
| 1553 | 793165685325201412 | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | golden_retriever | 0.946224 | True | Labrador_retriever | 3.647660e-02 | True | doormat | 2.352850e-03 | False |
| 1554 | 793180763617361921 | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | Lakeland_terrier | 0.266824 | True | Irish_terrier | 2.187830e-01 | True | Airedale | 1.329600e-01 | True |
| 1555 | 793195938047070209 | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | Labrador_retriever | 0.654762 | True | golden_retriever | 7.410000e-02 | True | Chihuahua | 4.233930e-02 | True |
| 1556 | 793210959003287553 | https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg | 1 | doormat | 0.874431 | False | French_bulldog | 1.875910e-02 | True | Boston_bull | 1.513440e-02 | True |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | wire-haired_fox_terrier | 0.456047 | True | Lakeland_terrier | 2.734280e-01 | True | English_springer | 8.364330e-02 | True |
| 1558 | 793241302385262592 | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | golden_retriever | 0.559308 | True | Labrador_retriever | 3.902220e-01 | True | cocker_spaniel | 3.631570e-02 | True |
| 1559 | 793256262322548741 | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | basset | 0.207622 | True | Walker_hound | 6.057420e-02 | True | beagle | 4.122050e-02 | True |
| 1560 | 793271401113350145 | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | Siberian_husky | 0.231695 | True | Eskimo_dog | 2.067490e-01 | True | Pembroke | 7.011950e-02 | True |
| 1561 | 793286476301799424 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1562 | 793500921481273345 | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | golden_retriever | 0.326122 | True | Labrador_retriever | 2.199040e-01 | True | Chesapeake_Bay_retriever | 1.633660e-01 | True |
| 1563 | 793601777308463104 | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | miniature_pinscher | 0.538981 | True | Chihuahua | 2.178300e-01 | True | toy_terrier | 8.914870e-02 | True |
| 1564 | 793614319594401792 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1565 | 793845145112371200 | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | Old_English_sheepdog | 0.765277 | True | Bedlington_terrier | 1.127530e-01 | True | Kerry_blue_terrier | 4.766170e-02 | True |
| 1566 | 793962221541933056 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1567 | 794205286408003585 | https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg | 3 | pedestal | 0.662660 | False | fountain | 2.948270e-01 | False | brass | 2.037110e-02 | False |
| 1568 | 794332329137291264 | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | Samoyed | 0.988307 | True | malamute | 4.906350e-03 | True | Great_Pyrenees | 2.901290e-03 | True |
| 1569 | 794355576146903043 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | teddy | 0.569566 | False | bath_towel | 1.737450e-01 | False | toy_poodle | 3.766180e-02 | True |
| 1571 | 794983741416415232 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1572 | 795076730285391872 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1573 | 795400264262053889 | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | golden_retriever | 0.925494 | True | Labrador_retriever | 5.924080e-02 | True | tennis_ball | 4.495340e-03 | False |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/79546... | 1 | golden_retriever | 0.193082 | True | Chesapeake_Bay_retriever | 1.579270e-01 | True | soft-coated_wheaten_terrier | 1.246840e-01 | True |
| 1575 | 796031486298386433 | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | golden_retriever | 0.893775 | True | Labrador_retriever | 7.013980e-02 | True | doormat | 8.418530e-03 | False |
| 1576 | 796080075804475393 | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | chow | 0.973846 | True | Tibetan_mastiff | 1.410990e-02 | True | gibbon | 2.358320e-03 | False |
| 1577 | 796116448414461957 | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | Cardigan | 0.700182 | True | Pembroke | 2.607380e-01 | True | papillon | 1.710990e-02 | True |
| 1578 | 796149749086875649 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1579 | 796177847564038144 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1580 | 796387464403357696 | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | Pekinese | 0.461164 | True | Pomeranian | 2.886500e-01 | True | Siamese_cat | 5.242300e-02 | False |
| 1581 | 796484825502875648 | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | cocker_spaniel | 0.116924 | True | seat_belt | 1.075110e-01 | False | Australian_terrier | 9.984340e-02 | True |
| 1582 | 796759840936919040 | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | American_Staffordshire_terrier | 0.463996 | True | Staffordshire_bullterrier | 1.555660e-01 | True | Weimaraner | 1.375870e-01 | True |
| 1583 | 796865951799083009 | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | Cardigan | 0.839129 | True | Boston_bull | 8.069850e-02 | True | Pembroke | 3.450500e-02 | True |
| 1584 | 797236660651966464 | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | collie | 0.767005 | True | Border_collie | 1.008440e-01 | True | kelpie | 4.836810e-02 | True |
| 1585 | 797545162159308800 | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | Pembroke | 0.954089 | True | Cardigan | 3.364390e-02 | True | papillon | 9.735660e-03 | True |
| 1586 | 797971864723324932 | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | American_Staffordshire_terrier | 0.489845 | True | Chihuahua | 3.057600e-01 | True | Staffordshire_bullterrier | 7.279910e-02 | True |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | Pekinese | 0.524583 | True | Shih-Tzu | 1.029310e-01 | True | Pomeranian | 9.789310e-02 | True |
| 1588 | 798340744599797760 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1589 | 798628517273620480 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 1590 | 798644042770751489 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 1591 | 798665375516884993 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 1592 | 798673117451325440 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 1593 | 798694562394996736 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 1594 | 798697898615730177 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1595 | 798925684722855936 | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | West_Highland_white_terrier | 0.539463 | True | cairn | 1.848970e-01 | True | Norfolk_terrier | 1.630240e-01 | True |
| 1596 | 798933969379225600 | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | Siberian_husky | 0.703224 | True | Eskimo_dog | 2.293510e-01 | True | malamute | 4.435080e-02 | True |
| 1597 | 799063482566066176 | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | Norfolk_terrier | 0.334436 | True | Norwich_terrier | 2.315730e-01 | True | Australian_terrier | 2.142030e-01 | True |
| 1598 | 799297110730567681 | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | malamute | 0.985028 | True | Siberian_husky | 5.834420e-03 | True | Eskimo_dog | 5.442810e-03 | True |
| 1599 | 799422933579902976 | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | miniature_pinscher | 0.583630 | True | redbone | 2.760950e-01 | True | toy_terrier | 1.855010e-02 | True |
| 1600 | 799757965289017345 | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | Border_collie | 0.442534 | True | collie | 2.886840e-01 | True | Shetland_sheepdog | 1.963990e-01 | True |
| 1601 | 799774291445383169 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1602 | 800018252395122689 | https://pbs.twimg.com/ext_tw_video_thumb/80001... | 1 | vacuum | 0.289485 | False | punching_bag | 2.432970e-01 | False | barbell | 1.436300e-01 | False |
| 1603 | 800141422401830912 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1604 | 800388270626521089 | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | golden_retriever | 0.359860 | True | Pembroke | 1.942070e-01 | True | collie | 1.546030e-01 | True |
| 1605 | 800443802682937345 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | teddy | 0.311928 | False | ice_bear | 1.846570e-01 | False | Christmas_stocking | 1.732290e-01 | False |
| 1607 | 800513324630806528 | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | Pembroke | 0.828904 | True | Cardigan | 1.673730e-01 | True | Chihuahua | 7.659340e-04 | True |
| 1608 | 800751577355128832 | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | cocker_spaniel | 0.771984 | True | miniature_poodle | 7.665280e-02 | True | toy_poodle | 3.961830e-02 | True |
| 1609 | 801115127852503040 | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | dalmatian | 0.823356 | True | English_setter | 9.460190e-02 | True | bluetick | 2.195340e-02 | True |
| 1610 | 801167903437357056 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1611 | 801285448605831168 | https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg | 1 | minivan | 0.789376 | False | beach_wagon | 8.112500e-02 | False | convertible | 6.453380e-02 | False |
| 1612 | 801538201127157760 | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | Pembroke | 0.550506 | True | Cardigan | 3.066120e-01 | True | Shetland_sheepdog | 5.423000e-02 | True |
| 1613 | 801958328846974976 | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | Staffordshire_bullterrier | 0.327887 | True | American_Staffordshire_terrier | 2.719160e-01 | True | Labrador_retriever | 2.476190e-01 | True |
| 1614 | 802239329049477120 | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | Eskimo_dog | 0.482498 | True | Siberian_husky | 3.357740e-01 | True | malamute | 1.345890e-01 | True |
| 1615 | 802247111496568832 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1616 | 802265048156610565 | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | Labrador_retriever | 0.897162 | True | beagle | 1.689480e-02 | True | Rhodesian_ridgeback | 1.206060e-02 | True |
| 1617 | 802323869084381190 | https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg | 4 | home_theater | 0.765069 | False | television | 2.035780e-01 | False | entertainment_center | 1.864350e-02 | False |
| 1618 | 802572683846291456 | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | golden_retriever | 0.610171 | True | Labrador_retriever | 1.732520e-01 | True | cocker_spaniel | 1.632570e-01 | True |
| 1619 | 802624713319034886 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1620 | 802952499103731712 | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | chow | 0.944032 | True | golden_retriever | 1.723980e-02 | True | Pomeranian | 1.208480e-02 | True |
| 1621 | 803276597545603072 | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | Pembroke | 0.457086 | True | chow | 3.078010e-01 | True | golden_retriever | 4.998820e-02 | True |
| 1622 | 803380650405482500 | https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg | 1 | bookcase | 0.890601 | False | entertainment_center | 1.928740e-02 | False | file | 9.489540e-03 | False |
| 1623 | 803638050916102144 | https://pbs.twimg.com/ext_tw_video_thumb/80363... | 1 | Labrador_retriever | 0.372776 | True | golden_retriever | 3.436660e-01 | True | Great_Pyrenees | 6.724230e-02 | True |
| 1624 | 803692223237865472 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 1625 | 803773340896923648 | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | miniature_pinscher | 0.817066 | True | redbone | 5.970650e-02 | True | Irish_terrier | 3.419520e-02 | True |
| 1626 | 804026241225523202 | https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg | 1 | web_site | 0.492709 | False | envelope | 5.056580e-02 | False | guillotine | 1.529690e-02 | False |
| 1627 | 804413760345620481 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1628 | 804738756058218496 | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | Tibetan_mastiff | 0.915790 | True | German_shepherd | 6.247970e-02 | True | Leonberg | 8.297490e-03 | True |
| 1629 | 805207613751304193 | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | Pembroke | 0.244705 | True | Rhodesian_ridgeback | 1.804610e-01 | True | Cardigan | 9.466370e-02 | True |
| 1630 | 805487436403003392 | https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg | 3 | shield | 0.587830 | False | barrel | 9.017990e-02 | False | sundial | 6.919860e-02 | False |
| 1631 | 805520635690676224 | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | malinois | 0.643147 | True | German_shepherd | 1.866420e-01 | True | Border_terrier | 1.093450e-01 | True |
| 1632 | 805826884734976000 | https://pbs.twimg.com/ext_tw_video_thumb/80582... | 1 | Siberian_husky | 0.248926 | True | American_Staffordshire_terrier | 9.831330e-02 | True | Eskimo_dog | 8.018850e-02 | True |
| 1633 | 805932879469572096 | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | Norwegian_elkhound | 0.657967 | True | keeshond | 3.191360e-01 | True | Leonberg | 7.946740e-03 | True |
| 1634 | 805958939288408065 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1635 | 806219024703037440 | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | chow | 0.835102 | True | Pomeranian | 4.078290e-02 | True | Eskimo_dog | 2.127450e-02 | True |
| 1636 | 806242860592926720 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1637 | 806542213899489280 | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | vizsla | 0.938617 | True | Brittany_spaniel | 3.673890e-02 | True | Chesapeake_Bay_retriever | 3.971490e-03 | True |
| 1638 | 806629075125202948 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1639 | 807010152071229440 | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | golden_retriever | 0.610807 | True | Irish_setter | 2.136420e-01 | True | Welsh_springer_spaniel | 3.188660e-02 | True |
| 1640 | 807059379405148160 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1641 | 807106840509214720 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1642 | 807621403335917568 | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | golden_retriever | 0.873233 | True | cocker_spaniel | 3.369330e-02 | True | chow | 2.040840e-02 | True |
| 1643 | 808001312164028416 | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | Labrador_retriever | 0.730959 | True | Staffordshire_bullterrier | 1.307260e-01 | True | American_Staffordshire_terrier | 2.885260e-02 | True |
| 1644 | 808106460588765185 | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | golden_retriever | 0.426183 | True | Labrador_retriever | 2.574470e-01 | True | Great_Pyrenees | 1.264820e-01 | True |
| 1645 | 808134635716833280 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1646 | 808501579447930884 | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | Airedale | 0.454239 | True | cocker_spaniel | 2.193230e-01 | True | Irish_terrier | 9.319300e-02 | True |
| 1647 | 808733504066486276 | https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg | 1 | seat_belt | 0.779137 | False | toy_poodle | 3.692710e-02 | True | golden_retriever | 1.697250e-02 | True |
| 1648 | 808838249661788160 | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | Rottweiler | 0.369530 | True | miniature_pinscher | 1.948670e-01 | True | kelpie | 1.601040e-01 | True |
| 1649 | 809084759137812480 | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | vizsla | 0.911412 | True | bloodhound | 1.713390e-02 | True | Labrador_retriever | 1.176100e-02 | True |
| 1650 | 809220051211603969 | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | Pomeranian | 0.819511 | True | Samoyed | 1.412410e-01 | True | Pembroke | 1.345520e-02 | True |
| 1651 | 809448704142938112 | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | Greater_Swiss_Mountain_dog | 0.375415 | True | Cardigan | 1.343170e-01 | True | English_springer | 7.369710e-02 | True |
| 1652 | 809808892968534016 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1653 | 809920764300447744 | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | Norwich_terrier | 0.397163 | True | toy_poodle | 2.745400e-01 | True | miniature_poodle | 1.346670e-01 | True |
| 1654 | 810254108431155201 | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | Staffordshire_bullterrier | 0.292556 | True | American_Staffordshire_terrier | 2.612330e-01 | True | Border_terrier | 6.237540e-02 | True |
| 1655 | 810284430598270976 | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | malamute | 0.620768 | True | Eskimo_dog | 1.583950e-01 | True | Tibetan_mastiff | 2.896170e-02 | True |
| 1656 | 810657578271330305 | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | malamute | 0.753521 | True | Siberian_husky | 1.661510e-01 | True | Eskimo_dog | 6.981080e-02 | True |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | flat-coated_retriever | 0.820804 | True | Labrador_retriever | 8.231820e-02 | True | curly-coated_retriever | 6.746050e-02 | True |
| 1658 | 810984652412424192 | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | golden_retriever | 0.871342 | True | Tibetan_mastiff | 3.670770e-02 | True | Labrador_retriever | 2.582320e-02 | True |
| 1659 | 811386762094317568 | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | Pembroke | 0.804177 | True | Cardigan | 1.898900e-01 | True | beagle | 1.964750e-03 | True |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | beagle | 0.396280 | True | Pembroke | 4.956190e-02 | True | wire-haired_fox_terrier | 4.634920e-02 | True |
| 1661 | 811744202451197953 | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | Pekinese | 0.386082 | True | Labrador_retriever | 2.028620e-01 | True | golden_retriever | 1.704870e-01 | True |
| 1662 | 811985624773361665 | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | Staffordshire_bullterrier | 0.610573 | True | French_bulldog | 1.599350e-01 | True | doormat | 5.867210e-02 | False |
| 1663 | 812372279581671427 | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | golden_retriever | 0.784873 | True | cocker_spaniel | 8.778810e-02 | True | Labrador_retriever | 8.327470e-02 | True |
| 1664 | 812466873996607488 | https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg | 1 | bath_towel | 0.099804 | False | pillow | 9.231810e-02 | False | Great_Dane | 7.820550e-02 | True |
| 1665 | 812503143955202048 | https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg | 2 | loupe | 0.546856 | False | web_site | 3.452980e-01 | False | bubble | 1.052790e-02 | False |
| 1666 | 812709060537683968 | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | Irish_setter | 0.326873 | True | golden_retriever | 1.826100e-01 | True | Leonberg | 1.569120e-01 | True |
| 1667 | 812781120811126785 | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | bull_mastiff | 0.989316 | True | boxer | 7.042960e-03 | True | French_bulldog | 1.739610e-03 | True |
| 1668 | 813051746834595840 | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | golden_retriever | 0.914804 | True | Labrador_retriever | 8.355000e-02 | True | kuvasz | 4.532240e-04 | True |
| 1669 | 813066809284972545 | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | toy_terrier | 0.776400 | True | Pembroke | 1.150340e-01 | True | basenji | 4.887300e-02 | True |
| 1670 | 813081950185472002 | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | Doberman | 0.909951 | True | kelpie | 4.264940e-02 | True | miniature_pinscher | 2.300410e-02 | True |
| 1671 | 813096984823349248 | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | Great_Dane | 0.128056 | True | Boston_bull | 1.170030e-01 | True | kelpie | 8.696430e-02 | True |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | dingo | 0.287369 | False | Pembroke | 1.406820e-01 | True | basenji | 9.081890e-02 | True |
| 1673 | 813127251579564032 | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | Norwegian_elkhound | 0.432416 | True | whippet | 3.742230e-01 | True | Siberian_husky | 3.246260e-02 | True |
| 1674 | 813142292504645637 | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | beagle | 0.848735 | True | Ibizan_hound | 4.460250e-02 | True | Italian_greyhound | 1.861080e-02 | True |
| 1675 | 813157409116065792 | https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg | 2 | Siamese_cat | 0.843911 | False | Pembroke | 7.056710e-02 | True | Cardigan | 4.191600e-02 | True |
| 1676 | 813172488309972993 | https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg | 1 | doormat | 0.954844 | False | golden_retriever | 2.619310e-02 | True | cocker_spaniel | 4.385980e-03 | True |
| 1677 | 813187593374461952 | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | golden_retriever | 0.888181 | True | Labrador_retriever | 4.231190e-02 | True | Saluki | 9.701730e-03 | True |
| 1678 | 813202720496779264 | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | cocker_spaniel | 0.701852 | True | golden_retriever | 1.203450e-01 | True | Labrador_retriever | 3.632020e-02 | True |
| 1679 | 813217897535406080 | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | Samoyed | 0.905972 | True | Pomeranian | 4.803830e-02 | True | West_Highland_white_terrier | 3.566710e-02 | True |
| 1680 | 813800681631023104 | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | malamute | 0.501159 | True | Siberian_husky | 2.287920e-01 | True | Eskimo_dog | 2.003880e-01 | True |
| 1681 | 813812741911748608 | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | French_bulldog | 0.709146 | True | Boston_bull | 2.476210e-01 | True | boxer | 1.885510e-02 | True |
| 1682 | 813910438903693312 | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | Siberian_husky | 0.699355 | True | Eskimo_dog | 2.564330e-01 | True | Norwegian_elkhound | 1.318880e-02 | True |
| 1683 | 813944609378369540 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1684 | 814153002265309185 | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | golden_retriever | 0.490068 | True | Labrador_retriever | 2.919560e-01 | True | chow | 7.247470e-02 | True |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | miniature_poodle | 0.626913 | True | toy_poodle | 2.655820e-01 | True | soft-coated_wheaten_terrier | 4.161420e-02 | True |
| 1686 | 814638523311648768 | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | golden_retriever | 0.650814 | True | kuvasz | 5.328100e-02 | True | cocker_spaniel | 3.543960e-02 | True |
| 1687 | 814986499976527872 | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | dalmatian | 0.999828 | True | boxer | 6.780610e-05 | True | American_Staffordshire_terrier | 3.424360e-05 | True |
| 1688 | 815390420867969024 | https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg | 1 | restaurant | 0.279846 | False | toyshop | 9.142940e-02 | False | paper_towel | 4.614740e-02 | False |
| 1689 | 815639385530101762 | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | German_shepherd | 0.817953 | True | Norwegian_elkhound | 1.400070e-01 | True | malinois | 2.482090e-02 | True |
| 1690 | 815736392542261248 | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | Border_collie | 0.548907 | True | Cardigan | 1.785230e-01 | True | collie | 1.463510e-01 | True |
| 1691 | 815966073409433600 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1692 | 815990720817401858 | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | Chihuahua | 0.428756 | True | miniature_pinscher | 1.039120e-01 | True | Staffordshire_bullterrier | 8.895870e-02 | True |
| 1693 | 816014286006976512 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1694 | 816091915477250048 | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | Pomeranian | 0.967345 | True | Samoyed | 7.397480e-03 | True | papillon | 6.016500e-03 | True |
| 1695 | 816336735214911488 | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | Labrador_retriever | 0.919330 | True | kuvasz | 4.947950e-02 | True | golden_retriever | 1.193420e-02 | True |
| 1696 | 816450570814898180 | https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg | 1 | web_site | 0.352857 | False | envelope | 6.010720e-02 | False | nail | 3.129090e-02 | False |
| 1697 | 816697700272001025 | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | Chihuahua | 0.756992 | True | Pomeranian | 5.284950e-02 | True | Maltese_dog | 4.760780e-02 | True |
| 1698 | 816816676327063552 | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | malamute | 0.668164 | True | Pembroke | 1.050330e-01 | True | Siberian_husky | 7.787500e-02 | True |
| 1699 | 816829038950027264 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1700 | 817056546584727552 | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | kelpie | 0.864415 | True | French_bulldog | 9.745560e-02 | True | German_shepherd | 8.525870e-03 | True |
| 1701 | 817120970343411712 | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | Saluki | 0.568809 | True | Afghan_hound | 2.293520e-01 | True | golden_retriever | 1.571300e-01 | True |
| 1702 | 817171292965273600 | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | golden_retriever | 0.295483 | True | Irish_setter | 1.444310e-01 | True | Chesapeake_Bay_retriever | 7.787900e-02 | True |
| 1703 | 817181837579653120 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | Doberman | 0.806163 | True | black-and-tan_coonhound | 9.738590e-02 | True | miniature_pinscher | 8.599280e-02 | True |
| 1705 | 817423860136083457 | https://pbs.twimg.com/ext_tw_video_thumb/81742... | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1706 | 817536400337801217 | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | pug | 0.971358 | True | French_bulldog | 2.851850e-02 | True | Boston_bull | 8.596980e-05 | True |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/81777... | 1 | curly-coated_retriever | 0.733256 | True | flat-coated_retriever | 2.141450e-01 | True | Irish_water_spaniel | 2.976900e-02 | True |
| 1708 | 817827839487737858 | https://pbs.twimg.com/ext_tw_video_thumb/81782... | 1 | cocker_spaniel | 0.387608 | True | golden_retriever | 2.648440e-01 | True | Pekinese | 1.221230e-01 | True |
| 1709 | 818145370475810820 | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | golden_retriever | 0.621931 | True | Labrador_retriever | 3.649970e-01 | True | redbone | 3.971480e-03 | True |
| 1710 | 818259473185828864 | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | miniature_schnauzer | 0.367368 | True | toy_poodle | 1.124790e-01 | True | standard_schnauzer | 9.543400e-02 | True |
| 1711 | 818536468981415936 | https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg | 1 | swing | 0.999403 | False | Welsh_springer_spaniel | 6.229490e-05 | True | bow | 3.046190e-05 | False |
| 1712 | 818588835076603904 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1713 | 818614493328580609 | https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg | 4 | Chihuahua | 0.450722 | True | Border_terrier | 2.041770e-01 | True | beagle | 9.277400e-02 | True |
| 1714 | 818627210458333184 | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | Labrador_retriever | 0.384188 | True | beagle | 2.559170e-01 | True | grocery_store | 7.979950e-02 | False |
| 1715 | 819004803107983360 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1716 | 819006400881917954 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1717 | 819015331746349057 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1718 | 819015337530290176 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1719 | 819227688460238848 | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | Border_terrier | 0.482452 | True | German_shepherd | 1.810820e-01 | True | Norwegian_elkhound | 6.525660e-02 | True |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | Rottweiler | 0.909106 | True | black-and-tan_coonhound | 4.411980e-02 | True | Doberman | 3.183490e-02 | True |
| 1721 | 819588359383371776 | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | Cardigan | 0.547935 | True | basenji | 1.164420e-01 | True | Shetland_sheepdog | 1.016810e-01 | True |
| 1722 | 819711362133872643 | https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg | 2 | acorn_squash | 0.848704 | False | toilet_seat | 4.434840e-02 | False | toy_poodle | 2.200940e-02 | True |
| 1723 | 819924195358416896 | https://pbs.twimg.com/ext_tw_video_thumb/81992... | 1 | bathtub | 0.100896 | False | shower_curtain | 9.186640e-02 | False | tub | 4.917630e-02 | False |
| 1724 | 819952236453363712 | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | American_Staffordshire_terrier | 0.925505 | True | Staffordshire_bullterrier | 3.622150e-02 | True | Italian_greyhound | 2.041190e-02 | True |
| 1725 | 820078625395449857 | https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg | 3 | school_bus | 0.999833 | False | cab | 1.596210e-04 | False | crane | 1.799800e-06 | False |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | Gordon_setter | 0.940724 | True | black-and-tan_coonhound | 4.204120e-02 | True | Rottweiler | 9.417430e-03 | True |
| 1727 | 820446719150292993 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1728 | 820690176645140481 | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | West_Highland_white_terrier | 0.872064 | True | kuvasz | 5.952590e-02 | True | Samoyed | 3.739960e-02 | True |
| 1729 | 820749716845686786 | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | golden_retriever | 0.838012 | True | Pekinese | 5.673310e-02 | True | Labrador_retriever | 2.394360e-02 | True |
| 1730 | 821044531881721856 | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | Old_English_sheepdog | 0.148020 | True | Airedale | 1.335340e-01 | True | Tibetan_mastiff | 1.209030e-01 | True |
| 1731 | 821107785811234820 | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | Pomeranian | 0.856590 | True | papillon | 3.853650e-02 | True | Yorkshire_terrier | 3.314580e-02 | True |
| 1732 | 821149554670182400 | https://pbs.twimg.com/ext_tw_video_thumb/82114... | 1 | German_shepherd | 0.515933 | True | malinois | 2.036510e-01 | True | Irish_setter | 9.105510e-02 | True |
| 1733 | 821407182352777218 | https://pbs.twimg.com/ext_tw_video_thumb/82140... | 1 | Irish_setter | 0.505496 | True | vizsla | 1.687470e-01 | True | Chesapeake_Bay_retriever | 1.113110e-01 | True |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | Doberman | 0.763539 | True | black-and-tan_coonhound | 1.366020e-01 | True | miniature_pinscher | 8.765390e-02 | True |
| 1735 | 821765923262631936 | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | golden_retriever | 0.980071 | True | Labrador_retriever | 8.757510e-03 | True | Saluki | 1.805950e-03 | True |
| 1736 | 821813639212650496 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1737 | 821886076407029760 | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | golden_retriever | 0.266238 | True | cocker_spaniel | 2.233250e-01 | True | Irish_setter | 1.516310e-01 | True |
| 1738 | 822244816520155136 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1739 | 822462944365645825 | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | Pomeranian | 0.960199 | True | Samoyed | 2.305630e-02 | True | Maltese_dog | 8.944880e-03 | True |
| 1740 | 822489057087389700 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1741 | 822610361945911296 | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | cocker_spaniel | 0.664487 | True | Norfolk_terrier | 7.508900e-02 | True | Norwich_terrier | 5.964390e-02 | True |
| 1742 | 822647212903690241 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1743 | 822859134160621569 | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | malinois | 0.332897 | True | Chihuahua | 1.041160e-01 | True | Staffordshire_bullterrier | 4.774500e-02 | True |
| 1744 | 822872901745569793 | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | Lakeland_terrier | 0.196015 | True | Labrador_retriever | 1.603290e-01 | True | Irish_terrier | 6.912620e-02 | True |
| 1745 | 822975315408461824 | https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg | 1 | bathtub | 0.331098 | False | tub | 2.488600e-01 | False | Pembroke | 2.331620e-01 | True |
| 1746 | 823269594223824897 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1747 | 823322678127919110 | https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg | 2 | cowboy_boot | 0.990253 | False | Chihuahua | 1.836350e-03 | True | papillon | 1.273900e-03 | True |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | dingo | 0.280949 | False | German_shepherd | 1.940440e-01 | True | Pembroke | 1.200510e-01 | True |
| 1749 | 823699002998870016 | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | cairn | 0.203999 | True | snorkel | 1.718930e-01 | False | Norfolk_terrier | 1.075430e-01 | True |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | schipperke | 0.234076 | True | curly-coated_retriever | 1.930930e-01 | True | Labrador_retriever | 9.519660e-02 | True |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | teddy | 0.588230 | False | jigsaw_puzzle | 2.890960e-02 | False | doormat | 2.225070e-02 | False |
| 1752 | 824325613288833024 | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | Pembroke | 0.990793 | True | Cardigan | 8.919390e-03 | True | basenji | 2.622640e-04 | True |
| 1753 | 824663926340194305 | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | English_setter | 0.526488 | True | golden_retriever | 4.028150e-01 | True | Irish_setter | 3.441780e-02 | True |
| 1754 | 824775126675836928 | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | Border_terrier | 0.610499 | True | malinois | 9.029120e-02 | True | Airedale | 6.862470e-02 | True |
| 1755 | 824796380199809024 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1756 | 825026590719483904 | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | Eskimo_dog | 0.524454 | True | Siberian_husky | 4.676780e-01 | True | malamute | 4.975840e-03 | True |
| 1757 | 825147591692263424 | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | Pekinese | 0.354823 | True | Pomeranian | 2.453900e-01 | True | toy_poodle | 1.365450e-01 | True |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | Rottweiler | 0.681495 | True | Tibetan_mastiff | 1.479400e-01 | True | black-and-tan_coonhound | 2.452520e-02 | True |
| 1759 | 825829644528148480 | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | Great_Pyrenees | 0.853407 | True | golden_retriever | 5.353130e-02 | True | English_setter | 4.582990e-02 | True |
| 1760 | 825876512159186944 | https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg | 1 | shopping_cart | 0.995941 | False | shopping_basket | 4.056970e-03 | False | mousetrap | 8.832830e-07 | False |
| 1761 | 826115272272650244 | https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg | 1 | tennis_ball | 0.997071 | False | golden_retriever | 2.330850e-03 | True | kuvasz | 2.834720e-04 | True |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | Labrador_retriever | 0.782058 | True | golden_retriever | 1.565810e-01 | True | soft-coated_wheaten_terrier | 7.275120e-03 | True |
| 1763 | 826240494070030336 | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | French_bulldog | 0.903048 | True | pug | 9.624210e-02 | True | Boston_bull | 2.343640e-04 | True |
| 1764 | 826476773533745153 | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | German_shepherd | 0.741860 | True | Tibetan_mastiff | 1.228120e-01 | True | kelpie | 1.004600e-01 | True |
| 1765 | 826598365270007810 | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | French_bulldog | 0.628119 | True | Siamese_cat | 1.173970e-01 | False | cougar | 8.276490e-02 | False |
| 1766 | 826848821049180160 | https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg | 4 | Great_Pyrenees | 0.858764 | True | golden_retriever | 2.352570e-02 | True | Pekinese | 1.710390e-02 | True |
| 1767 | 826958653328592898 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1768 | 827199976799354881 | https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg | 4 | Great_Dane | 0.869681 | True | American_Staffordshire_terrier | 2.665820e-02 | True | boxer | 1.986610e-02 | True |
| 1769 | 827324948884643840 | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | golden_retriever | 0.352486 | True | toy_poodle | 1.788840e-01 | True | Labrador_retriever | 8.416440e-02 | True |
| 1770 | 827600520311402496 | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | Pembroke | 0.325638 | True | golden_retriever | 3.172350e-01 | True | Labrador_retriever | 1.160870e-01 | True |
| 1771 | 827653905312006145 | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | collie | 0.285555 | True | Border_collie | 2.173060e-01 | True | Saint_Bernard | 1.432450e-01 | True |
| 1772 | 827933404142436356 | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | German_shepherd | 0.806115 | True | Tibetan_mastiff | 1.048310e-01 | True | kelpie | 3.814820e-02 | True |
| 1773 | 828011680017821696 | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | American_Staffordshire_terrier | 0.936662 | True | Staffordshire_bullterrier | 3.299910e-02 | True | bull_mastiff | 1.718340e-02 | True |
| 1774 | 828046555563323392 | https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg | 3 | patio | 0.272972 | False | window_screen | 1.312950e-01 | False | boathouse | 4.639250e-02 | False |
| 1775 | 828372645993398273 | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | malamute | 0.663047 | True | Eskimo_dog | 2.077790e-01 | True | Tibetan_mastiff | 4.094880e-02 | True |
| 1776 | 828376505180889089 | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | American_Staffordshire_terrier | 0.523086 | True | Staffordshire_bullterrier | 1.861680e-01 | True | Chihuahua | 4.208940e-02 | True |
| 1777 | 828381636999917570 | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | Bedlington_terrier | 0.392535 | True | Labrador_retriever | 8.902170e-02 | True | clumber | 8.179980e-02 | True |
| 1778 | 828408677031882754 | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | Weimaraner | 0.133033 | True | Chesapeake_Bay_retriever | 9.222700e-02 | True | American_Staffordshire_terrier | 6.509450e-02 | True |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | teddy | 0.908457 | False | toy_poodle | 1.803980e-02 | True | standard_poodle | 1.266710e-02 | True |
| 1780 | 828650029636317184 | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | golden_retriever | 0.649209 | True | Chesapeake_Bay_retriever | 1.985600e-01 | True | vizsla | 5.619990e-02 | True |
| 1781 | 828708714936930305 | https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg | 1 | hippopotamus | 0.942911 | False | Mexican_hairless | 8.388370e-03 | True | ice_lolly | 6.206470e-03 | False |
| 1782 | 828770345708580865 | https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg | 1 | seat_belt | 0.765979 | False | Chesapeake_Bay_retriever | 3.389860e-02 | True | polecat | 2.725160e-02 | False |
| 1783 | 829011960981237760 | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | boxer | 0.312221 | True | dalmatian | 2.440400e-01 | True | conch | 1.302730e-01 | False |
| 1784 | 829141528400556032 | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | golden_retriever | 0.573140 | True | cocker_spaniel | 1.111590e-01 | True | gibbon | 9.412690e-02 | False |
| 1785 | 829374341691346946 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1786 | 829449946868879360 | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | Labrador_retriever | 0.315163 | True | golden_retriever | 1.532100e-01 | True | Pekinese | 1.327910e-01 | True |
| 1787 | 829501995190984704 | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | French_bulldog | 0.950851 | True | Pekinese | 1.519960e-02 | True | pug | 1.109360e-02 | True |
| 1788 | 829861396166877184 | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | Border_terrier | 0.394486 | True | Staffordshire_bullterrier | 3.765740e-01 | True | American_Staffordshire_terrier | 3.129160e-02 | True |
| 1789 | 829878982036299777 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1790 | 830097400375152640 | https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg | 4 | toy_poodle | 0.442713 | True | Pomeranian | 1.420730e-01 | True | Pekinese | 1.257450e-01 | True |
| 1791 | 830583320585068544 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 1792 | 830956169170665475 | https://pbs.twimg.com/ext_tw_video_thumb/83095... | 1 | kuvasz | 0.451516 | True | golden_retriever | 3.171960e-01 | True | English_setter | 1.327590e-01 | True |
| 1793 | 831262627380748289 | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | cocker_spaniel | 0.263323 | True | Brittany_spaniel | 2.005500e-01 | True | doormat | 1.934140e-01 | False |
| 1794 | 831309418084069378 | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | Doberman | 0.369389 | True | kelpie | 1.324490e-01 | True | Labrador_retriever | 7.472730e-02 | True |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | briard | 0.982755 | True | soft-coated_wheaten_terrier | 9.084350e-03 | True | Bouvier_des_Flandres | 4.692800e-03 | True |
| 1796 | 831322785565769729 | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | Old_English_sheepdog | 0.999715 | True | Tibetan_terrier | 4.629670e-05 | True | guinea_pig | 4.118430e-05 | False |
| 1797 | 831552930092285952 | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | Chihuahua | 0.257415 | True | Pembroke | 1.614420e-01 | True | French_bulldog | 9.214290e-02 | True |
| 1798 | 831650051525054464 | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | Eskimo_dog | 0.530416 | True | Siberian_husky | 1.803350e-01 | True | Norwegian_elkhound | 1.043140e-01 | True |
| 1799 | 831670449226514432 | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | Pembroke | 0.624802 | True | Cardigan | 3.628610e-01 | True | Appenzeller | 3.926210e-03 | True |
| 1800 | 831911600680497154 | https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg | 4 | bloodhound | 0.777562 | True | Great_Dane | 4.741760e-02 | True | Leonberg | 1.794310e-02 | True |
| 1801 | 831939777352105988 | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | Pomeranian | 0.153862 | True | marmot | 9.123390e-02 | False | grey_fox | 9.064410e-02 | False |
| 1802 | 832032802820481025 | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | whippet | 0.601712 | True | Ibizan_hound | 1.526620e-01 | True | Italian_greyhound | 1.350550e-01 | True |
| 1803 | 832040443403784192 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1804 | 832215726631055365 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1805 | 832273440279240704 | https://pbs.twimg.com/ext_tw_video_thumb/83227... | 1 | Pembroke | 0.134081 | True | ice_bear | 5.192780e-02 | False | pug | 4.431090e-02 | True |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | kelpie | 0.504690 | True | German_short-haired_pointer | 1.052080e-01 | True | Staffordshire_bullterrier | 5.433850e-02 | True |
| 1807 | 832397543355072512 | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | Pekinese | 0.988916 | True | Brabancon_griffon | 1.676800e-03 | True | Siamese_cat | 1.125890e-03 | False |
| 1808 | 832636094638288896 | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | Eskimo_dog | 0.525032 | True | Siberian_husky | 2.522380e-01 | True | malamute | 2.168390e-01 | True |
| 1809 | 832757312314028032 | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | Cardigan | 0.160888 | True | Staffordshire_bullterrier | 1.594410e-01 | True | Boston_bull | 1.543680e-01 | True |
| 1810 | 832769181346996225 | https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg | 1 | jersey | 0.895698 | False | sweatshirt | 8.908540e-02 | False | poncho | 2.975220e-03 | False |
| 1811 | 832998151111966721 | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | boxer | 0.539036 | True | French_bulldog | 3.176170e-01 | True | bull_mastiff | 9.392850e-02 | True |
| 1812 | 833124694597443584 | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | Cardigan | 0.710523 | True | kelpie | 1.061020e-01 | True | shopping_cart | 5.547550e-02 | False |
| 1813 | 833479644947025920 | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | golden_retriever | 0.727039 | True | cocker_spaniel | 7.113980e-02 | True | Tibetan_mastiff | 4.869420e-02 | True |
| 1814 | 833722901757046785 | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | West_Highland_white_terrier | 0.918144 | True | Maltese_dog | 2.572070e-02 | True | Lakeland_terrier | 2.021110e-02 | True |
| 1815 | 833826103416520705 | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | Chihuahua | 0.438054 | True | kelpie | 1.497060e-01 | True | Pembroke | 9.648050e-02 | True |
| 1816 | 833863086058651648 | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | kuvasz | 0.494969 | True | Great_Pyrenees | 3.126320e-01 | True | golden_retriever | 1.417360e-01 | True |
| 1817 | 834086379323871233 | https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg | 1 | bath_towel | 0.736759 | False | sleeping_bag | 6.295910e-02 | False | Labrador_retriever | 4.526270e-02 | True |
| 1818 | 834167344700198914 | https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg | 1 | ox | 0.991682 | False | bison | 5.334520e-03 | False | water_buffalo | 1.130250e-03 | False |
| 1819 | 834209720923721728 | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | golden_retriever | 0.754799 | True | Pekinese | 1.978610e-01 | True | Labrador_retriever | 8.654040e-03 | True |
| 1820 | 834458053273591808 | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | Rhodesian_ridgeback | 0.468619 | True | whippet | 1.775310e-01 | True | redbone | 1.065520e-01 | True |
| 1821 | 834574053763584002 | https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg | 1 | toilet_tissue | 0.262936 | False | golden_retriever | 2.265640e-01 | True | bathtub | 7.887900e-02 | False |
| 1822 | 834786237630337024 | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | Border_terrier | 0.156276 | True | Norwegian_elkhound | 1.259120e-01 | True | Boston_bull | 9.662390e-02 | True |
| 1823 | 834931633769889797 | https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg | 1 | ice_bear | 0.330573 | False | soft-coated_wheaten_terrier | 1.964760e-01 | True | Irish_terrier | 7.309650e-02 | True |
| 1824 | 835152434251116546 | https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg | 3 | swing | 0.967066 | False | American_Staffordshire_terrier | 1.273090e-02 | True | Staffordshire_bullterrier | 7.039220e-03 | True |
| 1825 | 835172783151792128 | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | Border_collie | 0.663138 | True | collie | 1.524940e-01 | True | Cardigan | 3.547060e-02 | True |
| 1826 | 835264098648616962 | https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg | 2 | hyena | 0.736871 | False | Chesapeake_Bay_retriever | 8.750330e-02 | True | meerkat | 4.205780e-02 | False |
| 1827 | 835297930240217089 | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | Rottweiler | 0.341276 | True | Border_terrier | 3.362200e-01 | True | Gordon_setter | 4.544830e-02 | True |
| 1828 | 835574547218894849 | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | Staffordshire_bullterrier | 0.610655 | True | muzzle | 1.321380e-01 | False | American_Staffordshire_terrier | 1.095440e-01 | True |
| 1829 | 836001077879255040 | https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg | 4 | Samoyed | 0.963558 | True | white_wolf | 1.984760e-02 | False | malamute | 5.904340e-03 | True |
| 1830 | 836260088725786625 | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | borzoi | 0.564688 | True | ice_bear | 7.826750e-02 | False | Pembroke | 5.791620e-02 | True |
| 1831 | 836380477523124226 | https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg | 1 | wooden_spoon | 0.082489 | False | sliding_door | 6.101650e-02 | False | grand_piano | 5.508610e-02 | False |
| 1832 | 836677758902222849 | https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg | 2 | leopard | 0.797410 | False | jaguar | 9.548660e-02 | False | snow_leopard | 7.969410e-02 | False |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | mortarboard | 0.936882 | False | academic_gown | 2.081540e-02 | False | schipperke | 1.156350e-02 | True |
| 1834 | 836989968035819520 | https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg | 1 | shopping_cart | 0.572422 | False | shopping_basket | 4.140020e-01 | False | toy_poodle | 5.887300e-03 | True |
| 1835 | 837012587749474308 | https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg | 1 | toilet_tissue | 0.186387 | False | cowboy_hat | 1.585550e-01 | False | sombrero | 1.494700e-01 | False |
| 1836 | 837110210464448512 | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | Siberian_husky | 0.767696 | True | Eskimo_dog | 2.170790e-01 | True | malamute | 1.165680e-02 | True |
| 1837 | 837366284874571778 | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | American_Staffordshire_terrier | 0.660085 | True | Staffordshire_bullterrier | 3.349470e-01 | True | dalmatian | 2.697160e-03 | True |
| 1838 | 837471256429613056 | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | Norwegian_elkhound | 0.976255 | True | keeshond | 1.399020e-02 | True | seat_belt | 2.110540e-03 | False |
| 1839 | 837482249356513284 | https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg | 2 | birdhouse | 0.541196 | False | can_opener | 1.210940e-01 | False | carton | 5.613670e-02 | False |
| 1840 | 837820167694528512 | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | golden_retriever | 0.887625 | True | Labrador_retriever | 6.871750e-02 | True | kuvasz | 3.038680e-02 | True |
| 1841 | 838083903487373313 | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | chow | 0.800975 | True | seat_belt | 1.641330e-01 | False | Pomeranian | 1.798100e-02 | True |
| 1842 | 838476387338051585 | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | Great_Pyrenees | 0.997692 | True | kuvasz | 1.000640e-03 | True | Newfoundland | 4.045560e-04 | True |
| 1843 | 838561493054533637 | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | kelpie | 0.216562 | True | doormat | 1.399940e-01 | False | dalmatian | 1.328200e-01 | True |
| 1844 | 838916489579200512 | https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg | 2 | web_site | 0.993651 | False | monitor | 1.405900e-03 | False | envelope | 1.093090e-03 | False |
| 1845 | 838921590096166913 | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | Border_terrier | 0.664538 | True | Brabancon_griffon | 1.704510e-01 | True | Yorkshire_terrier | 8.782360e-02 | True |
| 1846 | 839239871831150596 | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | Leonberg | 0.927021 | True | Newfoundland | 5.000910e-02 | True | Saint_Bernard | 1.072780e-02 | True |
| 1847 | 839290600511926273 | https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg | 1 | web_site | 0.670892 | False | monitor | 1.015650e-01 | False | screen | 7.530610e-02 | False |
| 1848 | 839549326359670784 | https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg | 1 | swing | 0.393527 | False | Norwich_terrier | 5.248000e-02 | True | Pembroke | 4.990060e-02 | True |
| 1849 | 839990271299457024 | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | Staffordshire_bullterrier | 0.604938 | True | American_Staffordshire_terrier | 3.115400e-01 | True | Boston_bull | 3.715910e-02 | True |
| 1850 | 840268004936019968 | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | Chesapeake_Bay_retriever | 0.863987 | True | Labrador_retriever | 5.263230e-02 | True | kelpie | 3.257360e-02 | True |
| 1851 | 840370681858686976 | https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg | 1 | teapot | 0.981819 | False | cup | 1.402580e-02 | False | coffeepot | 2.420540e-03 | False |
| 1852 | 840632337062862849 | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | golden_retriever | 0.711148 | True | cocker_spaniel | 1.579290e-01 | True | Labrador_retriever | 5.958190e-02 | True |
| 1853 | 840696689258311684 | https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg | 1 | web_site | 0.841768 | False | rule | 7.087310e-03 | False | envelope | 6.820300e-03 | False |
| 1854 | 841077006473256960 | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | Brittany_spaniel | 0.962985 | True | Blenheim_spaniel | 1.482000e-02 | True | clumber | 9.557110e-03 | True |
| 1855 | 841314665196081154 | https://pbs.twimg.com/ext_tw_video_thumb/84131... | 1 | Afghan_hound | 0.903712 | True | Saluki | 3.521500e-02 | True | bloodhound | 2.656550e-02 | True |
| 1856 | 841439858740625411 | https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg | 3 | military_uniform | 0.853684 | False | Labrador_retriever | 4.819990e-02 | True | groenendael | 1.539440e-02 | True |
| 1857 | 841680585030541313 | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | Chihuahua | 0.547401 | True | bow_tie | 1.983610e-01 | False | Pembroke | 5.849250e-02 | True |
| 1858 | 841833993020538882 | https://pbs.twimg.com/ext_tw_video_thumb/81742... | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1859 | 842115215311396866 | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | chow | 0.293493 | True | Newfoundland | 1.813360e-01 | True | schipperke | 1.251520e-01 | True |
| 1860 | 842163532590374912 | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | French_bulldog | 0.891227 | True | soccer_ball | 2.281100e-02 | False | bull_mastiff | 1.285200e-02 | True |
| 1861 | 842535590457499648 | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | Pembroke | 0.685084 | True | Cardigan | 3.146080e-01 | True | basenji | 1.598240e-04 | True |
| 1862 | 842765311967449089 | https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg | 1 | tub | 0.665238 | False | bucket | 1.051660e-01 | False | Labrador_retriever | 2.933990e-02 | True |
| 1863 | 842846295480000512 | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | Labrador_retriever | 0.461076 | True | golden_retriever | 1.549460e-01 | True | Chihuahua | 1.102490e-01 | True |
| 1864 | 842892208864923648 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1865 | 843235543001513987 | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | Pembroke | 0.958452 | True | Cardigan | 2.376990e-02 | True | Chihuahua | 5.269360e-03 | True |
| 1866 | 843604394117681152 | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | Labrador_retriever | 0.430583 | True | golden_retriever | 2.635810e-01 | True | Great_Pyrenees | 1.793850e-01 | True |
| 1867 | 843856843873095681 | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | Labrador_retriever | 0.922540 | True | golden_retriever | 7.435780e-02 | True | Great_Pyrenees | 2.324950e-03 | True |
| 1868 | 844223788422217728 | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | Labrador_retriever | 0.719510 | True | Chesapeake_Bay_retriever | 1.220190e-01 | True | Newfoundland | 3.882760e-02 | True |
| 1869 | 844580511645339650 | https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg | 1 | washer | 0.903064 | False | dishwasher | 3.248900e-02 | False | printer | 1.645620e-02 | False |
| 1870 | 844704788403113984 | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | Labrador_retriever | 0.980213 | True | golden_retriever | 7.011670e-03 | True | beagle | 3.146970e-03 | True |
| 1871 | 844973813909606400 | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | Labrador_retriever | 0.742421 | True | golden_retriever | 1.952180e-01 | True | Chihuahua | 1.732010e-02 | True |
| 1872 | 844979544864018432 | https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg | 3 | tennis_ball | 0.999281 | False | racket | 3.700800e-04 | False | Shetland_sheepdog | 1.320680e-04 | True |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | Irish_water_spaniel | 0.567475 | True | Labrador_retriever | 1.694960e-01 | True | curly-coated_retriever | 1.015180e-01 | True |
| 1874 | 845397057150107648 | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | Dandie_Dinmont | 0.394404 | True | Maltese_dog | 1.865370e-01 | True | West_Highland_white_terrier | 1.819850e-01 | True |
| 1875 | 845677943972139009 | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | chow | 0.808681 | True | groenendael | 1.231410e-01 | True | Newfoundland | 2.214320e-02 | True |
| 1876 | 845812042753855489 | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | Samoyed | 0.979803 | True | chow | 1.592260e-02 | True | white_wolf | 1.302790e-03 | False |
| 1877 | 846042936437604353 | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | golden_retriever | 0.961110 | True | Labrador_retriever | 1.669520e-02 | True | Tibetan_mastiff | 9.081530e-03 | True |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | giant_schnauzer | 0.346468 | True | flat-coated_retriever | 2.184510e-01 | True | Labrador_retriever | 1.080200e-01 | True |
| 1879 | 846514051647705089 | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | golden_retriever | 0.650003 | True | Leonberg | 6.519920e-02 | True | Norfolk_terrier | 5.295530e-02 | True |
| 1880 | 846874817362120707 | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | Shetland_sheepdog | 0.450539 | True | papillon | 1.879280e-01 | True | collie | 1.400680e-01 | True |
| 1881 | 847116187444137987 | https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg | 1 | white_wolf | 0.128935 | False | American_Staffordshire_terrier | 1.134340e-01 | True | dingo | 8.123140e-02 | False |
| 1882 | 847157206088847362 | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | Staffordshire_bullterrier | 0.219609 | True | American_Staffordshire_terrier | 1.786710e-01 | True | pug | 1.232710e-01 | True |
| 1883 | 847251039262605312 | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | Airedale | 0.495380 | True | Irish_terrier | 3.164560e-01 | True | Lakeland_terrier | 1.585330e-01 | True |
| 1884 | 847606175596138505 | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | Cardigan | 0.413688 | True | Boston_bull | 3.818360e-01 | True | doormat | 6.586780e-02 | False |
| 1885 | 847842811428974592 | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | Bernese_mountain_dog | 0.951337 | True | Greater_Swiss_Mountain_dog | 1.684910e-02 | True | Appenzeller | 1.084920e-02 | True |
| 1886 | 847962785489326080 | https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg | 1 | sea_lion | 0.882654 | False | mink | 6.688020e-02 | False | otter | 2.567870e-02 | False |
| 1887 | 847971574464610304 | https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg | 1 | coffee_mug | 0.633652 | False | cup | 2.733920e-01 | False | toilet_tissue | 6.665580e-02 | False |
| 1888 | 848212111729840128 | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | Bedlington_terrier | 0.333486 | True | Ibizan_hound | 2.457970e-01 | True | wallaby | 1.316470e-01 | False |
| 1889 | 848324959059550208 | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | malamute | 0.544576 | True | Siberian_husky | 2.902680e-01 | True | Eskimo_dog | 1.544210e-01 | True |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | flat-coated_retriever | 0.823648 | True | Newfoundland | 1.005710e-01 | True | groenendael | 3.830970e-02 | True |
| 1891 | 849051919805034497 | https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg | 1 | fountain | 0.997509 | False | American_black_bear | 1.413120e-03 | False | sundial | 6.811150e-04 | False |
| 1892 | 849336543269576704 | https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg | 1 | patio | 0.521788 | False | prison | 1.495440e-01 | False | restaurant | 2.715260e-02 | False |
| 1893 | 849412302885593088 | https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg | 4 | schipperke | 0.907559 | True | crossword_puzzle | 1.793390e-02 | False | Chihuahua | 1.619070e-02 | True |
| 1894 | 849776966551130114 | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | Chihuahua | 0.292092 | True | toy_terrier | 1.368520e-01 | True | bonnet | 1.031110e-01 | False |
| 1895 | 850019790995546112 | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | Shetland_sheepdog | 0.759907 | True | collie | 1.074050e-01 | True | Pembroke | 5.233530e-02 | True |
| 1896 | 850145622816686080 | https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg | 2 | tennis_ball | 0.714798 | False | kelpie | 1.053900e-01 | True | malinois | 5.855270e-02 | True |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/85038... | 1 | Yorkshire_terrier | 0.249012 | True | Maltese_dog | 1.663640e-01 | True | Shih-Tzu | 1.422540e-01 | True |
| 1898 | 850753642995093505 | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | pug | 0.996952 | True | bull_mastiff | 9.959010e-04 | True | French_bulldog | 8.833800e-04 | True |
| 1899 | 851224888060895234 | https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg | 3 | car_mirror | 0.971512 | False | seat_belt | 7.063460e-03 | False | standard_poodle | 5.682650e-03 | True |
| 1900 | 851464819735769094 | https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg | 2 | web_site | 0.919649 | False | menu | 2.630610e-02 | False | crossword_puzzle | 3.481510e-03 | False |
| 1901 | 851591660324737024 | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | Cardigan | 0.394507 | True | Chihuahua | 7.725400e-02 | True | French_bulldog | 7.655880e-02 | True |
| 1902 | 851861385021730816 | https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg | 1 | pencil_box | 0.662183 | False | purse | 6.650550e-02 | False | pillow | 4.472530e-02 | False |
| 1903 | 851953902622658560 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1904 | 852189679701164033 | https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg | 1 | barrow | 0.423150 | False | Bernese_mountain_dog | 4.153740e-01 | True | EntleBucher | 6.734540e-02 | True |
| 1905 | 852226086759018497 | https://pbs.twimg.com/ext_tw_video_thumb/85222... | 1 | prison | 0.352793 | False | dishwasher | 1.107230e-01 | False | file | 9.411200e-02 | False |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 2.841790e-02 | False | go-kart | 5.595040e-07 | False |
| 1907 | 852553447878664193 | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | bloodhound | 0.186498 | True | Brabancon_griffon | 1.390280e-01 | True | Rottweiler | 1.259400e-01 | True |
| 1908 | 852672615818899456 | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | golden_retriever | 0.711235 | True | otterhound | 6.823470e-02 | True | Sussex_spaniel | 4.656170e-02 | True |
| 1909 | 852912242202992640 | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | Great_Dane | 0.783765 | True | Rhodesian_ridgeback | 1.141470e-01 | True | English_foxhound | 4.643950e-02 | True |
| 1910 | 853299958564483072 | https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg | 1 | grille | 0.652280 | False | beach_wagon | 1.128460e-01 | False | convertible | 8.625230e-02 | False |
| 1911 | 853639147608842240 | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | German_shepherd | 0.509879 | True | malinois | 2.373110e-01 | True | kelpie | 4.691620e-02 | True |
| 1912 | 853760880890318849 | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | miniature_pinscher | 0.292519 | True | Chihuahua | 1.209460e-01 | True | Rottweiler | 1.194900e-01 | True |
| 1913 | 854010172552949760 | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | English_springer | 0.354733 | True | collie | 1.775380e-01 | True | Border_collie | 1.317060e-01 | True |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | black-and-tan_coonhound | 0.854861 | True | Doberman | 5.079180e-02 | True | bluetick | 2.176170e-02 | True |
| 1915 | 854365224396361728 | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | Pembroke | 0.907080 | True | Cardigan | 8.627200e-02 | True | Chihuahua | 1.413230e-03 | True |
| 1916 | 854482394044301312 | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | Chihuahua | 0.260242 | True | toy_poodle | 1.891580e-01 | True | Labrador_retriever | 1.441950e-01 | True |
| 1917 | 854732716440526848 | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | Pembroke | 0.695548 | True | Cardigan | 5.890170e-02 | True | chow | 2.841060e-02 | True |
| 1918 | 855459453768019968 | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | Blenheim_spaniel | 0.389513 | True | Pekinese | 1.882200e-01 | True | Japanese_spaniel | 8.262820e-02 | True |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | flat-coated_retriever | 0.321676 | True | Labrador_retriever | 1.151380e-01 | True | groenendael | 9.609970e-02 | True |
| 1920 | 856282028240666624 | https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg | 4 | Chihuahua | 0.876543 | True | Italian_greyhound | 3.296180e-02 | True | Cardigan | 2.077590e-02 | True |
| 1921 | 856526610513747968 | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | Old_English_sheepdog | 0.798481 | True | Tibetan_terrier | 6.060240e-02 | True | standard_poodle | 4.072190e-02 | True |
| 1922 | 856543823941562368 | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | Boston_bull | 0.306910 | True | Siamese_cat | 1.912180e-01 | False | Chihuahua | 1.892880e-01 | True |
| 1923 | 857029823797047296 | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | golden_retriever | 0.968623 | True | Labrador_retriever | 1.032520e-02 | True | Saluki | 4.148420e-03 | True |
| 1924 | 857263160327368704 | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | Samoyed | 0.998021 | True | Pomeranian | 9.216360e-04 | True | keeshond | 3.112610e-04 | True |
| 1925 | 857393404942143489 | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | malamute | 0.841597 | True | Siberian_husky | 7.364350e-02 | True | Eskimo_dog | 7.212860e-02 | True |
| 1926 | 857746408056729600 | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | Labrador_retriever | 0.919832 | True | beagle | 4.351300e-02 | True | golden_retriever | 2.335880e-02 | True |
| 1927 | 857989990357356544 | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | French_bulldog | 0.432580 | True | English_springer | 3.258980e-01 | True | Lakeland_terrier | 4.261790e-02 | True |
| 1928 | 858107933456039936 | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | golden_retriever | 0.863874 | True | Labrador_retriever | 1.592000e-02 | True | doormat | 1.061530e-02 | False |
| 1929 | 858471635011153920 | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | Pembroke | 0.987407 | True | Cardigan | 8.723030e-03 | True | basenji | 3.423730e-03 | True |
| 1930 | 858843525470990336 | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | golden_retriever | 0.578120 | True | Labrador_retriever | 2.860590e-01 | True | bloodhound | 2.691730e-02 | True |
| 1931 | 859074603037188101 | https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg | 1 | revolver | 0.190292 | False | projectile | 1.490640e-01 | False | fountain | 6.604660e-02 | False |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/85919... | 1 | Angora | 0.224218 | False | malamute | 2.161630e-01 | True | Persian_cat | 1.283830e-01 | False |
| 1933 | 859607811541651456 | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | golden_retriever | 0.895529 | True | Irish_setter | 2.409930e-02 | True | Labrador_retriever | 1.928540e-02 | True |
| 1934 | 859851578198683649 | https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg | 4 | Labrador_retriever | 0.899086 | True | golden_retriever | 4.709080e-02 | True | kuvasz | 2.320630e-02 | True |
| 1935 | 859924526012018688 | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | French_bulldog | 0.254587 | True | Staffordshire_bullterrier | 1.925580e-01 | True | hog | 1.002700e-01 | False |
| 1936 | 860184849394610176 | https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg | 1 | chimpanzee | 0.267612 | False | gorilla | 1.042930e-01 | False | orangutan | 5.990750e-02 | False |
| 1937 | 860276583193509888 | https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg | 1 | lakeside | 0.312299 | False | dock | 1.598420e-01 | False | canoe | 7.079450e-02 | False |
| 1938 | 860524505164394496 | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | Bedlington_terrier | 0.286558 | True | toy_poodle | 2.351930e-01 | True | Lakeland_terrier | 8.795070e-02 | True |
| 1939 | 860563773140209665 | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | Cardigan | 0.583936 | True | Pembroke | 5.597940e-02 | True | beagle | 4.589570e-02 | True |
| 1940 | 860924035999428608 | https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg | 2 | envelope | 0.933016 | False | oscilloscope | 1.259140e-02 | False | paper_towel | 1.117850e-02 | False |
| 1941 | 861005113778896900 | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | German_shepherd | 0.507951 | True | Pembroke | 1.361130e-01 | True | muzzle | 7.576420e-02 | False |
| 1942 | 861288531465048066 | https://pbs.twimg.com/ext_tw_video_thumb/86128... | 1 | syringe | 0.144712 | False | oxygen_mask | 1.066840e-01 | False | Bouvier_des_Flandres | 8.261020e-02 | True |
| 1943 | 861383897657036800 | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | Cardigan | 0.771008 | True | Pembroke | 1.371740e-01 | True | French_bulldog | 6.330860e-02 | True |
| 1944 | 861769973181624320 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1945 | 862096992088072192 | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | chow | 0.677589 | True | Pomeranian | 2.706480e-01 | True | Pekinese | 3.810990e-02 | True |
| 1946 | 862457590147678208 | https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg | 1 | home_theater | 0.496348 | False | studio_couch | 1.672560e-01 | False | barber_chair | 5.262500e-02 | False |
| 1947 | 862722525377298433 | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | basset | 0.393330 | True | beagle | 2.420340e-01 | True | boxer | 7.769250e-02 | True |
| 1948 | 862831371563274240 | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | Australian_terrier | 0.207281 | True | Irish_terrier | 1.562960e-01 | True | German_shepherd | 1.235360e-01 | True |
| 1949 | 863062471531167744 | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | French_bulldog | 0.935804 | True | pug | 5.957620e-02 | True | boxer | 1.412180e-03 | True |
| 1950 | 863079547188785154 | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | Lakeland_terrier | 0.275242 | True | Airedale | 1.905690e-01 | True | teddy | 1.025950e-01 | False |
| 1951 | 863432100342583297 | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | Staffordshire_bullterrier | 0.690517 | True | French_bulldog | 1.033600e-01 | True | beagle | 7.948940e-02 | True |
| 1952 | 863553081350529029 | https://pbs.twimg.com/ext_tw_video_thumb/86355... | 1 | Eskimo_dog | 0.413330 | True | malamute | 3.476460e-01 | True | Siberian_husky | 1.495360e-01 | True |
| 1953 | 863907417377173506 | https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg | 1 | marmot | 0.358828 | False | meerkat | 1.747030e-01 | False | weasel | 1.234850e-01 | False |
| 1954 | 864197398364647424 | https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg | 4 | golden_retriever | 0.945905 | True | Labrador_retriever | 2.126360e-02 | True | Tibetan_mastiff | 2.049280e-02 | True |
| 1955 | 864279568663928832 | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | bull_mastiff | 0.668613 | True | French_bulldog | 1.805620e-01 | True | Staffordshire_bullterrier | 5.223740e-02 | True |
| 1956 | 864873206498414592 | https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg | 2 | pole | 0.478616 | False | lakeside | 1.141820e-01 | False | wreck | 5.592650e-02 | False |
| 1957 | 865006731092295680 | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | Pembroke | 0.989882 | True | Cardigan | 9.906460e-03 | True | basenji | 1.349520e-04 | True |
| 1958 | 865359393868664832 | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | Chesapeake_Bay_retriever | 0.832435 | True | Labrador_retriever | 1.635510e-01 | True | Weimaraner | 2.770250e-03 | True |
| 1959 | 865718153858494464 | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | golden_retriever | 0.673664 | True | kuvasz | 1.575230e-01 | True | Labrador_retriever | 1.260730e-01 | True |
| 1960 | 866334964761202691 | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | Samoyed | 0.984086 | True | Pomeranian | 7.919280e-03 | True | keeshond | 3.328130e-03 | True |
| 1961 | 866450705531457537 | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | French_bulldog | 0.905334 | True | Boston_bull | 7.805970e-02 | True | pug | 1.770920e-03 | True |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | flat-coated_retriever | 0.514730 | True | groenendael | 3.064070e-01 | True | curly-coated_retriever | 6.131410e-02 | True |
| 1963 | 867051520902168576 | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | Samoyed | 0.471403 | True | Pekinese | 3.022190e-01 | True | Pomeranian | 1.566060e-01 | True |
| 1964 | 867072653475098625 | https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg | 1 | Blenheim_spaniel | 0.352946 | True | papillon | 2.117660e-01 | True | Pekinese | 1.129520e-01 | True |
| 1965 | 867421006826221569 | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | Eskimo_dog | 0.616457 | True | Siberian_husky | 3.813300e-01 | True | malamute | 1.670220e-03 | True |
| 1966 | 867774946302451713 | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | Border_collie | 0.661953 | True | Cardigan | 1.757180e-01 | True | collie | 8.714240e-02 | True |
| 1967 | 867900495410671616 | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | Labrador_retriever | 0.522644 | True | kuvasz | 3.324610e-01 | True | dalmatian | 3.200810e-02 | True |
| 1968 | 868552278524837888 | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | whippet | 0.378151 | True | Italian_greyhound | 2.759350e-01 | True | American_Staffordshire_terrier | 9.499060e-02 | True |
| 1969 | 868622495443632128 | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | Labrador_retriever | 0.868107 | True | Great_Pyrenees | 6.097300e-02 | True | Saint_Bernard | 3.348890e-02 | True |
| 1970 | 868880397819494401 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1971 | 869227993411051520 | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | Pembroke | 0.664181 | True | Chihuahua | 1.692340e-01 | True | Cardigan | 1.327000e-01 | True |
| 1972 | 869596645499047938 | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | Chihuahua | 0.955156 | True | toy_terrier | 8.053730e-03 | True | muzzle | 6.295630e-03 | False |
| 1973 | 869702957897576449 | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | Pembroke | 0.993449 | True | Cardigan | 6.325080e-03 | True | Chihuahua | 1.775980e-04 | True |
| 1974 | 869772420881756160 | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | Pembroke | 0.980148 | True | Cardigan | 1.927110e-02 | True | malamute | 1.362600e-04 | True |
| 1975 | 870063196459192321 | https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg | 1 | comic_book | 0.534409 | False | envelope | 2.807220e-01 | False | book_jacket | 4.378550e-02 | False |
| 1976 | 870308999962521604 | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | Greater_Swiss_Mountain_dog | 0.622752 | True | Appenzeller | 1.584630e-01 | True | EntleBucher | 1.481150e-01 | True |
| 1977 | 870374049280663552 | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | golden_retriever | 0.841001 | True | Great_Pyrenees | 9.927840e-02 | True | Labrador_retriever | 3.262130e-02 | True |
| 1978 | 870656317836468226 | https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg | 4 | Pembroke | 0.945495 | True | Cardigan | 4.587550e-02 | True | beagle | 4.329430e-03 | True |
| 1979 | 870804317367881728 | https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg | 1 | home_theater | 0.168290 | False | sandbar | 9.804040e-02 | False | television | 7.972940e-02 | False |
| 1980 | 871032628920680449 | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | kelpie | 0.398053 | True | macaque | 6.895490e-02 | False | dingo | 5.060180e-02 | False |
| 1981 | 871515927908634625 | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | komondor | 0.974781 | True | briard | 2.004130e-02 | True | swab | 3.228240e-03 | False |
| 1982 | 871762521631449091 | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | Labrador_retriever | 0.921393 | True | golden_retriever | 6.460800e-02 | True | bloodhound | 3.383370e-03 | True |
| 1983 | 871879754684805121 | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | Shetland_sheepdog | 0.969171 | True | collie | 1.826070e-02 | True | Pomeranian | 8.515340e-03 | True |
| 1984 | 872122724285648897 | https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg | 1 | basketball | 0.808396 | False | pug | 6.673630e-02 | True | dalmatian | 5.456980e-02 | True |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | Labrador_retriever | 0.972019 | True | flat-coated_retriever | 8.178280e-03 | True | Chesapeake_Bay_retriever | 7.359270e-03 | True |
| 1986 | 872486979161796608 | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | Pembroke | 0.931861 | True | Cardigan | 3.772120e-02 | True | Chihuahua | 1.196670e-02 | True |
| 1987 | 872620804844003328 | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | cocker_spaniel | 0.513191 | True | Sussex_spaniel | 1.590880e-01 | True | standard_poodle | 1.495090e-01 | True |
| 1988 | 872820683541237760 | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | pug | 0.999120 | True | French_bulldog | 5.519200e-04 | True | bull_mastiff | 7.289040e-05 | True |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | Labrador_retriever | 0.476913 | True | Chesapeake_Bay_retriever | 1.741450e-01 | True | German_short-haired_pointer | 9.286140e-02 | True |
| 1990 | 873213775632977920 | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | vizsla | 0.619782 | True | bloodhound | 3.380690e-01 | True | Chesapeake_Bay_retriever | 1.267630e-02 | True |
| 1991 | 873580283840344065 | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | Newfoundland | 0.678537 | True | Tibetan_mastiff | 2.440220e-01 | True | chow | 4.852950e-02 | True |
| 1992 | 873697596434513921 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1993 | 874012996292530176 | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | Cardigan | 0.806674 | True | Pembroke | 1.166220e-01 | True | kelpie | 4.918190e-02 | True |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | flat-coated_retriever | 0.832177 | True | black-and-tan_coonhound | 4.043690e-02 | True | Newfoundland | 2.822830e-02 | True |
| 1995 | 874296783580663808 | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | cocker_spaniel | 0.437216 | True | miniature_poodle | 2.771910e-01 | True | toy_poodle | 1.574020e-01 | True |
| 1996 | 874680097055178752 | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | Labrador_retriever | 0.836052 | True | Staffordshire_bullterrier | 4.706910e-02 | True | beagle | 3.600710e-02 | True |
| 1997 | 875021211251597312 | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | West_Highland_white_terrier | 0.714319 | True | Siberian_husky | 9.191330e-02 | True | Great_Pyrenees | 4.603820e-02 | True |
| 1998 | 875144289856114688 | https://pbs.twimg.com/ext_tw_video_thumb/87514... | 1 | Siberian_husky | 0.245048 | True | Pembroke | 2.237160e-01 | True | dingo | 1.607530e-01 | False |
| 1999 | 875747767867523072 | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | Labrador_retriever | 0.799551 | True | Chesapeake_Bay_retriever | 1.799750e-01 | True | vizsla | 4.617600e-03 | True |
| 2000 | 876120275196170240 | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | Bernese_mountain_dog | 0.534327 | True | Saint_Bernard | 3.463120e-01 | True | Greater_Swiss_Mountain_dog | 9.493270e-02 | True |
| 2001 | 876484053909872640 | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | golden_retriever | 0.874566 | True | Irish_terrier | 3.735420e-02 | True | chow | 1.672360e-02 | True |
| 2002 | 876838120628539392 | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | bloodhound | 0.575751 | True | redbone | 2.409700e-01 | True | Tibetan_mastiff | 8.893480e-02 | True |
| 2003 | 877201837425926144 | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | Pembroke | 0.931120 | True | Cardigan | 6.869820e-02 | True | basenji | 8.173790e-05 | True |
| 2004 | 877316821321428993 | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | Saluki | 0.509967 | True | Italian_greyhound | 9.049730e-02 | True | golden_retriever | 7.940580e-02 | True |
| 2005 | 877556246731214848 | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | basset | 0.995368 | True | Welsh_springer_spaniel | 1.936210e-03 | True | bathtub | 4.679190e-04 | False |
| 2006 | 877611172832227328 | https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg | 1 | Irish_setter | 0.364729 | True | golden_retriever | 2.029070e-01 | True | Irish_terrier | 1.074730e-01 | True |
| 2007 | 877736472329191424 | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | Chesapeake_Bay_retriever | 0.837956 | True | Labrador_retriever | 6.203420e-02 | True | Weimaraner | 4.059910e-02 | True |
| 2008 | 878057613040115712 | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | French_bulldog | 0.839097 | True | Boston_bull | 7.879940e-02 | True | toy_terrier | 1.524340e-02 | True |
| 2009 | 878281511006478336 | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | basset | 0.320420 | True | collie | 2.159750e-01 | True | Appenzeller | 1.285070e-01 | True |
| 2010 | 878776093423087618 | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | Italian_greyhound | 0.734684 | True | whippet | 1.504870e-01 | True | Ibizan_hound | 3.972460e-02 | True |
| 2011 | 879008229531029506 | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | vizsla | 0.960513 | True | miniature_pinscher | 9.430650e-03 | True | American_Staffordshire_terrier | 8.711300e-03 | True |
| 2012 | 879050749262655488 | https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg | 1 | tabby | 0.311861 | False | window_screen | 1.691230e-01 | False | Egyptian_cat | 1.329320e-01 | False |
| 2013 | 879376492567855104 | https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg | 1 | tricycle | 0.663601 | False | Labrador_retriever | 3.349610e-02 | True | Pembroke | 1.882660e-02 | True |
| 2014 | 879415818425184262 | https://pbs.twimg.com/ext_tw_video_thumb/87941... | 1 | English_springer | 0.383404 | True | Boston_bull | 1.349670e-01 | True | Cardigan | 1.104810e-01 | True |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | German_short-haired_pointer | 0.479896 | True | vizsla | 1.243530e-01 | True | bath_towel | 7.332020e-02 | False |
| 2016 | 879862464715927552 | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | basset | 0.813507 | True | beagle | 1.466540e-01 | True | cocker_spaniel | 9.485020e-03 | True |
| 2017 | 880095782870896641 | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | miniature_pinscher | 0.120298 | True | Rhodesian_ridgeback | 1.063950e-01 | True | beagle | 1.060730e-01 | True |
| 2018 | 880221127280381952 | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | Chihuahua | 0.238525 | True | meerkat | 1.042560e-01 | False | clumber | 5.258030e-02 | True |
| 2019 | 880465832366813184 | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | golden_retriever | 0.913255 | True | Labrador_retriever | 2.632860e-02 | True | cocker_spaniel | 9.370820e-03 | True |
| 2020 | 880872448815771648 | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | Pembroke | 0.791416 | True | Norwich_terrier | 6.139290e-02 | True | Chihuahua | 3.372570e-02 | True |
| 2021 | 880935762899988482 | https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg | 1 | street_sign | 0.251801 | False | umbrella | 1.151230e-01 | False | traffic_light | 6.953380e-02 | False |
| 2022 | 881268444196462592 | https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg | 1 | tusker | 0.473303 | False | Indian_elephant | 2.456460e-01 | False | ibex | 5.566070e-02 | False |
| 2023 | 881536004380872706 | https://pbs.twimg.com/ext_tw_video_thumb/88153... | 1 | Samoyed | 0.281463 | True | Angora | 2.720660e-01 | False | Persian_cat | 1.148540e-01 | False |
| 2024 | 881666595344535552 | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | Saluki | 0.529012 | True | Afghan_hound | 2.500030e-01 | True | golden_retriever | 1.607390e-01 | True |
| 2025 | 881906580714921986 | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | Weimaraner | 0.291539 | True | Chesapeake_Bay_retriever | 2.789660e-01 | True | koala | 1.270170e-01 | False |
| 2026 | 882045870035918850 | https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg | 1 | web_site | 0.949591 | False | dhole | 1.732580e-02 | False | golden_retriever | 6.940630e-03 | True |
| 2027 | 882268110199369728 | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | golden_retriever | 0.762211 | True | Labrador_retriever | 9.898490e-02 | True | cocker_spaniel | 1.719950e-02 | True |
| 2028 | 882627270321602560 | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | Pembroke | 0.542982 | True | Chihuahua | 2.519880e-01 | True | Cardigan | 1.076990e-01 | True |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | Labrador_retriever | 0.850050 | True | Chesapeake_Bay_retriever | 7.425700e-02 | True | flat-coated_retriever | 1.557940e-02 | True |
| 2030 | 882992080364220416 | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | Eskimo_dog | 0.466778 | True | Siberian_husky | 4.060440e-01 | True | dingo | 7.341440e-02 | False |
| 2031 | 883117836046086144 | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | golden_retriever | 0.949562 | True | Labrador_retriever | 4.594790e-02 | True | kuvasz | 2.470940e-03 | True |
| 2032 | 883360690899218434 | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | chow | 0.987997 | True | Tibetan_mastiff | 7.098720e-03 | True | Newfoundland | 2.140330e-03 | True |
| 2033 | 883482846933004288 | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | golden_retriever | 0.943082 | True | Labrador_retriever | 3.240900e-02 | True | kuvasz | 5.500720e-03 | True |
| 2034 | 883838122936631299 | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | Doberman | 0.610946 | True | miniature_pinscher | 2.996030e-01 | True | kelpie | 6.302030e-02 | True |
| 2035 | 884162670584377345 | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | German_shepherd | 0.707046 | True | malinois | 1.993960e-01 | True | Norwegian_elkhound | 4.914760e-02 | True |
| 2036 | 884441805382717440 | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | Pembroke | 0.993225 | True | Cardigan | 3.216480e-03 | True | Chihuahua | 2.080890e-03 | True |
| 2037 | 884562892145688576 | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | pug | 0.546406 | True | French_bulldog | 4.042910e-01 | True | Brabancon_griffon | 4.400190e-02 | True |
| 2038 | 884876753390489601 | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | chow | 0.822103 | True | Norwich_terrier | 1.060750e-01 | True | Norfolk_terrier | 3.734850e-02 | True |
| 2039 | 884925521741709313 | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | Italian_greyhound | 0.259916 | True | American_Staffordshire_terrier | 1.984510e-01 | True | Staffordshire_bullterrier | 1.277250e-01 | True |
| 2040 | 885167619883638784 | https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg | 4 | malamute | 0.812482 | True | Siberian_husky | 7.171250e-02 | True | Eskimo_dog | 5.576970e-02 | True |
| 2041 | 885311592912609280 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 2042 | 885528943205470208 | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | pug | 0.369275 | True | Labrador_retriever | 2.658350e-01 | True | kuvasz | 1.346970e-01 | True |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | Blenheim_spaniel | 0.972494 | True | Shih-Tzu | 6.630120e-03 | True | Bernese_mountain_dog | 6.239150e-03 | True |
| 2044 | 886258384151887873 | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | pug | 0.943575 | True | shower_cap | 2.528560e-02 | False | Siamese_cat | 2.848920e-03 | False |
| 2045 | 886366144734445568 | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | French_bulldog | 0.999201 | True | Chihuahua | 3.611780e-04 | True | Boston_bull | 7.556160e-05 | True |
| 2046 | 886680336477933568 | https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg | 1 | convertible | 0.738995 | False | sports_car | 1.399520e-01 | False | car_wheel | 4.417270e-02 | False |
| 2047 | 886736880519319552 | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | kuvasz | 0.309706 | True | Great_Pyrenees | 1.861360e-01 | True | Dandie_Dinmont | 8.634630e-02 | True |
| 2048 | 886983233522544640 | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | Chihuahua | 0.793469 | True | toy_terrier | 1.435280e-01 | True | can_opener | 3.225290e-02 | False |
| 2049 | 887101392804085760 | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | Samoyed | 0.733942 | True | Eskimo_dog | 3.502950e-02 | True | Staffordshire_bullterrier | 2.970470e-02 | True |
| 2050 | 887343217045368832 | https://pbs.twimg.com/ext_tw_video_thumb/88734... | 1 | Mexican_hairless | 0.330741 | True | sea_lion | 2.756450e-01 | False | Weimaraner | 1.342030e-01 | True |
| 2051 | 887473957103951883 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2052 | 887517139158093824 | https://pbs.twimg.com/ext_tw_video_thumb/88751... | 1 | limousine | 0.130432 | False | tow_truck | 2.917540e-02 | False | shopping_cart | 2.632080e-02 | False |
| 2053 | 887705289381826560 | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | basset | 0.821664 | True | redbone | 8.758150e-02 | True | Weimaraner | 2.623640e-02 | True |
| 2054 | 888078434458587136 | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | French_bulldog | 0.995026 | True | pug | 9.319080e-04 | True | bull_mastiff | 9.032110e-04 | True |
| 2055 | 888202515573088257 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2056 | 888554962724278272 | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | Siberian_husky | 0.700377 | True | Eskimo_dog | 1.665110e-01 | True | malamute | 1.114110e-01 | True |
| 2057 | 888804989199671297 | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | golden_retriever | 0.469760 | True | Labrador_retriever | 1.841720e-01 | True | English_setter | 7.348170e-02 | True |
| 2058 | 888917238123831296 | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | golden_retriever | 0.714719 | True | Tibetan_mastiff | 1.201840e-01 | True | Labrador_retriever | 1.055060e-01 | True |
| 2059 | 889278841981685760 | https://pbs.twimg.com/ext_tw_video_thumb/88927... | 1 | whippet | 0.626152 | True | borzoi | 1.947420e-01 | True | Saluki | 2.735070e-02 | True |
| 2060 | 889531135344209921 | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | golden_retriever | 0.953442 | True | Labrador_retriever | 1.383410e-02 | True | redbone | 7.957750e-03 | True |
| 2061 | 889638837579907072 | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | French_bulldog | 0.991650 | True | boxer | 2.128640e-03 | True | Staffordshire_bullterrier | 1.498180e-03 | True |
| 2062 | 889665388333682689 | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | Pembroke | 0.966327 | True | Cardigan | 2.735570e-02 | True | basenji | 4.633230e-03 | True |
| 2063 | 889880896479866881 | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | French_bulldog | 0.377417 | True | Labrador_retriever | 1.513170e-01 | True | muzzle | 8.298110e-02 | False |
| 2064 | 890006608113172480 | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | Samoyed | 0.957979 | True | Pomeranian | 1.388350e-02 | True | chow | 8.167480e-03 | True |
| 2065 | 890240255349198849 | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | Pembroke | 0.511319 | True | Cardigan | 4.510380e-01 | True | Chihuahua | 2.924820e-02 | True |
| 2066 | 890609185150312448 | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | Irish_terrier | 0.487574 | True | Irish_setter | 1.930540e-01 | True | Chesapeake_Bay_retriever | 1.181840e-01 | True |
| 2067 | 890729181411237888 | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | Pomeranian | 0.566142 | True | Eskimo_dog | 1.784060e-01 | True | Pembroke | 7.650690e-02 | True |
| 2068 | 890971913173991426 | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | Appenzeller | 0.341703 | True | Border_collie | 1.992870e-01 | True | ice_lolly | 1.935480e-01 | False |
| 2069 | 891087950875897856 | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | Chesapeake_Bay_retriever | 0.425595 | True | Irish_terrier | 1.163170e-01 | True | Indian_elephant | 7.690220e-02 | False |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 | True | English_springer | 2.257700e-01 | True | German_short-haired_pointer | 1.752190e-01 | True |
| 2071 | 891689557279858688 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | paper_towel | 0.170278 | False | Labrador_retriever | 1.680860e-01 | True | spatula | 4.083590e-02 | False |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | Chihuahua | 0.716012 | True | malamute | 7.825300e-02 | True | kelpie | 3.137890e-02 | True |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | Chihuahua | 0.323581 | True | Pekinese | 9.064650e-02 | True | papillon | 6.895690e-02 | True |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 8.585110e-02 | False | banana | 7.611000e-02 | False |
clean_images = pd.melt(clean_images,
id_vars = [ 'tweet_id','jpg_url','img_num','p1_conf','p1_dog','p2_conf','p2_dog','p3_conf','p3_dog'],
value_vars = ['p1', 'p2', 'p3'],
var_name = 'p1-p3',
value_name = 'dog_breed')
clean_images.head()
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | p1-p3 | dog_breed | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 0.465074 | True | 0.156665 | True | 0.061428 | True | p1 | Welsh_springer_spaniel |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 0.506826 | True | 0.074192 | True | 0.072010 | True | p1 | redbone |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 0.596461 | True | 0.138584 | True | 0.116197 | True | p1 | German_shepherd |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 0.408143 | True | 0.360687 | True | 0.222752 | True | p1 | Rhodesian_ridgeback |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 0.560311 | True | 0.243682 | True | 0.154629 | True | p1 | miniature_pinscher |
# DRopping the old column(p1-p3)
clean_images.drop('p1-p3', axis = 1, inplace = True)
#checking for columns to see if the drop worked
clean_images.columns
Index(['tweet_id', 'jpg_url', 'img_num', 'p1_conf', 'p1_dog', 'p2_conf',
'p2_dog', 'p3_conf', 'p3_dog', 'dog_breed'],
dtype='object')
#checking for duplicates
clean_images.tweet_id.duplicated().sum()
4150
clean_images.drop_duplicates("tweet_id",inplace = True)
#test
clean_images.tweet_id.duplicated().sum()
0
clean_images.head(20)
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | dog_breed | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 0.465074 | True | 0.156665 | True | 0.061428 | True | Welsh_springer_spaniel |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 0.506826 | True | 0.074192 | True | 0.072010 | True | redbone |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 0.596461 | True | 0.138584 | True | 0.116197 | True | German_shepherd |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 0.408143 | True | 0.360687 | True | 0.222752 | True | Rhodesian_ridgeback |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 0.560311 | True | 0.243682 | True | 0.154629 | True | miniature_pinscher |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | 0.651137 | True | 0.263788 | True | 0.016199 | True | Bernese_mountain_dog |
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | 0.933012 | False | 0.045885 | False | 0.017885 | False | box_turtle |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | 0.692517 | True | 0.058279 | True | 0.054449 | False | chow |
| 8 | 666057090499244032 | https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg | 1 | 0.962465 | False | 0.014594 | False | 0.007959 | True | shopping_cart |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | 0.201493 | True | 0.192305 | True | 0.082086 | True | miniature_poodle |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | 0.775930 | True | 0.093718 | True | 0.072427 | True | golden_retriever |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | 0.503672 | True | 0.174201 | True | 0.109454 | True | Gordon_setter |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | 0.260857 | True | 0.175382 | True | 0.097471 | True | Walker_hound |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | 0.489814 | True | 0.404722 | True | 0.048960 | True | pug |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | 0.195217 | True | 0.078260 | True | 0.075628 | True | bloodhound |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | 0.582330 | True | 0.166192 | True | 0.089688 | True | Lhasa |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | 0.298617 | True | 0.149842 | True | 0.133649 | True | English_setter |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | 0.965932 | False | 0.033919 | False | 0.000052 | False | hen |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | 0.086502 | False | 0.085547 | False | 0.079480 | False | desktop_computer |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | 0.176053 | True | 0.111884 | True | 0.111152 | True | Italian_greyhound |
#assessing the df before deleting the non dog breeds in the dog breed column
clean_images.head()
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | dog_breed | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 0.465074 | True | 0.156665 | True | 0.061428 | True | Welsh_springer_spaniel |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | 0.506826 | True | 0.074192 | True | 0.072010 | True | redbone |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 0.596461 | True | 0.138584 | True | 0.116197 | True | German_shepherd |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 0.408143 | True | 0.360687 | True | 0.222752 | True | Rhodesian_ridgeback |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 0.560311 | True | 0.243682 | True | 0.154629 | True | miniature_pinscher |
#to see each unique value in the dog_breed column
clean_images.dog_breed.value_counts()
golden_retriever 150 Labrador_retriever 100 Pembroke 89 Chihuahua 83 pug 57 chow 44 Samoyed 43 toy_poodle 39 Pomeranian 38 cocker_spaniel 30 malamute 30 French_bulldog 26 miniature_pinscher 23 Chesapeake_Bay_retriever 23 seat_belt 22 Siberian_husky 20 German_shepherd 20 Staffordshire_bullterrier 20 Cardigan 19 web_site 19 Eskimo_dog 18 Maltese_dog 18 Shetland_sheepdog 18 teddy 18 beagle 18 Lakeland_terrier 17 Rottweiler 17 Shih-Tzu 17 Italian_greyhound 16 kuvasz 16 West_Highland_white_terrier 14 Great_Pyrenees 14 American_Staffordshire_terrier 13 basset 13 Pekinese 13 dalmatian 13 vizsla 13 Airedale 12 Border_collie 12 Old_English_sheepdog 12 kelpie 11 Blenheim_spaniel 11 soft-coated_wheaten_terrier 11 schipperke 10 Bernese_mountain_dog 10 English_springer 10 collie 10 boxer 10 whippet 9 dingo 9 malinois 9 Great_Dane 9 borzoi 9 tennis_ball 9 Boston_bull 9 flat-coated_retriever 8 standard_poodle 8 Yorkshire_terrier 8 doormat 8 Norwegian_elkhound 8 Doberman 8 papillon 8 miniature_poodle 8 English_setter 8 Siamese_cat 7 Border_terrier 7 bath_towel 7 basenji 7 German_short-haired_pointer 7 tub 7 hamster 7 swing 7 bloodhound 7 Norfolk_terrier 7 Brittany_spaniel 7 Saint_Bernard 7 home_theater 6 llama 6 ice_bear 6 Irish_terrier 6 Irish_setter 6 car_mirror 6 Dandie_Dinmont 6 redbone 6 porcupine 5 shopping_cart 5 Tibetan_mastiff 5 Walker_hound 5 bull_mastiff 5 Lhasa 5 ox 5 minivan 5 Bedlington_terrier 5 hippopotamus 5 Newfoundland 5 brown_bear 4 hog 4 bow_tie 4 keeshond 4 wombat 4 Norwich_terrier 4 jigsaw_puzzle 4 barrow 4 miniature_schnauzer 4 Rhodesian_ridgeback 4 Arctic_fox 4 patio 4 Mexican_hairless 4 bluetick 4 Gordon_setter 4 Afghan_hound 4 Saluki 4 bathtub 4 Weimaraner 4 guinea_pig 4 Tibetan_terrier 4 goose 4 balloon 3 muzzle 3 briard 3 prison 3 wood_rabbit 3 mousetrap 3 Greater_Swiss_Mountain_dog 3 refrigerator 3 sea_lion 3 toilet_tissue 3 stone_wall 3 white_wolf 3 Leonberg 3 motor_scooter 3 space_heater 3 ram 3 cowboy_hat 3 Irish_water_spaniel 3 Scottish_deerhound 3 dishwasher 3 Welsh_springer_spaniel 3 vacuum 3 triceratops 3 Christmas_stocking 3 komondor 3 ski_mask 3 common_iguana 3 washbasin 3 curly-coated_retriever 3 Arabian_camel 3 cairn 3 window_shade 3 Ibizan_hound 3 jack-o'-lantern 3 comic_book 3 seashore 3 Brabancon_griffon 3 giant_schnauzer 3 gas_pump 2 jellyfish 2 shower_curtain 2 lakeside 2 black-and-tan_coonhound 2 tusker 2 bustard 2 acorn_squash 2 hen 2 paper_towel 2 koala 2 bubble 2 leatherback_turtle 2 Angora 2 wire-haired_fox_terrier 2 cash_machine 2 wallaby 2 paddle 2 frilled_lizard 2 street_sign 2 toyshop 2 dough 2 upright 2 birdhouse 2 tabby 2 axolotl 2 snorkel 2 dogsled 2 hermit_crab 2 snail 2 Australian_terrier 2 hyena 2 meerkat 2 toy_terrier 2 geyser 2 feather_boa 2 Loafer 2 Appenzeller 2 weasel 2 chimpanzee 2 laptop 2 badger 2 sorrel 2 Sussex_spaniel 2 wool 2 ostrich 2 box_turtle 2 gondola 2 tiger_shark 1 bib 1 binoculars 1 sulphur-crested_cockatoo 1 coil 1 agama 1 wild_boar 1 traffic_light 1 hotdog 1 handkerchief 1 espresso 1 cup 1 bonnet 1 polecat 1 alp 1 coho 1 hammer 1 studio_couch 1 cliff 1 timber_wolf 1 nail 1 lawn_mower 1 three-toed_sloth 1 sunglasses 1 desktop_computer 1 rapeseed 1 hand_blower 1 peacock 1 American_black_bear 1 loupe 1 school_bus 1 cowboy_boot 1 jersey 1 wooden_spoon 1 leopard 1 mortarboard 1 teapot 1 military_uniform 1 washer 1 coffee_mug 1 fountain 1 pencil_box 1 barbell 1 grille 1 revolver 1 envelope 1 syringe 1 marmot 1 pole 1 basketball 1 tricycle 1 convertible 1 limousine 1 restaurant 1 shield 1 rotisserie 1 bookcase 1 conch 1 skunk 1 bookshop 1 radio_telescope 1 cougar 1 African_grey 1 coral_reef 1 lion 1 maillot 1 Madagascar_cat 1 Egyptian_cat 1 silky_terrier 1 giant_panda 1 long-horned_beetle 1 clumber 1 sundial 1 padlock 1 pool_table 1 quilt 1 beach_wagon 1 remote_control 1 bakery 1 pedestal 1 four-poster 1 cheeseburger 1 otter 1 suit 1 killer_whale 1 terrapin 1 cuirass 1 microwave 1 starfish 1 sandbar 1 leaf_beetle 1 lynx 1 water_bottle 1 toilet_seat 1 shopping_basket 1 robin 1 crash_helmet 1 slug 1 soccer_ball 1 African_crocodile 1 tick 1 ocarina 1 bearskin 1 bow 1 carton 1 candle 1 bee_eater 1 china_cabinet 1 banana 1 dhole 1 sea_urchin 1 lacewing 1 ping-pong_ball 1 platypus 1 scorpion 1 flamingo 1 microphone 1 mud_turtle 1 pitcher 1 African_hunting_dog 1 boathouse 1 picket_fence 1 pot 1 zebra 1 piggy_bank 1 park_bench 1 prayer_rug 1 stove 1 king_penguin 1 tailed_frog 1 snowmobile 1 ibex 1 electric_fan 1 sliding_door 1 damselfly 1 hare 1 fiddler_crab 1 bannister 1 crane 1 Scotch_terrier 1 bighorn 1 standard_schnauzer 1 bison 1 ice_lolly 1 hay 1 dining_table 1 groenendael 1 beaver 1 swab 1 grey_fox 1 hummingbird 1 clog 1 fire_engine 1 minibus 1 cheetah 1 walking_stick 1 canoe 1 trombone 1 book_jacket 1 rain_barrel 1 black-footed_ferret 1 guenon 1 Japanese_spaniel 1 water_buffalo 1 maze 1 harp 1 panpipe 1 mailbox 1 EntleBucher 1 earthstar 1 pillow 1 carousel 1 bald_eagle 1 lorikeet 1 orange 1 Name: dog_breed, dtype: int64
From the cell above and below, it is seen that we have alot of absurd values that are not dog breeds, we will have to delete all such rows of data , to have a clean data set. To do this, we have to create a list of all the entries that are not dog breeds by going through eah row. Upon close observation, dog breed entrieds with a value count of 60 and below are not dog entries
#creation of list
non_dogs = ['neck_brace','steam_locomotive','wild_boar','cradle','hen','stone_wall','canoe','waffle_iron','crutch',
'paper_towel','snorkel','indian_elephant','barrel','wig','mitten','snowmobile','shovel','purse',
'aschan','window_screen','chimpanzee','comic_book','prison','bookshop','red_wolf','loafer','box_turtle','christmas_stocking','television',
'minivan','sulphur-crested_cockatoo','jaguar','monitor','oxygen_mask','binder','Loggerhead','vacuum','vacuum','indri','consomme','lion',
'lion','tripod','shoji','studio_couch','soap_dispenser','handkerchief','bighorn','squirrel_monkey','bolete','bathtub','refrigerator',
'limousine','limousine','cup','dishwasher','junco','minibus','guinea_pig','persian_cat','swing','tennis_ball','bath_towel','bath_towel',
'white_wolf','ice_bear',"jack-o-'-lantern",'hay','zebra','african_hunting_dog','hyena','toyshop','hog','weasel','arctic_fox','toilet_tissue',
'hog','web_site','bathtub','shopping_cart','muzzle','sea_lion','seat_belt','doormat','beaver','rain_barrel','crib','pretzel','power_drill',
'leafhopper','leafhopper','hair_spray','plow','home_theater','remote_control','paintbrush','tabby','shower_curtain','greenhouse','hatchet',
'spatula','crossword_puzzle','can_opener','bagel','stove','piggy_bank','seashore','wool','tiger_cat','street_sign','hair_slide','rapeseed',
'fountain','radiator','loupe','bouvier_des_flandres','window_shade','panpipe','military_uniform','mashed_potato','mosquito_net','crate',
'hippopotamus','terrapin','golfcart','grocery_store','chest','sorrel','coyote','earthstar','computer_keyboard','snow_leopard','bannister',
'buckeye','hotdog','syringe','carousel','chain_saw','bow','hand_blower','quill','table_lamp','black-footed_ferret','koala','hamster',
'tub','feather_boa','sunglasses','wallaby','brown_bear','sombrero','cougar','ski_mask','gibbon','water_buffalo','fur_coat','shopping_basket',
'quilt','car_mirror','racket','dhole','goose','sandbar','wombat','bubble','ram','swab','book_jacket','jack-o-lantern','giant_panda','pillow',
'american_black_bear','soccer_ball','polecat','space_heater','toilet_seat','dogsled','cowboy_boot','grey_fox','bucket','acorn_squash',
'hare','king_penguin','mongoose','shower_cap','timber_wolf','basketball','paddle','leatherback_turtle','affenpinscher','carton','bathing_cap',
'toyshop','hyena','arabian_camel','barrow','macaque','cowboy_hat','meerkat','sleeping_bag','three-toed_sloth','bonnet','bow_tie','maillot',
'maillot','Sea_lion','conch','Wood_rabbit','menu','ox','corn','skunk','marmot','sock','mouse','tricycle','washbasin','Poncho','Wok','egyptian_cat',
'sliding_door','oscilloscope','mousetrap','nipple','academic_gown','bathtub','hamster','tub','swing','guinea_pig','muzzle','sea_lion','weasel',
'arabian_camel','koala','toilet_tissue','ram','black-footed-ferret','sunglasses','shopping_cart','ox','badger','badger','fountain','jigsaw_puzzle',
'quilt','sandbar','carton','minivan','feather_boa','sandbar','fur_coat','prison','paper_towel','barber_chair','stingray','crash_helmet',
'lifeboat','cockroach','grey_whale','toucan','lynx','candle','tiger','bobsled','accordion','tarantula','sulphur_butterfly','siamang','tray',
'breastplate','orangutan','folding_chair','sandal','promontory','sarong','coral_fungus','European_gallinule','police_van','tree_frog',
'banded_gecko','leaf_beetle','suit','horse_cart','quail','medicine_chest','go-kart','apron','cannon','streetcar','trench_coat','trombone',
'ping-pong_ball','spotted_salamander','knee_pad','toaster','pelican','hamper','cornet','spotlight','drake','lorikeet','coffeepot','grille',
'revolver','pole','barracouta','desk','armadillo','torch','spindle','turnstile','Gila_monster','chain_mail','breakwater','solar_dish',
'barbershop','lesser_panda','great_grey_owl','patridge','dock','projectile','dumbell','rule','pencil_box','sweatshirt','lighter','necklace',
'ipod','dam','confectionery','volcano','saltshaker','gar','washer','leopard','coho','fire_engine','lacewing','flamingo','microphone',
'pitcher','pitcher','bee_eater','starfish','screen','robin','dumbbell','patridge','acorn','jeep','African_chamelon','Band_Aid','French_horn',
'balance_beam','bulletproof_vest','wooden_spoon','wing','cardoon','wolf_spider','stinkhorn','drumstick','plastic_bag','African_crocodile',
'African_grey','agama','alp','American_black_bear','Arabian_camel','Arctic_fox','axolotl','bakery','bald_eagle','balloon','banana','barbell',
'beach_wagon','bearskin','bib','binoculars','birdhouse','bison','boathouse','bookcase','cash_machine','cheeseburger','cheetah','china_cabinet',
'Christmas_stocking','cliff','clog','coffee_mug','coil','clumber','common_iguana','convertible','coral_reef','crane','cuirass','damselfly',
'desktop_computer','dining_table','dough','Egyptian_cat','electric_fan','envelope','espresso','fiddler_crab','four-poster','frilled_lizard',
'gas_pump','geyser','gondola','guenon','hammer','harp','hermit_crab','hummingbird','ibex',"jack-o'-lantern",'jellyfish','jersey','killer_whale',
'lakeside','laptop','lawn_mower','llama','Loafer','long-horned_beetle','Madagascar_cat','mailbox','maze','microwave','motor_scooter','mud_turtle',
'nail','ocarina','orange','ostrich','otter','padlock','park_bench','patio','peacock','pedestal','pool_table','porcupine','pot','prayer_rug',
'radio_telescope','redbone','restaurant','school_bus','scorpion','sea_urchin','shield','Siamese_cat','slug','snail','sundial','tailed_frog',
'teapot','tick','tiger_shark','traffic_light','triceratops','tusker','upright','walking_stick','water_bottle','wood_rabbit','platypus']
#creation of the loops to use in deleting the non dogs
for breed in non_dogs:
clean_breeds = clean_images[(clean_images['dog_breed'] == breed)].index
clean_images.drop(clean_breeds, inplace=True)
#testing
(clean_images['dog_breed'].eq('tick')).any()
False
#testing
clean_images.dog_breed.value_counts()
golden_retriever 150 Labrador_retriever 100 Pembroke 89 Chihuahua 83 pug 57 chow 44 Samoyed 43 toy_poodle 39 Pomeranian 38 malamute 30 cocker_spaniel 30 French_bulldog 26 miniature_pinscher 23 Chesapeake_Bay_retriever 23 Siberian_husky 20 German_shepherd 20 Staffordshire_bullterrier 20 Cardigan 19 Eskimo_dog 18 beagle 18 Shetland_sheepdog 18 teddy 18 Maltese_dog 18 Lakeland_terrier 17 Rottweiler 17 Shih-Tzu 17 kuvasz 16 Italian_greyhound 16 West_Highland_white_terrier 14 Great_Pyrenees 14 Pekinese 13 American_Staffordshire_terrier 13 dalmatian 13 basset 13 vizsla 13 Airedale 12 Old_English_sheepdog 12 Border_collie 12 kelpie 11 Blenheim_spaniel 11 soft-coated_wheaten_terrier 11 collie 10 schipperke 10 English_springer 10 boxer 10 Bernese_mountain_dog 10 malinois 9 borzoi 9 dingo 9 Great_Dane 9 whippet 9 Boston_bull 9 flat-coated_retriever 8 Norwegian_elkhound 8 English_setter 8 Doberman 8 papillon 8 Yorkshire_terrier 8 standard_poodle 8 miniature_poodle 8 German_short-haired_pointer 7 Norfolk_terrier 7 basenji 7 Brittany_spaniel 7 bloodhound 7 Saint_Bernard 7 Border_terrier 7 Dandie_Dinmont 6 Irish_setter 6 Irish_terrier 6 Lhasa 5 Tibetan_mastiff 5 bull_mastiff 5 Newfoundland 5 Bedlington_terrier 5 Walker_hound 5 Rhodesian_ridgeback 4 Mexican_hairless 4 Tibetan_terrier 4 Gordon_setter 4 bluetick 4 miniature_schnauzer 4 Saluki 4 keeshond 4 Norwich_terrier 4 Weimaraner 4 Afghan_hound 4 briard 3 Leonberg 3 Irish_water_spaniel 3 Scottish_deerhound 3 Welsh_springer_spaniel 3 komondor 3 giant_schnauzer 3 curly-coated_retriever 3 Greater_Swiss_Mountain_dog 3 cairn 3 Brabancon_griffon 3 Ibizan_hound 3 wire-haired_fox_terrier 2 Australian_terrier 2 Angora 2 Appenzeller 2 bustard 2 Sussex_spaniel 2 toy_terrier 2 black-and-tan_coonhound 2 rotisserie 1 silky_terrier 1 standard_schnauzer 1 ice_lolly 1 groenendael 1 Scotch_terrier 1 African_hunting_dog 1 EntleBucher 1 Japanese_spaniel 1 picket_fence 1 mortarboard 1 Name: dog_breed, dtype: int64
#testing
#we can use any of the words in quotes from the cell above
(clean_images['dog_breed'].eq('jeep')).any()
False
clean_images
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | dog_breed | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 0.465074 | True | 0.156665 | True | 6.142850e-02 | True | Welsh_springer_spaniel |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 0.596461 | True | 0.138584 | True | 1.161970e-01 | True | German_shepherd |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 0.408143 | True | 0.360687 | True | 2.227520e-01 | True | Rhodesian_ridgeback |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 0.560311 | True | 0.243682 | True | 1.546290e-01 | True | miniature_pinscher |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | 0.651137 | True | 0.263788 | True | 1.619920e-02 | True | Bernese_mountain_dog |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | 0.692517 | True | 0.058279 | True | 5.444860e-02 | False | chow |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | 0.201493 | True | 0.192305 | True | 8.208610e-02 | True | miniature_poodle |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | 0.775930 | True | 0.093718 | True | 7.242660e-02 | True | golden_retriever |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | 0.503672 | True | 0.174201 | True | 1.094540e-01 | True | Gordon_setter |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | 0.260857 | True | 0.175382 | True | 9.747050e-02 | True | Walker_hound |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | 0.489814 | True | 0.404722 | True | 4.895950e-02 | True | pug |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | 0.195217 | True | 0.078260 | True | 7.562780e-02 | True | bloodhound |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | 0.582330 | True | 0.166192 | True | 8.968830e-02 | True | Lhasa |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | 0.298617 | True | 0.149842 | True | 1.336490e-01 | True | English_setter |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | 0.176053 | True | 0.111884 | True | 1.111520e-01 | True | Italian_greyhound |
| 20 | 666287406224695296 | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | 0.857531 | True | 0.063064 | True | 2.558060e-02 | True | Maltese_dog |
| 23 | 666345417576210432 | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | 0.858744 | True | 0.054787 | True | 1.424090e-02 | True | golden_retriever |
| 24 | 666353288456101888 | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | 0.336874 | True | 0.147655 | True | 9.341240e-02 | True | malamute |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | 0.326467 | True | 0.259551 | True | 2.068030e-01 | True | soft-coated_wheaten_terrier |
| 27 | 666396247373291520 | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | 0.978108 | True | 0.009397 | True | 4.576810e-03 | True | Chihuahua |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | 0.529139 | True | 0.244220 | True | 1.738100e-01 | True | black-and-tan_coonhound |
| 30 | 666418789513326592 | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | 0.149680 | True | 0.148258 | True | 1.428600e-01 | True | toy_terrier |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | 0.906777 | True | 0.090346 | True | 1.116870e-03 | True | Blenheim_spaniel |
| 32 | 666428276349472768 | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | 0.371361 | True | 0.249394 | True | 2.418780e-01 | True | Pembroke |
| 34 | 666435652385423360 | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | 0.184130 | True | 0.056775 | False | 3.676340e-02 | False | Chesapeake_Bay_retriever |
| 35 | 666437273139982337 | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | 0.671853 | True | 0.124680 | True | 4.409420e-02 | True | Chihuahua |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | 0.322084 | True | 0.287955 | True | 1.663310e-01 | True | curly-coated_retriever |
| 37 | 666454714377183233 | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | 0.278954 | True | 0.237612 | True | 1.711060e-01 | True | dalmatian |
| 38 | 666644823164719104 | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | 0.044333 | True | 0.043209 | True | 3.890560e-02 | True | Ibizan_hound |
| 39 | 666649482315059201 | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | 0.447803 | True | 0.170497 | True | 1.392060e-01 | True | Border_collie |
| 40 | 666691418707132416 | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | 0.975401 | True | 0.008687 | True | 5.394040e-03 | True | German_shepherd |
| 41 | 666701168228331520 | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | 0.887707 | True | 0.029307 | True | 2.075630e-02 | True | Labrador_retriever |
| 42 | 666739327293083650 | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | 0.546933 | True | 0.165255 | True | 9.595890e-02 | True | miniature_poodle |
| 44 | 666781792255496192 | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | 0.618316 | True | 0.151363 | True | 8.598910e-02 | True | Italian_greyhound |
| 46 | 666804364988780544 | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | 0.328792 | True | 0.283545 | True | 5.746150e-02 | True | English_setter |
| 47 | 666817836334096384 | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | 0.496953 | True | 0.285276 | True | 7.376370e-02 | True | miniature_schnauzer |
| 48 | 666826780179869698 | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | 0.359383 | True | 0.148759 | False | 1.060070e-01 | True | Maltese_dog |
| 49 | 666835007768551424 | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | 0.448459 | True | 0.124030 | True | 1.101830e-01 | False | Airedale |
| 54 | 667044094246576128 | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | 0.765266 | True | 0.206694 | True | 1.066690e-02 | False | golden_retriever |
| 55 | 667062181243039745 | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | 0.825678 | True | 0.090998 | True | 2.295620e-02 | True | Chesapeake_Bay_retriever |
| 57 | 667073648344346624 | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | 0.483682 | True | 0.092494 | True | 5.749540e-02 | True | Chihuahua |
| 58 | 667090893657276420 | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | 0.959514 | True | 0.005370 | True | 2.641330e-03 | True | Chihuahua |
| 59 | 667119796878725120 | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | 0.741563 | True | 0.057866 | True | 3.912510e-02 | True | Pembroke |
| 60 | 667138269671505920 | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | 0.747713 | True | 0.243629 | True | 1.803970e-03 | True | West_Highland_white_terrier |
| 61 | 667152164079423490 | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | 0.535411 | True | 0.087544 | True | 6.205000e-02 | True | toy_poodle |
| 62 | 667160273090932737 | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | 0.471351 | True | 0.091992 | True | 8.738540e-02 | True | golden_retriever |
| 63 | 667165590075940865 | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | 0.140173 | True | 0.134094 | True | 8.189980e-02 | True | miniature_pinscher |
| 64 | 667171260800061440 | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | 0.841265 | True | 0.052744 | True | 3.440170e-02 | True | giant_schnauzer |
| 65 | 667174963120574464 | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | 0.266437 | True | 0.243223 | True | 7.280630e-02 | True | toy_poodle |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | 0.318981 | True | 0.215218 | True | 1.060140e-01 | True | soft-coated_wheaten_terrier |
| 67 | 667177989038297088 | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | 0.259249 | True | 0.176293 | True | 1.123690e-01 | True | vizsla |
| 68 | 667182792070062081 | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | 0.949892 | True | 0.010564 | True | 5.821410e-03 | True | golden_retriever |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | 0.283640 | True | 0.148112 | True | 9.558480e-02 | True | Rottweiler |
| 71 | 667200525029539841 | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | 0.694904 | True | 0.232006 | True | 5.063510e-02 | True | Siberian_husky |
| 72 | 667211855547486208 | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | 0.462556 | True | 0.454937 | True | 2.419330e-02 | True | golden_retriever |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | 0.709545 | False | 0.127285 | False | 2.856750e-02 | False | teddy |
| 74 | 667393430834667520 | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | 0.557009 | True | 0.271963 | True | 7.347290e-02 | True | papillon |
| 75 | 667405339315146752 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | 0.381377 | True | 0.127998 | True | 6.935680e-02 | True | Saint_Bernard |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | 0.999091 | True | 0.000450 | True | 1.571400e-04 | True | Rottweiler |
| 79 | 667453023279554560 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | 0.825670 | True | 0.056639 | True | 5.401840e-02 | True | Labrador_retriever |
| 80 | 667455448082227200 | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | 0.676376 | True | 0.054933 | True | 4.057550e-02 | True | Tibetan_terrier |
| 81 | 667470559035432960 | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | 0.304175 | True | 0.223427 | True | 7.331650e-02 | True | toy_poodle |
| 82 | 667491009379606528 | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | 0.852088 | True | 0.132264 | False | 5.729980e-03 | False | borzoi |
| 83 | 667495797102141441 | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | 0.143957 | True | 0.118651 | False | 9.248170e-02 | False | Chihuahua |
| 84 | 667502640335572993 | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | 0.996709 | True | 0.001688 | True | 7.116670e-04 | True | Labrador_retriever |
| 85 | 667509364010450944 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | 0.636169 | True | 0.119256 | True | 8.254920e-02 | True | beagle |
| 86 | 667517642048163840 | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | 0.125176 | True | 0.084571 | True | 8.134690e-02 | True | Italian_greyhound |
| 88 | 667530908589760512 | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | 0.633037 | True | 0.146391 | True | 4.618370e-02 | True | golden_retriever |
| 89 | 667534815156183040 | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | 0.435254 | True | 0.307407 | True | 3.315830e-02 | True | Pembroke |
| 90 | 667538891197542400 | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | 0.618957 | True | 0.300313 | True | 5.341200e-02 | True | Yorkshire_terrier |
| 91 | 667544320556335104 | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | 0.412893 | True | 0.312958 | True | 7.196040e-02 | True | Pomeranian |
| 92 | 667546741521195010 | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | 0.787424 | True | 0.202225 | True | 4.047220e-03 | False | toy_poodle |
| 97 | 667728196545200128 | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | 0.360159 | True | 0.293744 | True | 2.706730e-01 | True | kuvasz |
| 99 | 667773195014021121 | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | 0.360465 | True | 0.093494 | True | 6.903820e-02 | False | West_Highland_white_terrier |
| 101 | 667793409583771648 | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | 0.535073 | True | 0.451219 | True | 8.163610e-03 | True | dalmatian |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | 0.508392 | True | 0.262239 | True | 4.891980e-02 | True | flat-coated_retriever |
| 104 | 667832474953625600 | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | 0.214200 | True | 0.146789 | False | 1.041520e-01 | True | miniature_pinscher |
| 105 | 667861340749471744 | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | 0.967275 | True | 0.016168 | True | 1.127740e-02 | True | malamute |
| 109 | 667885044254572545 | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | 0.088530 | True | 0.087499 | True | 7.500770e-02 | False | malamute |
| 110 | 667886921285246976 | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | 0.800432 | True | 0.168445 | True | 8.949520e-03 | True | Pomeranian |
| 111 | 667902449697558528 | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | 0.298881 | True | 0.279479 | True | 1.984280e-01 | True | Norwegian_elkhound |
| 114 | 667924896115245057 | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | 0.209051 | True | 0.203980 | False | 1.659140e-01 | True | Labrador_retriever |
| 116 | 668113020489474048 | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | 0.548896 | True | 0.191101 | True | 5.981410e-02 | True | Pembroke |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | 0.918834 | False | 0.037793 | False | 1.101490e-02 | False | Angora |
| 119 | 668171859951755264 | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | 0.664834 | True | 0.060343 | False | 5.983750e-02 | False | Chihuahua |
| 120 | 668190681446379520 | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | 0.958402 | True | 0.026764 | True | 7.789910e-03 | True | Blenheim_spaniel |
| 121 | 668204964695683073 | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | 0.655180 | True | 0.107884 | True | 6.583470e-02 | True | Labrador_retriever |
| 122 | 668221241640230912 | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | 0.395101 | True | 0.372115 | True | 1.487850e-01 | True | chow |
| 124 | 668237644992782336 | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | 0.809320 | True | 0.071311 | False | 3.786960e-02 | True | chow |
| 125 | 668248472370458624 | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | 0.734547 | True | 0.068294 | True | 4.636710e-02 | True | Chihuahua |
| 127 | 668268907921326080 | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | 0.484830 | True | 0.425303 | True | 1.475350e-02 | True | Pembroke |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | 0.406374 | True | 0.263854 | True | 1.508440e-01 | True | soft-coated_wheaten_terrier |
| 129 | 668286279830867968 | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | 0.215944 | True | 0.189214 | True | 1.130100e-01 | True | golden_retriever |
| 134 | 668484198282485761 | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | 0.587372 | True | 0.182411 | True | 4.096800e-02 | True | standard_poodle |
| 135 | 668496999348633600 | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | 0.412879 | True | 0.161488 | True | 1.124950e-01 | True | Staffordshire_bullterrier |
| 136 | 668507509523615744 | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | 0.055379 | True | 0.054322 | True | 5.191340e-02 | True | basenji |
| 137 | 668528771708952576 | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | 0.195835 | True | 0.121607 | True | 8.146440e-02 | True | Labrador_retriever |
| 138 | 668537837512433665 | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | 0.372988 | True | 0.250445 | True | 1.897370e-01 | True | Lakeland_terrier |
| 139 | 668542336805281792 | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | 0.267695 | True | 0.254050 | True | 2.123810e-01 | True | American_Staffordshire_terrier |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | 0.985649 | True | 0.007078 | True | 3.053230e-03 | True | Shih-Tzu |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | 0.380772 | False | 0.100554 | False | 8.471350e-02 | False | bustard |
| 144 | 668623201287675904 | https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg | 4 | 0.708163 | True | 0.091372 | True | 6.732550e-02 | False | Chihuahua |
| 146 | 668627278264475648 | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | 0.965403 | True | 0.008604 | True | 8.003560e-03 | True | French_bulldog |
| 147 | 668631377374486528 | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | 0.904549 | True | 0.022529 | True | 1.524320e-02 | True | miniature_schnauzer |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | 0.589011 | True | 0.390987 | True | 3.310350e-03 | True | Pekinese |
| 149 | 668636665813057536 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | 0.999956 | True | 0.000043 | False | 2.160900e-07 | False | komondor |
| 153 | 668655139528511488 | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | 0.319110 | True | 0.103338 | True | 9.193000e-02 | True | beagle |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | 0.285508 | True | 0.146832 | True | 6.086480e-02 | False | Chesapeake_Bay_retriever |
| 156 | 668826086256599040 | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | 0.640185 | True | 0.153700 | True | 6.845650e-02 | True | malinois |
| 157 | 668852170888998912 | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | 0.903529 | True | 0.041497 | True | 2.250050e-02 | True | golden_retriever |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | 0.413379 | False | 0.325623 | False | 3.553660e-02 | True | teddy |
| 159 | 668892474547511297 | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | 0.421979 | True | 0.227060 | True | 1.682110e-01 | True | kelpie |
| 160 | 668902994700836864 | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | 0.828425 | True | 0.043082 | True | 2.800360e-02 | True | Brittany_spaniel |
| 161 | 668932921458302977 | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | 0.237638 | True | 0.195573 | True | 1.446580e-01 | True | standard_poodle |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | 0.367492 | True | 0.272621 | True | 6.700630e-02 | True | cocker_spaniel |
| 164 | 668975677807423489 | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | 0.605437 | True | 0.184783 | True | 1.162990e-01 | True | basset |
| 165 | 668979806671884288 | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | 0.608537 | True | 0.097078 | True | 7.602220e-02 | True | golden_retriever |
| 169 | 668989615043424256 | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | 0.917326 | True | 0.014918 | False | 1.352440e-02 | True | pug |
| 172 | 669000397445533696 | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | 0.822940 | True | 0.177035 | True | 2.335260e-05 | True | Pembroke |
| 173 | 669006782128353280 | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | 0.127178 | True | 0.054215 | True | 4.859160e-02 | False | Chihuahua |
| 175 | 669037058363662336 | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | 0.803528 | True | 0.053871 | True | 3.225740e-02 | True | Chihuahua |
| 176 | 669203728096960512 | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | 0.910452 | True | 0.055090 | True | 1.489660e-02 | True | pug |
| 178 | 669216679721873412 | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | 0.992758 | True | 0.003379 | True | 1.229630e-03 | True | golden_retriever |
| 180 | 669327207240699904 | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | 0.919584 | True | 0.049669 | True | 1.021610e-02 | True | golden_retriever |
| 181 | 669328503091937280 | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | 0.424202 | True | 0.237660 | True | 5.257170e-02 | True | Siberian_husky |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | 0.379656 | False | 0.212343 | True | 9.699530e-02 | True | teddy |
| 184 | 669354382627049472 | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | 0.973990 | True | 0.010832 | True | 2.098650e-03 | True | Chihuahua |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | 0.367818 | True | 0.280642 | True | 1.842460e-01 | True | Labrador_retriever |
| 186 | 669363888236994561 | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | 0.539004 | True | 0.406550 | True | 4.148440e-02 | True | golden_retriever |
| 187 | 669367896104181761 | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | 0.749394 | True | 0.133579 | True | 3.019840e-02 | True | basset |
| 188 | 669371483794317312 | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | 0.483268 | True | 0.307465 | True | 7.052380e-02 | True | Brabancon_griffon |
| 189 | 669375718304980992 | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | 0.168762 | True | 0.107479 | True | 9.784590e-02 | True | Airedale |
| 190 | 669393256313184256 | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | 0.359843 | True | 0.139519 | True | 1.327460e-01 | True | cocker_spaniel |
| 191 | 669564461267722241 | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | 0.623685 | True | 0.259920 | True | 8.252970e-02 | True | toy_poodle |
| 192 | 669567591774625800 | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | 0.980511 | True | 0.009166 | True | 2.658510e-03 | True | Chihuahua |
| 194 | 669573570759163904 | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | 0.946828 | True | 0.022344 | True | 9.461660e-03 | True | West_Highland_white_terrier |
| 196 | 669597912108789760 | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | 0.595665 | True | 0.214474 | True | 1.472350e-01 | False | Eskimo_dog |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | 0.659619 | True | 0.193539 | True | 3.932710e-02 | True | Maltese_dog |
| 200 | 669680153564442624 | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | 0.141257 | True | 0.137744 | True | 1.037920e-01 | True | dalmatian |
| 202 | 669683899023405056 | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | 0.998275 | True | 0.000605 | True | 5.156880e-04 | True | Pomeranian |
| 204 | 669753178989142016 | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | 0.858494 | True | 0.026319 | False | 2.240520e-02 | True | Pembroke |
| 206 | 669926384437997569 | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | 0.984231 | True | 0.010231 | True | 2.218970e-03 | True | Pomeranian |
| 207 | 669942763794931712 | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | 0.743216 | True | 0.217282 | True | 2.847350e-02 | True | vizsla |
| 208 | 669970042633789440 | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | 0.734744 | True | 0.131066 | True | 8.150940e-02 | True | miniature_pinscher |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | 0.953071 | False | 0.007027 | False | 5.368170e-03 | False | teddy |
| 211 | 670003130994700288 | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | 0.375313 | True | 0.174911 | True | 1.158880e-01 | True | beagle |
| 214 | 670046952931721218 | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | 0.998335 | True | 0.000647 | True | 3.918660e-04 | True | Blenheim_spaniel |
| 216 | 670061506722140161 | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | 0.329339 | True | 0.305294 | True | 1.116860e-01 | True | Italian_greyhound |
| 218 | 670073503555706880 | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | 0.601886 | True | 0.340106 | True | 5.004130e-02 | True | malamute |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | 0.273492 | True | 0.132944 | True | 1.245620e-01 | True | German_short-haired_pointer |
| 221 | 670093938074779648 | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | 0.383346 | True | 0.153678 | True | 1.385430e-01 | True | toy_poodle |
| 222 | 670290420111441920 | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | 0.368876 | True | 0.282102 | True | 1.787950e-01 | True | Chihuahua |
| 223 | 670303360680108032 | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | 0.380278 | True | 0.342806 | True | 1.562490e-01 | False | Shetland_sheepdog |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | 0.254856 | True | 0.227716 | True | 2.232630e-01 | True | Irish_terrier |
| 225 | 670338931251150849 | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | 0.245033 | True | 0.137709 | True | 8.917250e-02 | True | cairn |
| 227 | 670374371102445568 | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | 0.974936 | True | 0.011661 | True | 2.688990e-03 | True | English_springer |
| 228 | 670385711116361728 | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | 0.178027 | True | 0.105969 | True | 7.871970e-02 | True | whippet |
| 229 | 670403879788544000 | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | 0.802223 | True | 0.172557 | True | 7.162800e-03 | True | pug |
| 231 | 670411370698022913 | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | 0.584397 | True | 0.064201 | True | 6.086770e-02 | True | Maltese_dog |
| 234 | 670421925039075328 | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | 0.275793 | True | 0.073596 | False | 5.490510e-02 | False | Chihuahua |
| 236 | 670428280563085312 | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | 0.335269 | True | 0.305850 | True | 6.332530e-02 | True | chow |
| 240 | 670442337873600512 | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | 0.403552 | True | 0.256302 | True | 1.873150e-01 | True | Sussex_spaniel |
| 241 | 670444955656130560 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | 0.403698 | True | 0.347609 | True | 1.371860e-01 | True | English_springer |
| 248 | 670676092097810432 | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | 0.676102 | True | 0.040826 | True | 3.953330e-02 | True | Dandie_Dinmont |
| 249 | 670679630144274432 | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | 0.342734 | True | 0.229065 | True | 1.040290e-01 | True | Ibizan_hound |
| 250 | 670691627984359425 | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | 0.071124 | True | 0.068398 | False | 6.696390e-02 | True | Shetland_sheepdog |
| 251 | 670704688707301377 | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | 0.419838 | True | 0.351876 | True | 5.109370e-02 | True | Norwich_terrier |
| 252 | 670717338665226240 | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | 0.368161 | True | 0.350973 | True | 1.149020e-01 | True | Pomeranian |
| 255 | 670755717859713024 | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | 0.994065 | True | 0.001827 | True | 1.821310e-03 | True | keeshond |
| 256 | 670764103623966721 | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | 0.172850 | True | 0.072702 | True | 3.749420e-02 | False | Norfolk_terrier |
| 257 | 670778058496974848 | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | 0.776612 | True | 0.112032 | True | 3.905140e-02 | True | pug |
| 258 | 670780561024270336 | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | 0.244889 | True | 0.056993 | False | 5.399260e-02 | False | Labrador_retriever |
| 259 | 670782429121134593 | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | 0.952963 | True | 0.036575 | True | 1.977400e-03 | True | Chihuahua |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | 0.777124 | False | 0.127438 | True | 2.400660e-02 | True | dingo |
| 262 | 670789397210615808 | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | 0.295966 | True | 0.143527 | True | 1.389920e-01 | True | beagle |
| 264 | 670797304698376195 | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | 0.472197 | True | 0.090938 | True | 6.436600e-02 | True | Pembroke |
| 265 | 670803562457407488 | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | 0.344101 | True | 0.210282 | True | 1.962790e-01 | True | basenji |
| 266 | 670804601705242624 | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | 0.868560 | True | 0.090129 | True | 2.172210e-02 | True | Pomeranian |
| 267 | 670807719151067136 | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | 0.958035 | True | 0.013892 | True | 4.601140e-03 | True | Old_English_sheepdog |
| 268 | 670811965569282048 | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | 0.994090 | True | 0.003973 | True | 1.406190e-03 | True | basset |
| 269 | 670815497391357952 | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | 0.919714 | True | 0.073430 | True | 9.056790e-04 | True | American_Staffordshire_terrier |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | 0.947453 | True | 0.017001 | True | 1.543210e-02 | True | Labrador_retriever |
| 273 | 670832455012716544 | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | 0.317607 | True | 0.274901 | True | 1.146430e-01 | False | malinois |
| 274 | 670833812859932673 | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | 0.609853 | True | 0.265442 | False | 2.746040e-02 | True | Pekinese |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | 0.963622 | True | 0.016017 | True | 7.931920e-03 | False | Shih-Tzu |
| 279 | 671109016219725825 | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | 0.855959 | True | 0.036723 | True | 2.925780e-02 | True | basenji |
| 280 | 671115716440031232 | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | 0.406341 | True | 0.143366 | True | 1.298020e-01 | False | malinois |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | 0.180380 | True | 0.180194 | True | 1.736560e-01 | True | Shih-Tzu |
| 283 | 671138694582165504 | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | 0.587342 | True | 0.268952 | True | 9.052750e-02 | True | Samoyed |
| 285 | 671147085991960577 | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | 0.467202 | True | 0.440122 | True | 5.869010e-02 | True | Yorkshire_terrier |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | 0.781201 | True | 0.061206 | True | 4.885570e-02 | True | Rottweiler |
| 287 | 671154572044468225 | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | 0.495047 | True | 0.350188 | True | 1.424000e-01 | True | Labrador_retriever |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | 0.733025 | False | 0.119377 | False | 2.698290e-02 | True | African_hunting_dog |
| 291 | 671182547775299584 | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | 0.331179 | True | 0.218601 | True | 1.825200e-01 | True | Rottweiler |
| 292 | 671186162933985280 | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | 0.319106 | True | 0.169134 | True | 1.258150e-01 | True | Chihuahua |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | 0.382918 | False | 0.108809 | False | 3.887820e-02 | False | picket_fence |
| 294 | 671355857343524864 | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | 0.313811 | True | 0.165585 | True | 5.609410e-02 | True | miniature_poodle |
| 295 | 671357843010908160 | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | 0.831757 | True | 0.043306 | True | 3.677300e-02 | True | Italian_greyhound |
| 298 | 671485057807351808 | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | 0.627901 | True | 0.276421 | True | 5.787350e-02 | True | Samoyed |
| 299 | 671486386088865792 | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | 0.827035 | True | 0.087648 | True | 3.121790e-02 | False | German_shepherd |
| 302 | 671504605491109889 | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | 0.259115 | True | 0.177669 | False | 7.171250e-02 | True | toy_poodle |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | 0.428275 | True | 0.111472 | True | 1.050160e-01 | True | Lakeland_terrier |
| 305 | 671520732782923777 | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | 0.551031 | True | 0.135262 | True | 6.155740e-02 | False | Pomeranian |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | 0.782626 | True | 0.109678 | True | 5.211020e-02 | True | Doberman |
| 308 | 671536543010570240 | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | 0.537652 | True | 0.220617 | True | 6.829650e-02 | True | pug |
| 310 | 671542985629241344 | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | 0.980339 | True | 0.006693 | True | 6.157010e-03 | True | Shetland_sheepdog |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | 0.469373 | True | 0.270893 | True | 1.532330e-01 | True | Gordon_setter |
| 314 | 671729906628341761 | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | 0.431469 | True | 0.117122 | True | 9.006660e-02 | False | kuvasz |
| 316 | 671743150407421952 | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | 0.419427 | True | 0.237067 | True | 1.041930e-01 | False | toy_poodle |
| 319 | 671768281401958400 | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | 0.500373 | True | 0.112796 | True | 6.289270e-02 | True | Chihuahua |
| 320 | 671789708968640512 | https://pbs.twimg.com/tweet_video_thumb/CVKtH-... | 1 | 0.114259 | True | 0.062275 | False | 4.970020e-02 | False | dalmatian |
| 322 | 671866342182637568 | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | 0.875614 | True | 0.032182 | True | 1.723250e-02 | True | Labrador_retriever |
| 326 | 671891728106971137 | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | 0.567933 | True | 0.349401 | True | 6.939620e-02 | False | Labrador_retriever |
| 327 | 671896809300709376 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | 0.243529 | True | 0.227150 | False | 5.605670e-02 | True | chow |
| 328 | 672068090318987265 | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | 0.863385 | True | 0.125746 | False | 2.972460e-03 | True | pug |
| 330 | 672095186491711488 | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | 0.794087 | True | 0.140796 | True | 4.468110e-02 | True | pug |
| 332 | 672139350159835138 | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | 0.290992 | True | 0.238120 | False | 1.155410e-01 | False | Rottweiler |
| 333 | 672160042234327040 | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | 0.561027 | True | 0.222114 | True | 6.545560e-02 | True | pug |
| 334 | 672169685991993344 | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | 0.991011 | True | 0.004032 | True | 1.275640e-03 | True | cocker_spaniel |
| 336 | 672222792075620352 | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | 0.958178 | True | 0.009117 | True | 7.731050e-03 | True | beagle |
| 338 | 672239279297454080 | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | 0.332536 | True | 0.258124 | True | 1.208730e-01 | True | pug |
| 339 | 672245253877968896 | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | 0.718944 | True | 0.178546 | False | 3.710310e-02 | True | Chihuahua |
| 340 | 672248013293752320 | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | 0.413173 | True | 0.335616 | True | 2.795230e-02 | True | Irish_terrier |
| 341 | 672254177670729728 | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | 0.979487 | True | 0.016850 | True | 1.617540e-03 | True | pug |
| 343 | 672264251789176834 | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | 0.609860 | True | 0.068134 | False | 5.922730e-02 | True | Chihuahua |
| 344 | 672267570918129665 | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | 0.716932 | True | 0.051234 | True | 4.438090e-02 | True | Irish_terrier |
| 345 | 672272411274932228 | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | 0.914685 | True | 0.014982 | True | 9.220550e-03 | False | pug |
| 346 | 672466075045466113 | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | 0.150424 | True | 0.088605 | True | 7.201430e-02 | True | cocker_spaniel |
| 348 | 672481316919734272 | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | 0.599454 | True | 0.106227 | True | 9.446490e-02 | True | Border_collie |
| 349 | 672482722825261057 | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | 0.586173 | True | 0.206620 | True | 6.065270e-02 | True | West_Highland_white_terrier |
| 350 | 672488522314567680 | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | 0.605358 | True | 0.108382 | True | 7.779770e-02 | True | Doberman |
| 351 | 672523490734551040 | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | 0.565981 | True | 0.081212 | True | 6.159600e-02 | True | golden_retriever |
| 354 | 672591762242805761 | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | 0.777659 | True | 0.112517 | True | 3.835090e-02 | True | kuvasz |
| 355 | 672594978741354496 | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | 0.755945 | True | 0.082337 | True | 2.703660e-02 | True | Great_Pyrenees |
| 356 | 672604026190569472 | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | 0.820158 | True | 0.178404 | True | 2.911580e-04 | False | toy_poodle |
| 359 | 672622327801233409 | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | 0.952773 | True | 0.010835 | True | 8.786010e-03 | True | golden_retriever |
| 360 | 672640509974827008 | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | 0.420155 | True | 0.266030 | True | 4.251450e-02 | True | Chesapeake_Bay_retriever |
| 362 | 672834301050937345 | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | 0.582560 | True | 0.258869 | True | 3.383450e-02 | False | Pembroke |
| 363 | 672877615439593473 | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | 0.412362 | True | 0.068066 | True | 4.507120e-02 | True | Chihuahua |
| 367 | 672964561327235073 | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | 0.292343 | True | 0.173364 | True | 4.550710e-02 | True | Chihuahua |
| 368 | 672968025906282496 | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | 0.678046 | True | 0.160273 | True | 6.564870e-02 | True | toy_poodle |
| 370 | 672975131468300288 | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | 0.836421 | True | 0.044668 | True | 3.657050e-02 | True | pug |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | 0.836632 | True | 0.073900 | True | 3.816010e-02 | True | Lakeland_terrier |
| 374 | 672995267319328768 | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | 0.719559 | True | 0.166927 | True | 1.013540e-01 | True | French_bulldog |
| 375 | 672997845381865473 | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | 0.517255 | True | 0.206053 | True | 1.270370e-01 | False | chow |
| 377 | 673213039743795200 | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | 0.888082 | True | 0.047727 | True | 4.139800e-02 | True | schipperke |
| 378 | 673240798075449344 | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | 0.443004 | True | 0.114162 | False | 9.463860e-02 | True | Airedale |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | 0.610453 | True | 0.166815 | True | 1.320150e-01 | True | Shih-Tzu |
| 380 | 673295268553605120 | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | 0.889241 | True | 0.064683 | True | 1.261260e-02 | True | golden_retriever |
| 381 | 673317986296586240 | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | 0.384099 | True | 0.079923 | True | 6.859410e-02 | True | miniature_pinscher |
| 382 | 673320132811366400 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | 0.978833 | True | 0.012763 | True | 1.853050e-03 | True | Samoyed |
| 384 | 673343217010679808 | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | 0.541408 | True | 0.156891 | True | 6.955580e-02 | True | Chihuahua |
| 386 | 673350198937153538 | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | 0.119188 | True | 0.104014 | False | 9.394400e-02 | True | West_Highland_white_terrier |
| 387 | 673352124999274496 | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | 0.672808 | True | 0.275885 | True | 2.225500e-02 | True | golden_retriever |
| 388 | 673355879178194945 | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | 0.529248 | True | 0.168296 | True | 1.004520e-01 | True | Rottweiler |
| 389 | 673359818736984064 | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | 0.696568 | True | 0.104046 | True | 3.483250e-02 | True | English_setter |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | 0.255210 | False | 0.098285 | False | 7.273510e-02 | False | teddy |
| 392 | 673580926094458881 | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | 0.985062 | True | 0.006418 | True | 3.532590e-03 | True | beagle |
| 394 | 673612854080196609 | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | 0.223101 | True | 0.111106 | True | 8.562630e-02 | False | Newfoundland |
| 396 | 673656262056419329 | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | 0.700625 | True | 0.094698 | True | 5.755940e-02 | True | bull_mastiff |
| 397 | 673662677122719744 | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | 0.957670 | True | 0.012413 | True | 5.689130e-03 | True | Labrador_retriever |
| 398 | 673680198160809984 | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | 0.989853 | True | 0.003344 | False | 2.801720e-03 | True | Samoyed |
| 399 | 673686845050527744 | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | 0.185903 | True | 0.172951 | False | 1.661830e-01 | True | Pekinese |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | 0.340806 | True | 0.234898 | True | 2.034950e-01 | True | soft-coated_wheaten_terrier |
| 401 | 673689733134946305 | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | 0.382220 | True | 0.350140 | True | 9.887390e-02 | False | Chesapeake_Bay_retriever |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | 0.165383 | True | 0.116977 | True | 6.389890e-02 | True | Shih-Tzu |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | 0.935771 | True | 0.022561 | True | 8.846650e-03 | True | German_short-haired_pointer |
| 406 | 673708611235921920 | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | 0.936333 | True | 0.024211 | True | 9.434850e-03 | True | golden_retriever |
| 407 | 673709992831262724 | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | 0.330171 | True | 0.181580 | False | 1.782270e-01 | True | Chihuahua |
| 408 | 673711475735838725 | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | 0.607401 | True | 0.143836 | True | 6.390700e-02 | True | Maltese_dog |
| 410 | 673887867907739649 | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | 0.216767 | True | 0.190958 | True | 1.632880e-01 | True | Brabancon_griffon |
| 413 | 673956914389192708 | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | 0.586161 | True | 0.082744 | True | 4.587770e-02 | True | pug |
| 415 | 674014384960745472 | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | 0.742320 | True | 0.084937 | True | 6.832090e-02 | True | Pembroke |
| 416 | 674019345211760640 | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | 0.992732 | True | 0.005043 | True | 1.724780e-03 | True | collie |
| 417 | 674024893172875264 | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | 0.648500 | True | 0.339835 | True | 6.448460e-03 | False | Pomeranian |
| 418 | 674036086168010753 | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | 0.685617 | True | 0.151936 | True | 4.553110e-02 | True | toy_poodle |
| 419 | 674038233588723717 | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | 0.358459 | True | 0.206963 | True | 1.482360e-01 | True | Eskimo_dog |
| 420 | 674042553264685056 | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | 0.927975 | True | 0.068946 | True | 1.315750e-03 | True | toy_poodle |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | 0.179777 | True | 0.160580 | False | 1.321540e-01 | False | Shih-Tzu |
| 423 | 674053186244734976 | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | 0.984725 | True | 0.008730 | True | 2.194770e-03 | True | Cardigan |
| 425 | 674075285688614912 | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | 0.305392 | True | 0.250014 | True | 1.886680e-01 | True | Airedale |
| 426 | 674082852460433408 | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | 0.666957 | True | 0.028019 | True | 2.068270e-02 | False | Pomeranian |
| 427 | 674255168825880576 | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | 0.615741 | True | 0.199544 | True | 1.791070e-01 | True | Eskimo_dog |
| 428 | 674262580978937856 | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | 0.519428 | True | 0.121500 | True | 1.144980e-01 | True | Greater_Swiss_Mountain_dog |
| 430 | 674269164442398721 | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | 0.622921 | True | 0.048659 | True | 1.696550e-02 | True | pug |
| 431 | 674271431610523648 | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | 0.991454 | True | 0.004150 | True | 3.019130e-03 | True | German_shepherd |
| 432 | 674291837063053312 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | 0.611525 | True | 0.368566 | True | 3.329570e-03 | True | Cardigan |
| 437 | 674416750885273600 | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | 0.287201 | True | 0.250920 | True | 1.410120e-01 | True | Chihuahua |
| 438 | 674422304705744896 | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | 0.964497 | True | 0.009006 | True | 7.138830e-03 | False | golden_retriever |
| 440 | 674447403907457024 | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | 0.409909 | True | 0.244649 | True | 7.481950e-02 | True | Brabancon_griffon |
| 441 | 674468880899788800 | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | 0.526230 | True | 0.283647 | True | 6.766540e-02 | True | chow |
| 443 | 674638615994089473 | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | 0.846986 | True | 0.142014 | True | 2.605040e-03 | True | Pomeranian |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | 0.837448 | True | 0.086166 | True | 1.605220e-02 | True | flat-coated_retriever |
| 447 | 674670581682434048 | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | 0.180079 | True | 0.178033 | True | 7.796610e-02 | True | malamute |
| 449 | 674737130913071104 | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | 0.948537 | True | 0.014310 | True | 8.120240e-03 | True | Pomeranian |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | 0.175915 | True | 0.096534 | False | 6.414470e-02 | True | Dandie_Dinmont |
| 451 | 674743008475090944 | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | 0.583054 | True | 0.065990 | True | 6.523620e-02 | True | Bernese_mountain_dog |
| 452 | 674752233200820224 | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | 0.665516 | True | 0.173366 | True | 1.347830e-01 | True | vizsla |
| 454 | 674764817387900928 | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | 0.634695 | True | 0.309853 | False | 1.964100e-02 | True | Samoyed |
| 456 | 674774481756377088 | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | 0.407016 | True | 0.309978 | True | 2.276770e-01 | False | Chihuahua |
| 458 | 674788554665512960 | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | 0.349561 | True | 0.154711 | True | 1.342290e-01 | True | miniature_poodle |
| 459 | 674790488185167872 | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | 0.801903 | True | 0.193575 | True | 1.193050e-03 | True | Labrador_retriever |
| 460 | 674793399141146624 | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | 0.119693 | True | 0.072763 | True | 6.378590e-02 | True | giant_schnauzer |
| 461 | 674800520222154752 | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | 0.876479 | True | 0.096911 | True | 9.195670e-03 | False | Pembroke |
| 462 | 674805413498527744 | https://pbs.twimg.com/ext_tw_video_thumb/67480... | 1 | 0.594467 | True | 0.389994 | True | 7.096110e-03 | True | English_springer |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | 0.591829 | True | 0.204544 | True | 7.860190e-02 | True | Rottweiler |
| 464 | 675003128568291329 | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | 0.655279 | True | 0.104164 | True | 5.281770e-02 | True | Pembroke |
| 465 | 675006312288268288 | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | 0.654697 | True | 0.043389 | False | 4.284760e-02 | True | boxer |
| 467 | 675047298674663426 | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | 0.978007 | True | 0.007121 | True | 6.397830e-03 | True | Samoyed |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | 0.989519 | True | 0.005258 | True | 1.442830e-03 | True | dalmatian |
| 469 | 675111688094527488 | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | 0.631501 | True | 0.101927 | True | 6.264980e-02 | True | Labrador_retriever |
| 472 | 675145476954566656 | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | 0.458746 | True | 0.235504 | True | 1.168640e-01 | True | Labrador_retriever |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | 0.288447 | False | 0.229944 | True | 1.904070e-01 | True | dingo |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | 0.949215 | True | 0.016765 | True | 1.063730e-02 | True | golden_retriever |
| 475 | 675149409102012420 | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | 0.999876 | True | 0.000059 | True | 2.877850e-05 | True | chow |
| 478 | 675334060156301312 | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | 0.773135 | True | 0.116810 | True | 3.903620e-02 | True | Pembroke |
| 479 | 675349384339542016 | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | 0.866367 | True | 0.122079 | True | 4.019720e-03 | True | borzoi |
| 481 | 675362609739206656 | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | 0.479008 | True | 0.218289 | False | 1.399110e-01 | True | Labrador_retriever |
| 482 | 675372240448454658 | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | 0.416385 | True | 0.102933 | True | 8.729950e-02 | True | Chihuahua |
| 483 | 675432746517426176 | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | 0.986548 | True | 0.008862 | True | 6.935280e-04 | True | Labrador_retriever |
| 485 | 675489971617296384 | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | 0.139613 | True | 0.118647 | False | 9.395220e-02 | True | West_Highland_white_terrier |
| 486 | 675497103322386432 | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | 0.519589 | True | 0.064771 | True | 6.149130e-02 | True | vizsla |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | 0.240591 | True | 0.156916 | True | 9.089940e-02 | True | Scottish_deerhound |
| 489 | 675522403582218240 | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | 0.299708 | True | 0.263665 | True | 8.032330e-02 | True | cocker_spaniel |
| 490 | 675531475945709568 | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | 0.918441 | True | 0.027339 | True | 2.022100e-02 | True | Pembroke |
| 491 | 675534494439489536 | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | 0.749368 | True | 0.133738 | True | 4.991380e-02 | True | chow |
| 492 | 675706639471788032 | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | 0.990300 | True | 0.002080 | True | 2.013780e-03 | True | English_springer |
| 494 | 675710890956750848 | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | 0.441427 | True | 0.248885 | True | 1.649670e-01 | True | standard_schnauzer |
| 495 | 675740360753160193 | https://pbs.twimg.com/ext_tw_video_thumb/67574... | 1 | 0.800495 | True | 0.097756 | True | 6.841460e-02 | True | golden_retriever |
| 496 | 675781562965868544 | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | 0.921968 | True | 0.017811 | True | 1.355540e-02 | True | Maltese_dog |
| 497 | 675798442703122432 | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | 0.681218 | True | 0.125121 | True | 8.039820e-02 | True | beagle |
| 498 | 675820929667219457 | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | 0.556373 | True | 0.201675 | True | 1.108480e-01 | True | basset |
| 499 | 675822767435051008 | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | 0.460710 | True | 0.202765 | True | 1.332660e-01 | True | Pomeranian |
| 500 | 675845657354215424 | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | 0.883952 | True | 0.011057 | True | 9.839810e-03 | True | pug |
| 501 | 675853064436391936 | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | 0.868367 | True | 0.043305 | True | 2.820720e-02 | True | Labrador_retriever |
| 502 | 675870721063669760 | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | 0.263892 | True | 0.184193 | True | 1.822410e-01 | True | golden_retriever |
| 504 | 675888385639251968 | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | 0.672117 | True | 0.146147 | True | 2.314140e-02 | True | West_Highland_white_terrier |
| 505 | 675891555769696257 | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | 0.305637 | True | 0.232057 | True | 1.178060e-01 | True | Italian_greyhound |
| 506 | 675898130735476737 | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | 0.407430 | True | 0.077037 | True | 7.459730e-02 | True | Labrador_retriever |
| 507 | 676089483918516224 | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | 0.743808 | True | 0.106697 | True | 4.233530e-02 | True | bull_mastiff |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | 0.225848 | True | 0.186873 | True | 1.069870e-01 | True | Shih-Tzu |
| 510 | 676146341966438401 | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | 0.388332 | True | 0.284121 | True | 3.486810e-02 | False | Irish_water_spaniel |
| 511 | 676191832485810177 | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | 0.376741 | True | 0.173114 | True | 7.148510e-02 | False | Chihuahua |
| 514 | 676237365392908289 | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | 0.961996 | True | 0.021793 | True | 6.916290e-03 | True | French_bulldog |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | 0.098283 | False | 0.098029 | True | 7.785210e-02 | False | teddy |
| 516 | 676430933382295552 | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | 0.583875 | True | 0.203671 | True | 3.612170e-02 | True | golden_retriever |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | 0.579472 | True | 0.133446 | True | 9.439660e-02 | True | Maltese_dog |
| 518 | 676470639084101634 | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | 0.790386 | True | 0.022885 | True | 1.534340e-02 | False | golden_retriever |
| 519 | 676496375194980353 | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | 0.985387 | True | 0.004417 | True | 3.892870e-03 | True | pug |
| 520 | 676533798876651520 | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | 0.265274 | True | 0.167614 | False | 1.175060e-01 | False | chow |
| 523 | 676588346097852417 | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | 0.976577 | True | 0.014324 | True | 2.301920e-03 | True | Boston_bull |
| 524 | 676603393314578432 | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | 0.877021 | True | 0.034182 | True | 2.840400e-02 | True | whippet |
| 527 | 676617503762681856 | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | 0.841084 | True | 0.120530 | True | 6.600340e-03 | True | Chihuahua |
| 529 | 676811746707918848 | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | 0.440916 | True | 0.345806 | True | 6.033120e-02 | True | Chihuahua |
| 531 | 676821958043033607 | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | 0.869804 | True | 0.079814 | True | 1.326300e-02 | True | Great_Pyrenees |
| 532 | 676864501615042560 | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | 0.371146 | True | 0.099596 | False | 4.896790e-02 | True | Chesapeake_Bay_retriever |
| 534 | 676936541936185344 | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | 0.545286 | True | 0.081482 | True | 4.739110e-02 | False | Chesapeake_Bay_retriever |
| 536 | 676946864479084545 | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | 0.752707 | True | 0.055655 | True | 4.101780e-02 | True | Pekinese |
| 538 | 676949632774234114 | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | 0.206479 | True | 0.139339 | True | 1.146060e-01 | True | Welsh_springer_spaniel |
| 539 | 676957860086095872 | https://pbs.twimg.com/ext_tw_video_thumb/67695... | 1 | 0.772423 | True | 0.055902 | True | 3.115190e-02 | True | Labrador_retriever |
| 540 | 676975532580409345 | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | 0.363257 | True | 0.245862 | True | 1.255470e-01 | True | malamute |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | 0.282396 | True | 0.084112 | True | 5.953800e-02 | True | English_setter |
| 543 | 677269281705472000 | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | 0.656616 | True | 0.195405 | True | 1.310320e-02 | True | Shetland_sheepdog |
| 544 | 677301033169788928 | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | 0.661178 | True | 0.150119 | True | 1.197200e-01 | True | Japanese_spaniel |
| 545 | 677314812125323265 | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | 0.924127 | True | 0.054790 | True | 8.204040e-03 | True | Blenheim_spaniel |
| 547 | 677331501395156992 | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | 0.313464 | True | 0.218503 | True | 1.064620e-01 | True | beagle |
| 548 | 677334615166730240 | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | 0.859392 | True | 0.067292 | True | 4.953060e-02 | True | Lakeland_terrier |
| 549 | 677530072887205888 | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | 0.689259 | True | 0.026121 | True | 2.307470e-02 | True | Staffordshire_bullterrier |
| 550 | 677547928504967168 | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | 0.914978 | True | 0.084395 | True | 4.616630e-04 | True | American_Staffordshire_terrier |
| 552 | 677565715327688705 | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | 0.397295 | True | 0.199554 | True | 1.056410e-01 | False | basset |
| 554 | 677644091929329666 | https://pbs.twimg.com/ext_tw_video_thumb/67764... | 1 | 0.626236 | True | 0.128483 | True | 5.984040e-02 | False | Chihuahua |
| 556 | 677673981332312066 | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | 0.817908 | True | 0.077805 | False | 2.218420e-02 | True | Maltese_dog |
| 557 | 677687604918272002 | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | 0.573047 | True | 0.126758 | False | 1.080470e-01 | True | Pembroke |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | 0.916645 | True | 0.057883 | True | 2.012580e-02 | True | Shih-Tzu |
| 559 | 677700003327029250 | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | 0.120849 | True | 0.079206 | False | 6.308750e-02 | True | Siberian_husky |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | 0.662908 | False | 0.031891 | False | 2.543780e-02 | True | teddy |
| 561 | 677895101218201600 | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | 0.550702 | True | 0.060226 | True | 5.863100e-02 | True | dalmatian |
| 562 | 677918531514703872 | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | 0.199347 | True | 0.153225 | True | 1.077980e-01 | True | Eskimo_dog |
| 563 | 678021115718029313 | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | 0.822048 | True | 0.096085 | True | 3.270930e-02 | True | miniature_pinscher |
| 564 | 678255464182861824 | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | 0.613819 | True | 0.127931 | True | 6.212430e-02 | True | Chihuahua |
| 565 | 678278586130948096 | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | 0.897841 | True | 0.035717 | True | 1.710750e-02 | True | Maltese_dog |
| 566 | 678334497360859136 | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | 0.378643 | True | 0.095594 | True | 8.530920e-02 | True | Norfolk_terrier |
| 567 | 678341075375947776 | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | 0.853284 | True | 0.026230 | True | 2.412280e-02 | True | golden_retriever |
| 569 | 678389028614488064 | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | 0.516284 | True | 0.227402 | True | 1.032460e-01 | True | miniature_pinscher |
| 570 | 678396796259975168 | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | 0.956180 | True | 0.031803 | True | 6.276500e-03 | True | Pembroke |
| 572 | 678410210315247616 | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | 0.145877 | True | 0.098354 | True | 9.739340e-02 | True | schipperke |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | 0.759945 | True | 0.101194 | True | 5.603740e-02 | True | Maltese_dog |
| 574 | 678446151570427904 | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | 0.284492 | True | 0.189434 | True | 1.894300e-01 | True | Staffordshire_bullterrier |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | 0.338757 | True | 0.304470 | True | 9.339230e-02 | False | Labrador_retriever |
| 578 | 678755239630127104 | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | 0.606654 | True | 0.193831 | True | 4.837810e-02 | True | malamute |
| 579 | 678764513869611008 | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | 0.696646 | True | 0.074962 | True | 6.390120e-02 | True | Irish_terrier |
| 581 | 678774928607469569 | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | 0.194681 | True | 0.121821 | True | 9.684300e-02 | True | Pembroke |
| 582 | 678798276842360832 | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | 0.583122 | True | 0.129567 | True | 9.472660e-02 | True | Airedale |
| 583 | 678800283649069056 | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | 0.213673 | True | 0.146235 | True | 1.227010e-01 | True | Labrador_retriever |
| 584 | 678969228704284672 | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | 0.680251 | True | 0.201697 | True | 1.967590e-02 | True | Labrador_retriever |
| 585 | 678991772295516161 | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | 0.330216 | True | 0.187003 | True | 1.014200e-01 | True | Eskimo_dog |
| 588 | 679111216690831360 | https://pbs.twimg.com/ext_tw_video_thumb/67911... | 1 | 0.189423 | True | 0.121988 | True | 1.211710e-01 | True | kelpie |
| 589 | 679132435750195208 | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | 0.194610 | True | 0.162855 | True | 1.598370e-01 | True | Scottish_deerhound |
| 590 | 679148763231985668 | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | 0.302685 | True | 0.124281 | False | 5.984600e-02 | True | Italian_greyhound |
| 591 | 679158373988876288 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | 0.272205 | True | 0.251530 | True | 1.168060e-01 | False | pug |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | 0.621780 | True | 0.197819 | True | 4.674500e-02 | True | toy_poodle |
| 593 | 679475951516934144 | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | 0.145742 | True | 0.139407 | True | 1.088210e-01 | True | Maltese_dog |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | 0.761972 | True | 0.150605 | False | 2.814790e-02 | False | Chihuahua |
| 597 | 679530280114372609 | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | 0.750256 | True | 0.169007 | False | 6.481490e-03 | False | dalmatian |
| 598 | 679722016581222400 | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | 0.459604 | True | 0.197913 | True | 8.702250e-02 | True | boxer |
| 600 | 679736210798047232 | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | 0.319139 | True | 0.154088 | True | 1.176880e-01 | True | French_bulldog |
| 601 | 679777920601223168 | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | 0.528819 | True | 0.420119 | True | 9.480590e-03 | True | bloodhound |
| 602 | 679828447187857408 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | 0.346545 | True | 0.166246 | True | 1.175020e-01 | True | Chihuahua |
| 603 | 679844490799091713 | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | 0.903832 | True | 0.034713 | True | 2.137800e-02 | True | Airedale |
| 605 | 679862121895714818 | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | 0.523206 | True | 0.431657 | True | 4.420790e-02 | True | EntleBucher |
| 607 | 680055455951884288 | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | 0.995466 | True | 0.001834 | True | 6.669490e-04 | True | Samoyed |
| 610 | 680100725817409536 | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | 0.698961 | True | 0.145971 | True | 3.488800e-02 | True | golden_retriever |
| 611 | 680115823365742593 | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | 0.999365 | True | 0.000544 | True | 2.815280e-05 | True | pug |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | 0.199121 | True | 0.197897 | True | 1.571300e-01 | True | Maltese_dog |
| 613 | 680145970311643136 | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | 0.457117 | True | 0.226481 | True | 6.768150e-02 | True | miniature_poodle |
| 614 | 680161097740095489 | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | 0.268681 | True | 0.125652 | True | 8.937270e-02 | True | bluetick |
| 616 | 680191257256136705 | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | 0.733253 | True | 0.251634 | True | 9.243210e-03 | True | Brittany_spaniel |
| 620 | 680473011644985345 | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | 0.796694 | True | 0.138709 | True | 1.625340e-02 | True | Lakeland_terrier |
| 621 | 680494726643068929 | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | 0.438627 | True | 0.111622 | True | 6.406080e-02 | True | kuvasz |
| 622 | 680497766108381184 | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | 0.538354 | True | 0.084289 | False | 7.669010e-02 | False | Chihuahua |
| 624 | 680609293079592961 | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | 0.700764 | True | 0.072390 | True | 3.961870e-02 | True | French_bulldog |
| 626 | 680801747103793152 | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | 0.996720 | True | 0.001439 | True | 5.176030e-04 | True | pug |
| 627 | 680836378243002368 | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | 0.427781 | True | 0.160669 | True | 1.112500e-01 | True | Pembroke |
| 628 | 680889648562991104 | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | 0.876337 | True | 0.078331 | True | 2.040750e-02 | True | Shetland_sheepdog |
| 629 | 680913438424612864 | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | 0.615678 | True | 0.126455 | True | 8.718360e-02 | True | Pomeranian |
| 630 | 680934982542561280 | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | 0.784398 | True | 0.055925 | True | 2.275010e-02 | True | Labrador_retriever |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | 0.289598 | True | 0.157195 | True | 7.443470e-02 | True | soft-coated_wheaten_terrier |
| 633 | 680970795137544192 | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | 0.713102 | True | 0.057426 | True | 5.601810e-02 | False | pug |
| 634 | 681193455364796417 | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | 0.992619 | True | 0.004356 | True | 8.140000e-04 | True | Pomeranian |
| 635 | 681231109724700672 | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | 0.406047 | True | 0.345646 | True | 1.479120e-01 | True | Irish_setter |
| 637 | 681261549936340994 | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | 0.382101 | True | 0.095429 | True | 6.573770e-02 | True | Tibetan_terrier |
| 638 | 681281657291280384 | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | 0.998830 | True | 0.000391 | True | 2.235820e-04 | True | Saint_Bernard |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | 0.482401 | True | 0.113672 | True | 9.622860e-02 | True | Lhasa |
| 641 | 681320187870711809 | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | 0.362596 | True | 0.245395 | True | 1.082320e-01 | True | Samoyed |
| 643 | 681523177663676416 | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | 0.205067 | True | 0.160439 | True | 1.562340e-01 | True | Norfolk_terrier |
| 644 | 681579835668455424 | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | 0.760671 | True | 0.096585 | True | 4.033260e-02 | True | Rottweiler |
| 645 | 681610798867845120 | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | 0.821704 | True | 0.116042 | True | 1.484720e-02 | True | toy_poodle |
| 646 | 681654059175129088 | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | 0.800538 | True | 0.146892 | True | 3.761250e-02 | True | Pomeranian |
| 648 | 681694085539872773 | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | 0.920992 | True | 0.060857 | True | 6.063720e-03 | True | toy_poodle |
| 649 | 681891461017812993 | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | 0.203570 | True | 0.134316 | False | 8.448230e-02 | True | Chihuahua |
| 650 | 681981167097122816 | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | 0.452577 | True | 0.403420 | True | 6.948570e-02 | True | Labrador_retriever |
| 652 | 682032003584274432 | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | 0.997953 | True | 0.000676 | True | 2.112460e-04 | True | schipperke |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | 0.364095 | False | 0.119243 | False | 3.512710e-02 | False | teddy |
| 656 | 682259524040966145 | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | 0.439670 | True | 0.340474 | True | 1.012530e-01 | True | Siberian_husky |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | 0.482288 | True | 0.315286 | True | 6.217890e-02 | True | curly-coated_retriever |
| 659 | 682393905736888321 | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | 0.657275 | True | 0.090286 | False | 4.822830e-02 | True | vizsla |
| 661 | 682429480204398592 | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | 0.594701 | True | 0.314091 | True | 3.777330e-02 | True | whippet |
| 662 | 682638830361513985 | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | 0.440781 | True | 0.411182 | True | 2.241220e-02 | True | English_springer |
| 663 | 682662431982772225 | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | 0.413824 | True | 0.263553 | True | 1.676180e-01 | True | beagle |
| 665 | 682750546109968385 | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | 0.947198 | True | 0.031128 | True | 5.512470e-03 | True | English_setter |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | 0.278600 | False | 0.155207 | True | 1.535980e-01 | False | dingo |
| 668 | 683030066213818368 | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | 0.722218 | True | 0.193804 | True | 5.519370e-02 | True | boxer |
| 670 | 683098815881154561 | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | 0.889848 | True | 0.053008 | True | 3.788120e-02 | True | golden_retriever |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | 0.901392 | True | 0.028605 | True | 1.780540e-02 | True | cocker_spaniel |
| 672 | 683142553609318400 | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | 0.605851 | True | 0.183470 | True | 7.966190e-02 | True | Leonberg |
| 673 | 683357973142474752 | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | 0.406509 | True | 0.154854 | True | 1.363660e-01 | True | Pembroke |
| 674 | 683391852557561860 | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | 0.992833 | True | 0.004749 | True | 1.391690e-03 | True | French_bulldog |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | 0.303512 | True | 0.211424 | True | 1.707250e-01 | True | Lakeland_terrier |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | 0.399560 | True | 0.267153 | True | 8.131910e-02 | True | Italian_greyhound |
| 677 | 683481228088049664 | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | 0.508951 | True | 0.442016 | True | 1.320600e-02 | True | keeshond |
| 678 | 683498322573824003 | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | 0.945362 | True | 0.026850 | True | 1.682640e-02 | True | Airedale |
| 679 | 683742671509258241 | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | 0.895279 | True | 0.022385 | True | 1.704520e-02 | True | Pembroke |
| 680 | 683773439333797890 | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | 0.072885 | True | 0.057866 | True | 5.325660e-02 | True | miniature_pinscher |
| 681 | 683828599284170753 | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | 0.577376 | True | 0.287131 | True | 1.175630e-01 | True | malamute |
| 682 | 683834909291606017 | https://pbs.twimg.com/ext_tw_video_thumb/68383... | 1 | 0.738449 | True | 0.102992 | True | 2.324720e-02 | True | Maltese_dog |
| 684 | 683852578183077888 | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | 0.551352 | True | 0.180678 | False | 1.640950e-01 | True | toy_poodle |
| 685 | 683857920510050305 | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | 0.174738 | True | 0.126101 | True | 1.228870e-01 | True | bluetick |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | 0.627856 | True | 0.173675 | True | 4.134170e-02 | True | Labrador_retriever |
| 688 | 684177701129875456 | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | 0.334783 | True | 0.162647 | True | 1.386120e-01 | True | chow |
| 689 | 684188786104872960 | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | 0.537782 | True | 0.082953 | True | 6.975990e-02 | True | kelpie |
| 690 | 684195085588783105 | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | 0.379365 | True | 0.121809 | True | 9.598090e-02 | True | Chihuahua |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | 0.791182 | True | 0.072444 | True | 7.148650e-02 | False | soft-coated_wheaten_terrier |
| 693 | 684225744407494656 | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | 0.203249 | True | 0.067958 | True | 6.532750e-02 | True | golden_retriever |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | 0.508498 | True | 0.115532 | False | 5.128010e-02 | False | Pembroke |
| 695 | 684460069371654144 | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | 0.673691 | True | 0.194897 | True | 5.947130e-02 | True | Labrador_retriever |
| 696 | 684481074559381504 | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | 0.937810 | True | 0.020307 | True | 1.735700e-02 | False | Chihuahua |
| 697 | 684538444857667585 | https://pbs.twimg.com/ext_tw_video_thumb/68453... | 1 | 0.702583 | True | 0.068218 | False | 4.332460e-02 | False | Chihuahua |
| 699 | 684594889858887680 | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | 0.948688 | True | 0.035352 | True | 3.878780e-03 | True | Weimaraner |
| 700 | 684800227459624960 | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | 0.294457 | True | 0.161885 | True | 1.209920e-01 | True | miniature_schnauzer |
| 702 | 684902183876321280 | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | 0.708034 | True | 0.291447 | True | 1.845610e-04 | False | Pembroke |
| 704 | 684926975086034944 | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | 0.769412 | True | 0.144893 | True | 2.143980e-02 | False | Labrador_retriever |
| 705 | 684940049151070208 | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | 0.665578 | True | 0.176846 | True | 6.517470e-02 | True | Border_collie |
| 707 | 685169283572338688 | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | 0.975096 | True | 0.014578 | True | 5.943480e-03 | True | Bernese_mountain_dog |
| 709 | 685268753634967552 | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | 0.999044 | True | 0.000547 | True | 2.351950e-04 | True | pug |
| 710 | 685307451701334016 | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | 0.963176 | True | 0.019468 | True | 8.604930e-03 | True | Pomeranian |
| 711 | 685315239903100929 | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | 0.470162 | True | 0.159677 | True | 1.050740e-01 | True | chow |
| 712 | 685321586178670592 | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | 0.972483 | True | 0.025469 | True | 4.575440e-04 | True | Boston_bull |
| 713 | 685325112850124800 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | 0.586937 | True | 0.398260 | True | 5.409690e-03 | True | golden_retriever |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | 0.253839 | True | 0.213349 | True | 8.383410e-02 | False | Lakeland_terrier |
| 717 | 685663452032069632 | https://pbs.twimg.com/ext_tw_video_thumb/68566... | 1 | 0.171174 | True | 0.090644 | False | 4.850770e-02 | False | Chesapeake_Bay_retriever |
| 719 | 685906723014619143 | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | 0.414963 | True | 0.063505 | True | 5.368220e-02 | True | Yorkshire_terrier |
| 720 | 685943807276412928 | https://pbs.twimg.com/ext_tw_video_thumb/68594... | 1 | 0.200812 | True | 0.114512 | True | 9.451960e-02 | True | papillon |
| 721 | 685973236358713344 | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | 0.450678 | True | 0.430275 | True | 1.185900e-01 | True | Siberian_husky |
| 723 | 686007916130873345 | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | 0.885301 | True | 0.042335 | True | 1.049300e-02 | False | Rhodesian_ridgeback |
| 724 | 686034024800862208 | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | 0.236920 | True | 0.117608 | True | 1.039000e-01 | True | Great_Dane |
| 725 | 686050296934563840 | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | 0.985789 | True | 0.004083 | True | 3.333660e-03 | True | Pomeranian |
| 726 | 686358356425093120 | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | 0.985237 | True | 0.008841 | True | 2.321430e-03 | True | pug |
| 727 | 686377065986265092 | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | 0.830816 | True | 0.076325 | True | 3.744860e-02 | True | German_shepherd |
| 728 | 686386521809772549 | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | 0.477704 | True | 0.171673 | True | 8.833400e-02 | True | Yorkshire_terrier |
| 729 | 686606069955735556 | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | 0.320012 | True | 0.208172 | True | 7.897470e-02 | True | Labrador_retriever |
| 730 | 686618349602762752 | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | 0.441331 | True | 0.233180 | True | 9.358200e-02 | True | Rottweiler |
| 731 | 686683045143953408 | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | 0.100499 | True | 0.080671 | True | 7.940620e-02 | True | Norwich_terrier |
| 732 | 686730991906516992 | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | 0.338812 | True | 0.180925 | True | 1.800230e-01 | True | Tibetan_mastiff |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | 0.417107 | True | 0.341730 | True | 1.777020e-01 | True | Labrador_retriever |
| 737 | 687109925361856513 | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | 0.883086 | True | 0.022934 | True | 2.160560e-02 | True | borzoi |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | 0.178205 | True | 0.149164 | True | 1.205050e-01 | True | pug |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | 0.747208 | True | 0.091025 | True | 3.578780e-02 | True | Shih-Tzu |
| 742 | 687460506001633280 | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | 0.223366 | True | 0.183596 | True | 1.769160e-01 | True | Boston_bull |
| 744 | 687480748861947905 | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | 0.472273 | True | 0.166862 | True | 1.634110e-01 | True | English_springer |
| 745 | 687494652870668288 | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | 0.391471 | True | 0.273595 | True | 4.169190e-02 | True | Rottweiler |
| 746 | 687664829264453632 | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | 0.957365 | True | 0.038559 | True | 6.673610e-04 | True | pug |
| 747 | 687704180304273409 | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | 0.956063 | True | 0.012231 | True | 5.397480e-03 | True | miniature_pinscher |
| 748 | 687807801670897665 | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | 0.151113 | True | 0.135697 | True | 8.659120e-02 | True | Staffordshire_bullterrier |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | 0.873029 | True | 0.060924 | True | 1.703090e-02 | True | Lakeland_terrier |
| 750 | 687826841265172480 | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | 0.997210 | True | 0.000803 | True | 3.725150e-04 | True | Pomeranian |
| 751 | 688064179421470721 | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | 0.240602 | True | 0.180369 | True | 9.073880e-02 | True | Eskimo_dog |
| 752 | 688116655151435777 | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | 0.973819 | True | 0.010891 | True | 6.863890e-03 | True | pug |
| 755 | 688385280030670848 | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | 0.900437 | True | 0.022292 | True | 1.499680e-02 | False | golden_retriever |
| 756 | 688519176466644993 | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | 0.696372 | True | 0.121052 | True | 5.059200e-02 | True | Pembroke |
| 757 | 688547210804498433 | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | 0.531279 | True | 0.214197 | True | 5.383990e-02 | True | papillon |
| 758 | 688789766343622656 | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | 0.599660 | True | 0.380976 | True | 3.889020e-03 | True | American_Staffordshire_terrier |
| 759 | 688804835492233216 | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | 0.199512 | True | 0.096797 | True | 8.284820e-02 | True | malinois |
| 760 | 688828561667567616 | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | 0.614231 | True | 0.139392 | False | 3.115820e-02 | False | Cardigan |
| 762 | 688898160958271489 | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | 0.853170 | True | 0.039897 | True | 3.521960e-02 | True | Ibizan_hound |
| 764 | 688916208532455424 | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | 0.430544 | True | 0.206576 | False | 1.543520e-01 | True | Pembroke |
| 765 | 689143371370250240 | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | 0.303781 | True | 0.165132 | True | 1.490510e-01 | True | English_springer |
| 766 | 689154315265683456 | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | 0.816044 | True | 0.054135 | True | 3.064810e-02 | True | cocker_spaniel |
| 767 | 689275259254616065 | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | 0.215161 | True | 0.079051 | True | 7.022590e-02 | True | American_Staffordshire_terrier |
| 768 | 689280876073582592 | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | 0.637546 | True | 0.150694 | True | 1.039530e-01 | True | Chihuahua |
| 769 | 689283819090870273 | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | 0.267979 | True | 0.199619 | True | 1.274690e-01 | True | Scotch_terrier |
| 771 | 689517482558820352 | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | 0.799319 | True | 0.189537 | True | 3.386190e-03 | True | Pembroke |
| 772 | 689557536375177216 | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | 0.169482 | True | 0.161655 | True | 1.544140e-01 | False | Eskimo_dog |
| 774 | 689623661272240129 | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | 0.279604 | True | 0.208564 | False | 7.748090e-02 | True | toy_poodle |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | 0.225221 | False | 0.057625 | False | 5.356890e-02 | False | bustard |
| 776 | 689661964914655233 | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | 0.322818 | True | 0.246966 | True | 1.225410e-01 | True | Italian_greyhound |
| 777 | 689835978131935233 | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | 0.600186 | True | 0.298939 | True | 2.261560e-02 | True | collie |
| 778 | 689877686181715968 | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | 0.269155 | True | 0.111496 | True | 1.049390e-01 | True | Old_English_sheepdog |
| 779 | 689905486972461056 | https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg | 4 | 0.943331 | True | 0.023675 | True | 7.164950e-03 | True | Pomeranian |
| 781 | 689999384604450816 | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | 0.444499 | True | 0.129830 | True | 7.380570e-02 | True | standard_poodle |
| 782 | 690005060500217858 | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | 0.270287 | True | 0.114027 | True | 7.247480e-02 | False | Samoyed |
| 783 | 690015576308211712 | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | 0.949609 | True | 0.033084 | True | 1.666270e-02 | True | malamute |
| 786 | 690360449368465409 | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | 0.686933 | True | 0.076359 | True | 3.500700e-02 | True | pug |
| 787 | 690374419777196032 | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | 0.286345 | True | 0.107144 | True | 8.508580e-02 | False | kuvasz |
| 788 | 690400367696297985 | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | 0.426459 | True | 0.317368 | True | 7.761600e-02 | True | Pembroke |
| 789 | 690597161306841088 | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | 0.097500 | True | 0.091934 | False | 9.150480e-02 | False | Lhasa |
| 792 | 690728923253055490 | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | 0.422806 | True | 0.291586 | True | 7.618920e-02 | True | kuvasz |
| 793 | 690735892932222976 | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | 0.883229 | True | 0.109635 | True | 2.795070e-03 | True | golden_retriever |
| 796 | 690959652130045952 | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | 0.862964 | True | 0.044865 | True | 1.246780e-02 | True | golden_retriever |
| 798 | 691096613310316544 | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | 0.441269 | True | 0.278270 | False | 6.350350e-02 | False | borzoi |
| 799 | 691321916024623104 | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | 0.508981 | True | 0.207897 | True | 9.435330e-02 | True | Rottweiler |
| 800 | 691416866452082688 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | 0.530104 | True | 0.197314 | True | 8.251460e-02 | True | Lakeland_terrier |
| 801 | 691444869282295808 | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | 0.767563 | True | 0.085805 | True | 4.376930e-02 | True | Bernese_mountain_dog |
| 802 | 691459709405118465 | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | 0.551206 | True | 0.232544 | True | 9.521820e-02 | True | Shetland_sheepdog |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | 0.886232 | True | 0.077420 | True | 9.826430e-03 | True | bloodhound |
| 804 | 691675652215414786 | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | 0.182898 | True | 0.128077 | False | 9.787480e-02 | True | Chihuahua |
| 805 | 691756958957883396 | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | 0.342571 | True | 0.289096 | True | 7.646340e-02 | True | Saint_Bernard |
| 807 | 692017291282812928 | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | 0.247565 | True | 0.121377 | True | 9.936250e-02 | False | Tibetan_terrier |
| 808 | 692142790915014657 | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | 0.670068 | True | 0.190898 | False | 3.217790e-02 | True | toy_poodle |
| 809 | 692158366030913536 | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | 0.956565 | True | 0.018907 | False | 1.354440e-02 | True | pug |
| 810 | 692187005137076224 | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | 0.810592 | True | 0.119745 | True | 2.926480e-02 | True | Siberian_husky |
| 812 | 692530551048294401 | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | 0.486428 | True | 0.448518 | True | 4.150610e-02 | False | Siberian_husky |
| 813 | 692535307825213440 | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | 0.413090 | True | 0.199865 | True | 8.199060e-02 | True | pug |
| 814 | 692568918515392513 | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | 0.636845 | True | 0.163362 | True | 4.555400e-02 | True | golden_retriever |
| 815 | 692752401762250755 | https://pbs.twimg.com/tweet_video_thumb/CZ0mhd... | 1 | 0.471276 | True | 0.158850 | True | 1.386720e-01 | True | Samoyed |
| 816 | 692828166163931137 | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | 0.985857 | True | 0.007852 | False | 3.277700e-03 | False | Samoyed |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | 0.876977 | True | 0.036615 | True | 1.784770e-02 | True | German_short-haired_pointer |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | 0.403496 | True | 0.135164 | True | 8.871870e-02 | True | soft-coated_wheaten_terrier |
| 819 | 692905862751522816 | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | 0.162638 | True | 0.156287 | True | 8.147780e-02 | True | Mexican_hairless |
| 820 | 692919143163629568 | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | 0.612635 | True | 0.269744 | True | 4.866550e-02 | True | Saint_Bernard |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | 0.660099 | False | 0.039563 | False | 3.348780e-02 | True | ice_lolly |
| 822 | 693109034023534592 | https://pbs.twimg.com/ext_tw_video_thumb/69310... | 1 | 0.740013 | True | 0.088739 | True | 4.746980e-02 | True | cocker_spaniel |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | 0.697480 | True | 0.200151 | True | 9.097040e-02 | True | Shih-Tzu |
| 824 | 693231807727280129 | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | 0.876413 | True | 0.078400 | True | 3.219410e-02 | True | vizsla |
| 825 | 693262851218264065 | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | 0.989333 | True | 0.007946 | True | 7.489320e-04 | True | golden_retriever |
| 826 | 693280720173801472 | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | 0.340008 | True | 0.175316 | True | 1.643370e-01 | False | Labrador_retriever |
| 829 | 693622659251335168 | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | 0.449298 | True | 0.385075 | True | 1.634850e-01 | True | malamute |
| 830 | 693629975228977152 | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | 0.841987 | True | 0.069791 | True | 3.871990e-02 | True | pug |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | 0.111893 | True | 0.074302 | True | 6.700040e-02 | True | Scottish_deerhound |
| 833 | 693942351086120961 | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | 0.550796 | True | 0.154770 | True | 8.080190e-02 | True | groenendael |
| 834 | 694001791655137281 | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | 0.769999 | True | 0.229228 | True | 2.468370e-04 | True | Pembroke |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | 0.441499 | False | 0.080870 | True | 7.209880e-02 | True | teddy |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | 0.352547 | True | 0.155720 | True | 1.166570e-01 | True | Shih-Tzu |
| 837 | 694329668942569472 | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | 0.990060 | True | 0.007436 | True | 1.617290e-03 | True | boxer |
| 838 | 694352839993344000 | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | 0.407886 | True | 0.328173 | True | 1.084040e-01 | True | Australian_terrier |
| 842 | 695051054296211456 | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | 0.761454 | True | 0.075395 | True | 4.159780e-02 | True | Boston_bull |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | 0.510106 | True | 0.071981 | True | 6.923100e-02 | True | Shih-Tzu |
| 845 | 695095422348574720 | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | 0.227784 | True | 0.218128 | True | 9.345740e-02 | True | papillon |
| 846 | 695314793360662529 | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | 0.678547 | True | 0.125046 | True | 4.899880e-02 | True | Maltese_dog |
| 847 | 695409464418041856 | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | 0.997445 | True | 0.001749 | True | 3.044040e-04 | True | pug |
| 848 | 695446424020918272 | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | 0.748904 | True | 0.121102 | True | 1.117670e-01 | True | basenji |
| 849 | 695629776980148225 | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | 0.693857 | True | 0.232117 | True | 1.286670e-02 | True | Old_English_sheepdog |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | 0.805139 | True | 0.121662 | True | 2.330250e-02 | True | soft-coated_wheaten_terrier |
| 851 | 695794761660297217 | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | 0.962139 | True | 0.030553 | False | 1.482340e-03 | False | Samoyed |
| 852 | 695816827381944320 | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | 0.382234 | True | 0.208302 | True | 1.313280e-01 | False | Pomeranian |
| 853 | 696405997980676096 | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | 0.132845 | True | 0.086005 | True | 6.558230e-02 | True | borzoi |
| 854 | 696488710901260288 | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | 0.369063 | True | 0.168204 | True | 1.205530e-01 | True | briard |
| 858 | 696886256886657024 | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | 0.383941 | True | 0.289085 | True | 5.654810e-02 | False | kuvasz |
| 859 | 696894894812565505 | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | 0.665628 | True | 0.104795 | True | 6.786800e-02 | True | Appenzeller |
| 860 | 696900204696625153 | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | 0.297735 | True | 0.266953 | True | 1.368140e-01 | True | Chihuahua |
| 862 | 697255105972801536 | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | 0.173989 | True | 0.165888 | True | 1.198900e-01 | True | Great_Dane |
| 863 | 697259378236399616 | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | 0.999223 | True | 0.000187 | True | 1.510710e-04 | True | Great_Dane |
| 864 | 697270446429966336 | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | 0.880014 | True | 0.100136 | True | 7.027060e-03 | True | toy_poodle |
| 865 | 697463031882764288 | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | 0.999885 | True | 0.000098 | True | 8.267760e-06 | True | Labrador_retriever |
| 868 | 697596423848730625 | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | 0.621668 | True | 0.366578 | True | 7.698190e-03 | True | Shetland_sheepdog |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | 0.521931 | True | 0.403451 | True | 3.991220e-02 | True | Lhasa |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | 0.126924 | True | 0.110037 | True | 9.081600e-02 | True | Great_Dane |
| 872 | 697990423684476929 | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | 0.984783 | True | 0.015018 | True | 7.358600e-05 | True | Pembroke |
| 873 | 697995514407682048 | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | 0.280222 | True | 0.161478 | True | 1.268840e-01 | True | Staffordshire_bullterrier |
| 874 | 698178924120031232 | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | 0.351868 | True | 0.207753 | True | 1.546060e-01 | True | Chesapeake_Bay_retriever |
| 875 | 698195409219559425 | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | 0.643690 | True | 0.102684 | True | 5.000780e-02 | True | Labrador_retriever |
| 876 | 698262614669991936 | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | 0.107948 | True | 0.075230 | True | 6.943610e-02 | True | Italian_greyhound |
| 877 | 698342080612007937 | https://pbs.twimg.com/ext_tw_video_thumb/69834... | 1 | 0.883048 | True | 0.030579 | True | 1.299410e-02 | True | boxer |
| 878 | 698355670425473025 | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | 0.990191 | True | 0.002799 | True | 1.309520e-03 | False | pug |
| 879 | 698549713696649216 | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | 0.998544 | True | 0.001404 | True | 2.322000e-05 | True | French_bulldog |
| 880 | 698635131305795584 | https://pbs.twimg.com/ext_tw_video_thumb/69863... | 1 | 0.158464 | True | 0.089402 | True | 2.503730e-02 | True | Samoyed |
| 881 | 698703483621523456 | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | 0.931963 | True | 0.030695 | True | 1.289610e-02 | True | Brittany_spaniel |
| 882 | 698710712454139905 | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | 0.329895 | True | 0.165772 | False | 1.035960e-01 | False | Samoyed |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | 0.983131 | True | 0.005558 | True | 3.322210e-03 | True | German_short-haired_pointer |
| 884 | 698953797952008193 | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | 0.382378 | True | 0.102255 | True | 7.683370e-02 | False | Italian_greyhound |
| 885 | 698989035503689728 | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | 0.246340 | True | 0.243349 | True | 8.587100e-02 | True | Norfolk_terrier |
| 886 | 699036661657767936 | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | 0.222943 | True | 0.179938 | False | 1.630330e-01 | True | Chihuahua |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/69907... | 1 | 0.599587 | True | 0.213069 | True | 1.542930e-01 | True | Shih-Tzu |
| 888 | 699079609774645248 | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | 0.667324 | True | 0.119550 | True | 9.759950e-02 | True | schipperke |
| 890 | 699323444782047232 | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | 0.309696 | True | 0.303700 | False | 7.726600e-02 | False | Labrador_retriever |
| 891 | 699370870310113280 | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | 0.337557 | True | 0.209130 | True | 1.369460e-01 | True | cairn |
| 892 | 699413908797464576 | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | 0.517479 | True | 0.155935 | True | 9.500090e-02 | True | Samoyed |
| 893 | 699423671849451520 | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | 0.997860 | True | 0.001825 | True | 2.989400e-04 | True | pug |
| 894 | 699434518667751424 | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | 0.836572 | True | 0.105946 | True | 2.514390e-02 | True | golden_retriever |
| 895 | 699446877801091073 | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | 0.969400 | True | 0.026059 | True | 3.505470e-03 | True | Pembroke |
| 897 | 699775878809702401 | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | 0.271683 | True | 0.164931 | True | 1.059180e-01 | True | Dandie_Dinmont |
| 898 | 699779630832685056 | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | 0.706038 | True | 0.165655 | True | 5.904750e-02 | True | malinois |
| 899 | 699788877217865730 | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | 0.355060 | True | 0.169736 | True | 9.988370e-02 | True | Border_terrier |
| 900 | 699801817392291840 | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | 0.808978 | True | 0.042428 | True | 2.353640e-02 | True | golden_retriever |
| 901 | 700002074055016451 | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | 0.369488 | True | 0.243367 | True | 1.616140e-01 | True | Chihuahua |
| 902 | 700029284593901568 | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | 0.726571 | True | 0.176828 | True | 7.013380e-02 | True | West_Highland_white_terrier |
| 904 | 700143752053182464 | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | 0.532460 | True | 0.103796 | False | 1.003710e-01 | False | golden_retriever |
| 906 | 700167517596164096 | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | 0.162585 | True | 0.120481 | True | 1.102840e-01 | True | beagle |
| 909 | 700518061187723268 | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | 0.569501 | True | 0.211308 | True | 1.218390e-01 | True | American_Staffordshire_terrier |
| 910 | 700747788515020802 | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | 0.481333 | True | 0.311769 | True | 7.496210e-02 | True | Great_Pyrenees |
| 912 | 700847567345688576 | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | 0.252514 | True | 0.153005 | True | 1.351990e-01 | True | Rhodesian_ridgeback |
| 913 | 700864154249383937 | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | 0.805857 | True | 0.187272 | True | 3.490900e-03 | True | kuvasz |
| 915 | 701214700881756160 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | 0.615163 | True | 0.159509 | True | 8.446570e-02 | True | Chihuahua |
| 916 | 701545186879471618 | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | 0.280893 | True | 0.112550 | True | 5.331720e-02 | True | Border_collie |
| 917 | 701570477911896070 | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | 0.907990 | True | 0.076883 | True | 8.472760e-03 | True | Yorkshire_terrier |
| 918 | 701601587219795968 | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | 0.993661 | True | 0.001505 | True | 8.666070e-04 | True | Chihuahua |
| 919 | 701889187134500865 | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | 0.902856 | True | 0.022634 | True | 1.197320e-02 | False | French_bulldog |
| 920 | 701952816642965504 | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | 0.331707 | True | 0.272485 | True | 1.694150e-01 | True | toy_poodle |
| 921 | 701981390485725185 | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | 0.491022 | True | 0.130879 | False | 9.924100e-02 | True | Pomeranian |
| 922 | 702217446468493312 | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | 0.242419 | True | 0.226800 | True | 1.940860e-01 | True | golden_retriever |
| 923 | 702276748847800320 | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | 0.697303 | True | 0.239015 | True | 1.983810e-02 | True | Boston_bull |
| 924 | 702321140488925184 | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | 0.769159 | True | 0.064369 | True | 4.376340e-02 | True | West_Highland_white_terrier |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | 0.714367 | True | 0.040574 | True | 3.251050e-02 | True | Pomeranian |
| 926 | 702598099714314240 | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | 0.219179 | True | 0.133584 | False | 7.444000e-02 | False | kelpie |
| 927 | 702671118226825216 | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | 0.381227 | True | 0.212017 | True | 1.286220e-01 | True | bloodhound |
| 928 | 702684942141153280 | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | 0.514085 | True | 0.173224 | True | 1.183840e-01 | True | golden_retriever |
| 931 | 703079050210877440 | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | 0.778503 | True | 0.093834 | True | 6.029640e-02 | True | Pembroke |
| 933 | 703356393781329922 | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | 0.894842 | True | 0.097364 | True | 3.036740e-03 | True | Border_collie |
| 934 | 703382836347330562 | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | 0.945664 | True | 0.014392 | True | 1.202170e-02 | True | golden_retriever |
| 936 | 703425003149250560 | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | 0.292866 | True | 0.142122 | False | 7.084900e-02 | True | miniature_pinscher |
| 937 | 703611486317502464 | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | 0.756441 | True | 0.126621 | True | 8.011670e-02 | True | Pembroke |
| 939 | 703769065844768768 | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | 0.838994 | True | 0.088800 | True | 3.168390e-02 | True | boxer |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | 0.990119 | True | 0.008026 | True | 1.242290e-03 | True | Labrador_retriever |
| 941 | 704054845121142784 | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | 0.667939 | True | 0.228764 | True | 4.388540e-02 | True | Great_Pyrenees |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | 0.233378 | False | 0.088474 | False | 8.291730e-02 | True | teddy |
| 944 | 704364645503647744 | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | 0.980695 | True | 0.018504 | True | 2.152930e-04 | True | Pembroke |
| 945 | 704480331685040129 | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | 0.979206 | True | 0.007185 | True | 6.438090e-03 | False | Samoyed |
| 946 | 704499785726889984 | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | 0.376541 | True | 0.098057 | False | 8.521090e-02 | True | Chihuahua |
| 949 | 704847917308362754 | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | 0.857240 | True | 0.135460 | True | 1.903320e-03 | True | golden_retriever |
| 950 | 704859558691414016 | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | 0.284428 | True | 0.156339 | False | 1.389150e-01 | False | pug |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | 0.689504 | True | 0.101480 | True | 5.577850e-02 | True | Norfolk_terrier |
| 952 | 705066031337840642 | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | 0.868658 | True | 0.027587 | True | 2.532360e-02 | True | Airedale |
| 953 | 705102439679201280 | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | 0.457672 | True | 0.279101 | True | 7.692230e-02 | True | collie |
| 955 | 705239209544720384 | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | 0.157950 | True | 0.089920 | True | 6.322450e-02 | True | Chihuahua |
| 956 | 705428427625635840 | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | 0.774792 | True | 0.073079 | False | 2.236510e-02 | True | Chihuahua |
| 957 | 705442520700944385 | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | 0.309106 | True | 0.224556 | True | 2.021000e-01 | False | Great_Pyrenees |
| 958 | 705475953783398401 | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | 0.908784 | True | 0.030361 | True | 4.995620e-03 | False | golden_retriever |
| 959 | 705591895322394625 | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | 0.877207 | True | 0.047854 | True | 3.563810e-02 | True | basenji |
| 961 | 705898680587526145 | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | 0.808276 | True | 0.059437 | True | 2.672030e-02 | True | collie |
| 962 | 705970349788291072 | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | 0.776346 | True | 0.112413 | True | 3.695290e-02 | True | golden_retriever |
| 963 | 705975130514706432 | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | 0.587764 | True | 0.281429 | True | 9.479810e-02 | True | Staffordshire_bullterrier |
| 964 | 706166467411222528 | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | 0.430418 | True | 0.279600 | True | 1.174800e-01 | True | Samoyed |
| 965 | 706265994973601792 | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | 0.743715 | True | 0.114042 | True | 4.771520e-02 | True | papillon |
| 966 | 706291001778950144 | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | 0.587101 | True | 0.164087 | True | 1.050110e-01 | True | Border_terrier |
| 967 | 706310011488698368 | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | 0.698165 | True | 0.105834 | True | 6.203040e-02 | True | Pembroke |
| 968 | 706346369204748288 | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | 0.956462 | True | 0.025381 | True | 8.679210e-03 | True | Tibetan_mastiff |
| 969 | 706516534877929472 | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | 0.772685 | True | 0.071665 | True | 2.099310e-02 | False | golden_retriever |
| 970 | 706538006853918722 | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | 0.541794 | True | 0.094918 | True | 8.543940e-02 | True | chow |
| 973 | 706681918348251136 | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | 0.717584 | True | 0.151433 | True | 4.708700e-02 | True | toy_poodle |
| 975 | 707014260413456384 | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | 0.583780 | True | 0.129683 | True | 8.915270e-02 | True | Chihuahua |
| 976 | 707021089608753152 | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | 0.559658 | True | 0.314673 | True | 6.667170e-02 | True | cocker_spaniel |
| 977 | 707038192327901184 | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | 0.642426 | True | 0.057306 | False | 5.418650e-02 | True | pug |
| 978 | 707059547140169728 | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | 0.897312 | True | 0.039180 | True | 1.951600e-02 | True | Samoyed |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | 0.370717 | True | 0.201566 | True | 1.015590e-01 | False | Blenheim_spaniel |
| 980 | 707315916783140866 | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | 0.979235 | True | 0.011037 | True | 3.971110e-03 | True | Bernese_mountain_dog |
| 981 | 707377100785885184 | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | 0.637225 | True | 0.094542 | True | 6.979710e-02 | True | golden_retriever |
| 982 | 707387676719185920 | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | 0.888468 | True | 0.088635 | True | 1.593830e-02 | True | Chihuahua |
| 983 | 707411934438625280 | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | 0.738277 | True | 0.028515 | True | 2.487630e-02 | True | Lakeland_terrier |
| 985 | 707610948723478529 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | 0.383223 | True | 0.165930 | True | 1.181990e-01 | True | golden_retriever |
| 987 | 707741517457260545 | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | 0.738371 | True | 0.191789 | True | 2.012570e-02 | True | whippet |
| 988 | 707776935007539200 | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | 0.890426 | True | 0.051335 | True | 1.801530e-02 | True | miniature_pinscher |
| 989 | 707969809498152960 | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | 0.908491 | True | 0.082652 | True | 5.786130e-03 | False | toy_poodle |
| 991 | 708026248782585858 | https://pbs.twimg.com/ext_tw_video_thumb/70802... | 1 | 0.786468 | True | 0.068979 | True | 2.930440e-02 | False | malinois |
| 992 | 708109389455101952 | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | 0.516106 | True | 0.236075 | True | 6.974950e-02 | True | Staffordshire_bullterrier |
| 993 | 708119489313951744 | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | 0.264483 | True | 0.258786 | True | 9.689870e-02 | True | Norwich_terrier |
| 994 | 708130923141795840 | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | 0.710354 | True | 0.262302 | True | 6.903820e-03 | True | French_bulldog |
| 995 | 708149363256774660 | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | 0.350993 | True | 0.164555 | True | 8.048360e-02 | True | Cardigan |
| 997 | 708356463048204288 | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | 0.871283 | True | 0.041820 | True | 1.522800e-02 | False | pug |
| 998 | 708469915515297792 | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | 0.748163 | True | 0.127717 | True | 4.214100e-02 | True | Chihuahua |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | 0.218479 | True | 0.201966 | True | 1.652250e-01 | True | Shih-Tzu |
| 1001 | 708738143638450176 | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | 0.933457 | True | 0.057221 | True | 9.041510e-04 | True | Pomeranian |
| 1002 | 708810915978854401 | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | 0.976139 | True | 0.016301 | True | 1.871370e-03 | True | golden_retriever |
| 1003 | 708834316713893888 | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | 0.283945 | True | 0.218252 | False | 1.804010e-01 | True | Eskimo_dog |
| 1004 | 708845821941387268 | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | 0.745640 | True | 0.167853 | True | 1.476290e-02 | True | schipperke |
| 1006 | 709158332880297985 | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | 0.212957 | True | 0.178887 | True | 1.742180e-01 | True | Siberian_husky |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | 0.490783 | True | 0.083513 | True | 8.318430e-02 | True | borzoi |
| 1008 | 709207347839836162 | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | 0.948323 | True | 0.017730 | True | 1.668790e-02 | False | Chihuahua |
| 1009 | 709225125749587968 | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | 0.271109 | True | 0.150487 | True | 1.455780e-01 | True | Labrador_retriever |
| 1010 | 709409458133323776 | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | 0.797450 | True | 0.054055 | True | 3.167330e-02 | True | Shetland_sheepdog |
| 1011 | 709449600415961088 | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | 0.780187 | True | 0.074429 | True | 3.377620e-02 | True | Maltese_dog |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | 0.414982 | True | 0.225482 | True | 1.967890e-01 | True | cocker_spaniel |
| 1013 | 709556954897764353 | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | 0.790026 | True | 0.105031 | True | 8.705120e-02 | True | golden_retriever |
| 1014 | 709566166965075968 | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | 0.999837 | True | 0.000117 | True | 1.133840e-05 | True | chow |
| 1015 | 709852847387627521 | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | 0.945629 | True | 0.019204 | True | 1.013420e-02 | True | Chihuahua |
| 1017 | 709918798883774466 | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | 0.956222 | True | 0.020727 | True | 7.912180e-03 | True | Pembroke |
| 1018 | 710117014656950272 | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | 0.802092 | True | 0.111647 | True | 6.286620e-02 | True | toy_poodle |
| 1019 | 710140971284037632 | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | 0.953170 | True | 0.019517 | True | 5.820510e-03 | True | Pekinese |
| 1021 | 710269109699739648 | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | 0.415495 | True | 0.178157 | True | 1.002020e-01 | True | pug |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | 0.586307 | True | 0.118622 | True | 1.068060e-01 | True | Old_English_sheepdog |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | 0.932401 | True | 0.030806 | True | 8.974280e-03 | True | Shih-Tzu |
| 1024 | 710588934686908417 | https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg | 4 | 0.982004 | True | 0.008943 | True | 7.549900e-03 | True | Pembroke |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | 0.948617 | True | 0.018664 | True | 1.594270e-02 | True | soft-coated_wheaten_terrier |
| 1026 | 710833117892898816 | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | 0.803742 | True | 0.189712 | True | 1.746090e-03 | True | Pembroke |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | 0.536593 | False | 0.200407 | True | 6.073450e-02 | True | dingo |
| 1028 | 710997087345876993 | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | 0.281260 | True | 0.232641 | True | 9.160200e-02 | True | malamute |
| 1029 | 711008018775851008 | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | 0.731405 | True | 0.150672 | True | 2.181090e-02 | True | French_bulldog |
| 1031 | 711363825979756544 | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | 0.750906 | True | 0.241152 | True | 2.639620e-03 | True | Pembroke |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | 0.366875 | False | 0.334929 | True | 7.387620e-02 | True | dingo |
| 1035 | 711743778164514816 | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | 0.459515 | True | 0.219661 | True | 1.301890e-01 | True | Lakeland_terrier |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | 0.625129 | True | 0.126897 | True | 1.196630e-01 | True | Shih-Tzu |
| 1041 | 712097430750289920 | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | 0.720481 | True | 0.048032 | True | 4.504640e-02 | True | Labrador_retriever |
| 1043 | 712668654853337088 | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | 0.829058 | True | 0.038664 | True | 2.622140e-02 | True | Labrador_retriever |
| 1044 | 712717840512598017 | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | 0.732043 | True | 0.121375 | True | 4.952370e-02 | True | Great_Pyrenees |
| 1045 | 712809025985978368 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | 0.868671 | True | 0.095095 | False | 7.651370e-03 | True | Labrador_retriever |
| 1047 | 713177543487135744 | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | 0.734244 | True | 0.025948 | True | 2.587430e-02 | True | whippet |
| 1048 | 713411074226274305 | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | 0.720337 | True | 0.129542 | True | 1.224510e-01 | True | Great_Pyrenees |
| 1049 | 713761197720473600 | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | 0.797936 | True | 0.044718 | True | 3.791070e-02 | True | Brittany_spaniel |
| 1050 | 713900603437621249 | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | 0.371816 | True | 0.177413 | True | 9.272520e-02 | True | golden_retriever |
| 1051 | 713919462244790272 | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | 0.463223 | True | 0.389959 | True | 9.796270e-02 | True | Siberian_husky |
| 1052 | 714141408463036416 | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | 0.586951 | True | 0.378812 | True | 3.604890e-03 | True | Labrador_retriever |
| 1053 | 714214115368108032 | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | 0.533967 | True | 0.164826 | True | 4.652400e-02 | True | pug |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | 0.751962 | True | 0.175652 | True | 1.145240e-02 | True | soft-coated_wheaten_terrier |
| 1055 | 714258258790387713 | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | 0.176758 | True | 0.101834 | True | 1.012940e-01 | True | collie |
| 1056 | 714606013974974464 | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | 0.293007 | True | 0.256198 | True | 1.296430e-01 | True | Norfolk_terrier |
| 1058 | 714957620017307648 | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | 0.251516 | True | 0.139346 | True | 1.290050e-01 | True | Great_Pyrenees |
| 1059 | 714982300363173890 | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | 0.944376 | True | 0.025435 | True | 9.962040e-03 | True | Brittany_spaniel |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | 0.310903 | False | 0.142288 | True | 1.039450e-01 | True | dingo |
| 1061 | 715200624753819648 | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | 0.956787 | True | 0.008383 | True | 8.344090e-03 | True | Chihuahua |
| 1062 | 715220193576927233 | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | 0.584026 | True | 0.377077 | True | 1.740040e-02 | True | Chihuahua |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | 0.597111 | True | 0.142993 | True | 1.367120e-01 | True | West_Highland_white_terrier |
| 1065 | 715680795826982913 | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | 0.990715 | True | 0.002228 | True | 1.197150e-03 | True | golden_retriever |
| 1066 | 715696743237730304 | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | 0.427836 | True | 0.221409 | True | 1.321350e-01 | True | Staffordshire_bullterrier |
| 1067 | 715733265223708672 | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | 0.740229 | True | 0.081915 | True | 6.374850e-02 | True | Dandie_Dinmont |
| 1068 | 715928423106027520 | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | 0.976685 | True | 0.019663 | True | 2.278190e-03 | True | pug |
| 1069 | 716080869887381504 | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | 0.638625 | True | 0.254717 | True | 7.173170e-02 | True | golden_retriever |
| 1070 | 716285507865542656 | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | 0.430420 | True | 0.196769 | True | 7.267610e-02 | True | Yorkshire_terrier |
| 1071 | 716439118184652801 | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | 0.396495 | True | 0.317053 | True | 2.734190e-01 | True | Siberian_husky |
| 1072 | 716791146589110272 | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | 0.468751 | True | 0.154652 | False | 1.250170e-01 | True | Pomeranian |
| 1073 | 716802964044845056 | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | 0.619577 | True | 0.118089 | True | 6.650780e-02 | True | malinois |
| 1074 | 717009362452090881 | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | 0.506154 | True | 0.269656 | True | 6.065850e-02 | True | Siberian_husky |
| 1075 | 717047459982213120 | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | 0.983548 | True | 0.012185 | True | 2.412030e-03 | True | golden_retriever |
| 1076 | 717421804990701568 | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | 0.286479 | True | 0.084134 | True | 6.469700e-02 | True | miniature_pinscher |
| 1077 | 717537687239008257 | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | 0.779356 | True | 0.052511 | True | 4.981050e-02 | True | golden_retriever |
| 1079 | 717841801130979328 | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | 0.922876 | True | 0.070113 | True | 2.560790e-03 | False | Brittany_spaniel |
| 1080 | 718234618122661888 | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | 0.370152 | True | 0.356398 | True | 2.710420e-01 | True | malamute |
| 1081 | 718246886998687744 | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | 0.354488 | True | 0.159672 | False | 5.749830e-02 | True | Chihuahua |
| 1084 | 718540630683709445 | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | 0.632289 | True | 0.187055 | True | 4.441290e-02 | True | Maltese_dog |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | 0.584580 | True | 0.340657 | True | 3.197510e-02 | True | Labrador_retriever |
| 1086 | 718631497683582976 | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | 0.993718 | True | 0.003611 | True | 5.248230e-04 | False | Pomeranian |
| 1087 | 718939241951195136 | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | 0.766327 | True | 0.222126 | True | 6.757230e-03 | False | Pembroke |
| 1088 | 718971898235854848 | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | 0.140394 | True | 0.118769 | True | 7.549170e-02 | True | golden_retriever |
| 1089 | 719332531645071360 | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | 0.224415 | True | 0.204882 | True | 9.063290e-02 | True | Dandie_Dinmont |
| 1090 | 719339463458033665 | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | 0.765778 | True | 0.071148 | True | 7.037050e-02 | True | golden_retriever |
| 1092 | 719551379208073216 | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | 0.873233 | True | 0.076435 | True | 3.574500e-02 | True | malamute |
| 1094 | 719991154352222208 | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | 0.605304 | True | 0.130948 | True | 9.469160e-02 | True | golden_retriever |
| 1095 | 720043174954147842 | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | 0.954517 | True | 0.029130 | True | 4.462030e-03 | False | Samoyed |
| 1096 | 720059472081784833 | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | 0.451852 | True | 0.254884 | True | 9.481810e-02 | True | Mexican_hairless |
| 1098 | 720389942216527872 | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | 0.873977 | True | 0.043339 | True | 1.919710e-02 | True | Pembroke |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | 0.990312 | True | 0.002495 | True | 1.733120e-03 | False | Rottweiler |
| 1100 | 720775346191278080 | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | 0.489970 | True | 0.174497 | True | 7.906670e-02 | True | Newfoundland |
| 1101 | 720785406564900865 | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | 0.896422 | True | 0.027929 | False | 1.791580e-02 | True | Chihuahua |
| 1102 | 721001180231503872 | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | 0.950053 | True | 0.006321 | False | 6.243350e-03 | False | Samoyed |
| 1103 | 721503162398597120 | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | 0.997750 | True | 0.001248 | True | 7.750020e-04 | True | Pomeranian |
| 1104 | 722613351520608256 | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | 0.530915 | True | 0.288230 | True | 4.485370e-02 | True | Labrador_retriever |
| 1105 | 722974582966214656 | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | 0.246762 | True | 0.126131 | True | 8.529690e-02 | True | Great_Dane |
| 1107 | 723673163800948736 | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | 0.839390 | True | 0.065706 | True | 1.294100e-02 | False | golden_retriever |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | 0.263256 | False | 0.089010 | True | 6.530570e-02 | True | teddy |
| 1109 | 723912936180330496 | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | 0.991772 | True | 0.003626 | True | 2.231830e-03 | True | Samoyed |
| 1111 | 724046343203856385 | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | 0.826272 | True | 0.158595 | True | 1.185860e-02 | True | boxer |
| 1112 | 724049859469295616 | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | 0.581835 | True | 0.344588 | True | 4.358420e-02 | True | Border_collie |
| 1113 | 724405726123311104 | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | 0.240695 | True | 0.202444 | True | 1.593480e-01 | False | golden_retriever |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | 0.835491 | True | 0.058788 | True | 3.720830e-02 | True | German_short-haired_pointer |
| 1115 | 724983749226668032 | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | 0.675750 | True | 0.095168 | True | 7.604290e-02 | True | golden_retriever |
| 1116 | 725729321944506368 | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | 0.599076 | True | 0.177318 | True | 1.414610e-01 | True | boxer |
| 1117 | 725786712245440512 | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | 0.335761 | True | 0.167173 | True | 1.457150e-01 | True | chow |
| 1118 | 725842289046749185 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | 0.420463 | True | 0.132640 | True | 1.215230e-01 | True | toy_poodle |
| 1119 | 726224900189511680 | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | 0.261112 | True | 0.094785 | True | 6.994640e-02 | False | standard_poodle |
| 1120 | 726828223124897792 | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | 0.255327 | True | 0.181279 | True | 1.251850e-01 | True | miniature_pinscher |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | 0.515919 | True | 0.162655 | True | 1.251820e-01 | True | soft-coated_wheaten_terrier |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | 0.821615 | False | 0.083749 | True | 3.331800e-02 | True | teddy |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | 0.656463 | True | 0.084766 | True | 5.890850e-02 | True | flat-coated_retriever |
| 1125 | 727314416056803329 | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | 0.827469 | True | 0.160760 | True | 1.730750e-03 | True | toy_poodle |
| 1126 | 727524757080539137 | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | 0.958834 | True | 0.024099 | True | 3.941050e-03 | True | Pomeranian |
| 1127 | 727644517743104000 | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | 0.457164 | True | 0.391710 | True | 9.452260e-02 | True | Great_Pyrenees |
| 1128 | 727685679342333952 | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | 0.462408 | True | 0.214556 | True | 3.560360e-02 | True | Border_collie |
| 1129 | 728015554473250816 | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | 0.384559 | True | 0.091661 | True | 8.179890e-02 | False | cocker_spaniel |
| 1131 | 728046963732717569 | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | 0.255971 | True | 0.175583 | True | 1.641350e-01 | True | Newfoundland |
| 1132 | 728387165835677696 | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | 0.266414 | True | 0.138546 | True | 1.090140e-01 | True | collie |
| 1135 | 728751179681943552 | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | 0.482050 | True | 0.202740 | True | 3.797580e-02 | True | Saint_Bernard |
| 1136 | 728760639972315136 | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | 0.939134 | True | 0.054336 | True | 5.590290e-03 | True | Pembroke |
| 1137 | 728986383096946689 | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | 0.952070 | True | 0.027271 | True | 4.874360e-03 | True | Maltese_dog |
| 1139 | 729463711119904772 | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | 0.829307 | True | 0.022500 | True | 2.119010e-02 | True | German_shepherd |
| 1140 | 729823566028484608 | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | 0.218408 | True | 0.114368 | False | 9.640930e-02 | False | kelpie |
| 1144 | 730211855403241472 | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | 0.341663 | True | 0.171222 | True | 1.246870e-01 | True | pug |
| 1145 | 730427201120833536 | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | 0.682082 | True | 0.289288 | True | 8.770690e-03 | True | Eskimo_dog |
| 1146 | 730573383004487680 | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | 0.810158 | True | 0.058205 | True | 2.792950e-02 | True | American_Staffordshire_terrier |
| 1149 | 731285275100512256 | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | 0.967103 | True | 0.021126 | True | 2.231070e-03 | True | Pembroke |
| 1150 | 732005617171337216 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | 0.677408 | True | 0.052724 | True | 4.857190e-02 | True | English_setter |
| 1152 | 732585889486888962 | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | 0.843359 | True | 0.028290 | True | 1.679290e-02 | True | Staffordshire_bullterrier |
| 1153 | 732726085725589504 | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | 0.961902 | True | 0.024289 | True | 5.771780e-03 | True | Pomeranian |
| 1155 | 733109485275860992 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | 0.945523 | True | 0.042319 | True | 3.956260e-03 | False | golden_retriever |
| 1156 | 733460102733135873 | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | 0.931275 | True | 0.028831 | False | 1.737900e-02 | False | chow |
| 1157 | 733482008106668032 | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | 0.619382 | True | 0.142274 | False | 5.850470e-02 | False | French_bulldog |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | 0.457356 | True | 0.371282 | True | 4.835900e-02 | True | Lhasa |
| 1159 | 733828123016450049 | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | 0.472324 | True | 0.121779 | True | 1.146400e-01 | True | beagle |
| 1160 | 734776360183431168 | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | 0.304902 | True | 0.155147 | True | 5.094240e-02 | True | Siberian_husky |
| 1161 | 734787690684657664 | https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg | 4 | 0.883991 | True | 0.023542 | True | 1.605590e-02 | True | golden_retriever |
| 1162 | 734912297295085568 | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | 0.847292 | True | 0.059379 | False | 5.275800e-02 | True | Maltese_dog |
| 1163 | 735137028879360001 | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | 0.413535 | True | 0.233891 | True | 1.649430e-01 | True | Walker_hound |
| 1164 | 735256018284875776 | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | 0.523191 | True | 0.351104 | True | 2.807530e-02 | False | Staffordshire_bullterrier |
| 1166 | 735635087207878657 | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | 0.891871 | True | 0.014377 | False | 8.451430e-03 | False | pug |
| 1167 | 735648611367784448 | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | 0.462594 | True | 0.261854 | False | 1.516980e-01 | True | Pembroke |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | 0.961643 | True | 0.011547 | True | 4.903330e-03 | True | cocker_spaniel |
| 1169 | 736010884653420544 | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | 0.553901 | True | 0.119475 | True | 7.747500e-02 | True | golden_retriever |
| 1170 | 736225175608430592 | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | 0.399217 | True | 0.137710 | True | 6.203270e-02 | True | Labrador_retriever |
| 1172 | 736736130620620800 | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | 0.545502 | True | 0.298622 | True | 3.098640e-02 | True | schipperke |
| 1175 | 737445876994609152 | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | 0.400568 | True | 0.331268 | True | 4.542610e-02 | True | Samoyed |
| 1176 | 737678689543020544 | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | 0.935307 | True | 0.049874 | True | 1.160320e-02 | True | Pembroke |
| 1177 | 737800304142471168 | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | 0.374682 | True | 0.334853 | True | 6.817320e-02 | False | malamute |
| 1178 | 737826014890496000 | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | 0.990391 | True | 0.005605 | True | 2.869360e-03 | True | vizsla |
| 1179 | 738156290900254721 | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | 0.751758 | True | 0.110748 | False | 1.041320e-01 | False | pug |
| 1180 | 738166403467907072 | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | 0.878886 | True | 0.086659 | True | 2.128030e-02 | True | keeshond |
| 1181 | 738184450748633089 | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | 0.289471 | True | 0.173685 | True | 1.570810e-01 | True | Bedlington_terrier |
| 1182 | 738402415918125056 | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | 0.346695 | True | 0.193905 | True | 7.800000e-02 | True | cocker_spaniel |
| 1183 | 738537504001953792 | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | 0.808737 | True | 0.028942 | False | 2.649790e-02 | True | chow |
| 1184 | 738883359779196928 | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | 0.691137 | True | 0.195558 | True | 1.958490e-02 | True | Labrador_retriever |
| 1186 | 739238157791694849 | https://pbs.twimg.com/ext_tw_video_thumb/73923... | 1 | 0.503372 | True | 0.390413 | True | 8.090120e-02 | True | Eskimo_dog |
| 1187 | 739485634323156992 | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | 0.640256 | True | 0.229799 | True | 3.775400e-02 | True | Walker_hound |
| 1188 | 739544079319588864 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | 0.967397 | True | 0.016641 | True | 1.485760e-02 | False | Labrador_retriever |
| 1189 | 739606147276148736 | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | 0.933755 | True | 0.041719 | True | 6.712560e-03 | True | Blenheim_spaniel |
| 1190 | 739844404073074688 | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | 0.342397 | True | 0.104451 | False | 7.987100e-02 | True | toy_poodle |
| 1192 | 739979191639244800 | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | 0.285800 | True | 0.240653 | False | 7.491390e-02 | True | Irish_water_spaniel |
| 1193 | 740214038584557568 | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | 0.586414 | True | 0.189782 | True | 6.760720e-02 | True | Chesapeake_Bay_retriever |
| 1194 | 740359016048689152 | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | 0.863687 | True | 0.048590 | True | 4.739660e-02 | True | golden_retriever |
| 1196 | 740373189193256964 | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | 0.807644 | True | 0.101286 | True | 2.378530e-02 | True | golden_retriever |
| 1199 | 740711788199743490 | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | 0.388277 | True | 0.180264 | False | 4.965610e-02 | False | toy_poodle |
| 1200 | 740995100998766593 | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | 0.454363 | True | 0.215967 | True | 7.750030e-02 | True | malamute |
| 1201 | 741067306818797568 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | 0.843799 | True | 0.052956 | True | 3.571110e-02 | True | golden_retriever |
| 1202 | 741303864243200000 | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | 0.768156 | True | 0.014902 | True | 1.281580e-02 | True | Chihuahua |
| 1203 | 741438259667034112 | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | 0.292675 | True | 0.197858 | True | 1.503120e-01 | True | Chesapeake_Bay_retriever |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | 0.786089 | True | 0.048652 | True | 3.469330e-02 | True | Labrador_retriever |
| 1205 | 741793263812808706 | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | 0.311325 | True | 0.115349 | True | 6.853350e-02 | True | kuvasz |
| 1208 | 742385895052087300 | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | 0.566911 | True | 0.117566 | True | 4.766400e-02 | True | Cardigan |
| 1209 | 742423170473463808 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | 0.997310 | True | 0.001186 | True | 4.279890e-04 | True | pug |
| 1212 | 743210557239623680 | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | 0.930705 | True | 0.025934 | True | 7.535360e-03 | True | golden_retriever |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | 0.350629 | True | 0.182782 | True | 8.766240e-02 | True | kuvasz |
| 1214 | 743253157753532416 | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | 0.442612 | True | 0.368137 | True | 1.778220e-01 | True | malamute |
| 1218 | 743609206067040256 | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | 0.982794 | True | 0.004766 | True | 3.432010e-03 | True | Weimaraner |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | 0.562315 | True | 0.416478 | True | 8.552360e-03 | True | dalmatian |
| 1220 | 743980027717509120 | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | 0.975730 | True | 0.008073 | True | 5.570870e-03 | True | bull_mastiff |
| 1221 | 744234799360020481 | https://pbs.twimg.com/ext_tw_video_thumb/74423... | 1 | 0.825333 | True | 0.044681 | False | 1.844220e-02 | True | Labrador_retriever |
| 1222 | 744334592493166593 | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | 0.960543 | True | 0.012192 | True | 4.752990e-03 | False | Samoyed |
| 1223 | 744709971296780288 | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | 0.234431 | True | 0.114876 | True | 8.661370e-02 | True | Shetland_sheepdog |
| 1224 | 744971049620602880 | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | 0.497755 | True | 0.282017 | True | 9.003240e-02 | True | toy_poodle |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | 0.427481 | True | 0.146336 | True | 1.342690e-01 | True | Old_English_sheepdog |
| 1226 | 745057283344719872 | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | 0.963985 | True | 0.026206 | True | 4.543650e-03 | True | Shetland_sheepdog |
| 1228 | 745422732645535745 | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | 0.663800 | True | 0.308261 | True | 4.269210e-03 | False | Labrador_retriever |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | 0.984267 | True | 0.008942 | True | 1.928260e-03 | True | Pekinese |
| 1232 | 746056683365994496 | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | 0.433320 | True | 0.335997 | True | 1.771790e-01 | True | Shetland_sheepdog |
| 1233 | 746131877086527488 | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | 0.575637 | True | 0.195950 | True | 1.412240e-01 | True | chow |
| 1234 | 746369468511756288 | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | 0.622957 | True | 0.338884 | True | 2.416150e-02 | False | German_shepherd |
| 1235 | 746507379341139972 | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | 0.508292 | True | 0.234458 | True | 8.456280e-02 | True | toy_poodle |
| 1236 | 746726898085036033 | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | 0.256505 | True | 0.252417 | True | 2.031630e-01 | False | golden_retriever |
| 1237 | 746790600704425984 | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | 0.936183 | True | 0.010084 | False | 1.007700e-02 | True | Boston_bull |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | 0.175518 | False | 0.133647 | False | 1.015370e-01 | True | dingo |
| 1239 | 746872823977771008 | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | 0.540201 | True | 0.207835 | True | 4.356490e-02 | True | Pembroke |
| 1241 | 747103485104099331 | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | 0.991954 | True | 0.002228 | True | 1.404020e-03 | False | Labrador_retriever |
| 1243 | 747219827526344708 | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | 0.548018 | True | 0.165503 | False | 4.300260e-02 | True | Shetland_sheepdog |
| 1245 | 747512671126323200 | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | 0.111493 | True | 0.095089 | True | 8.014560e-02 | True | Cardigan |
| 1246 | 747594051852075008 | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | 0.389136 | True | 0.270226 | False | 9.893880e-02 | True | basenji |
| 1247 | 747600769478692864 | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | 0.804363 | True | 0.054431 | True | 4.326760e-02 | True | Chesapeake_Bay_retriever |
| 1248 | 747816857231626240 | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | 0.768923 | True | 0.029053 | True | 2.903540e-02 | True | Pembroke |
| 1249 | 747844099428986880 | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | 0.360428 | True | 0.263134 | True | 1.312460e-01 | True | Pembroke |
| 1250 | 747885874273214464 | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | 0.408450 | True | 0.141330 | True | 8.301840e-02 | True | kuvasz |
| 1251 | 747933425676525569 | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | 0.998201 | True | 0.000793 | True | 2.957500e-04 | True | Samoyed |
| 1252 | 747963614829678593 | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | 0.307672 | True | 0.197486 | True | 1.054750e-01 | False | kelpie |
| 1254 | 748324050481647620 | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | 0.880499 | True | 0.107901 | True | 3.606670e-03 | True | Shetland_sheepdog |
| 1255 | 748346686624440324 | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | 0.596455 | True | 0.231428 | True | 5.826140e-02 | True | borzoi |
| 1256 | 748568946752774144 | https://pbs.twimg.com/ext_tw_video_thumb/74856... | 1 | 0.328161 | True | 0.304836 | True | 7.087840e-02 | True | Tibetan_terrier |
| 1259 | 748699167502000129 | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | 0.849029 | True | 0.083629 | True | 2.439450e-02 | True | Pembroke |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | 0.742912 | True | 0.204082 | True | 2.103230e-02 | True | borzoi |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | 0.742216 | True | 0.152810 | True | 5.183470e-02 | True | German_short-haired_pointer |
| 1264 | 749064354620928000 | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | 0.985222 | True | 0.003314 | True | 2.988880e-03 | True | pug |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/74931... | 1 | 0.155144 | True | 0.108382 | True | 7.461670e-02 | False | wire-haired_fox_terrier |
| 1266 | 749395845976588288 | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | 0.973715 | True | 0.020758 | True | 3.784360e-03 | True | Pomeranian |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | 0.694541 | True | 0.076335 | True | 4.854950e-02 | True | Chesapeake_Bay_retriever |
| 1268 | 749417653287129088 | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | 0.772894 | True | 0.042408 | True | 4.231310e-02 | True | papillon |
| 1269 | 749774190421639168 | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | 0.879012 | True | 0.054855 | True | 2.104100e-02 | True | Pekinese |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | 0.515319 | True | 0.151040 | True | 5.642000e-02 | True | Old_English_sheepdog |
| 1273 | 750026558547456000 | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | 0.258732 | True | 0.130760 | False | 7.172630e-02 | True | standard_poodle |
| 1274 | 750041628174217216 | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | 0.252031 | True | 0.188090 | True | 1.330170e-01 | True | Labrador_retriever |
| 1275 | 750056684286914561 | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | 0.484428 | True | 0.263550 | True | 7.700380e-02 | True | Saluki |
| 1277 | 750086836815486976 | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | 0.978277 | True | 0.003134 | False | 3.061490e-03 | True | pug |
| 1278 | 750101899009982464 | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | 0.316704 | True | 0.174269 | False | 1.473640e-01 | True | golden_retriever |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | 0.814405 | True | 0.175220 | True | 8.072300e-03 | True | Shih-Tzu |
| 1280 | 750132105863102464 | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | 0.478018 | True | 0.207458 | True | 8.587890e-02 | False | toy_poodle |
| 1281 | 750147208377409536 | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | 0.977765 | True | 0.004794 | True | 4.572840e-03 | True | pug |
| 1282 | 750383411068534784 | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | 0.672791 | True | 0.270188 | True | 3.450390e-02 | True | Border_collie |
| 1283 | 750429297815552001 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | 0.964929 | True | 0.011584 | True | 7.498620e-03 | False | golden_retriever |
| 1285 | 750719632563142656 | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | 0.972587 | True | 0.014772 | True | 5.798030e-03 | True | Pembroke |
| 1286 | 750868782890057730 | https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg | 4 | 0.912648 | True | 0.035059 | True | 2.637560e-02 | False | toy_poodle |
| 1287 | 751132876104687617 | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | 0.929390 | True | 0.038254 | True | 7.610200e-03 | True | Labrador_retriever |
| 1288 | 751205363882532864 | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | 0.947164 | True | 0.020597 | True | 1.657920e-02 | True | Labrador_retriever |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/75125... | 1 | 0.178852 | True | 0.115752 | True | 1.137960e-01 | True | Walker_hound |
| 1290 | 751456908746354688 | https://pbs.twimg.com/ext_tw_video_thumb/75145... | 1 | 0.714409 | True | 0.066163 | True | 2.841260e-02 | True | golden_retriever |
| 1291 | 751538714308972544 | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | 0.516257 | True | 0.210839 | True | 1.620220e-01 | False | Labrador_retriever |
| 1292 | 751583847268179968 | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | 0.868304 | True | 0.059623 | False | 1.387630e-02 | False | dalmatian |
| 1293 | 751598357617971201 | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | 0.757756 | True | 0.035150 | True | 2.769820e-02 | True | toy_poodle |
| 1294 | 751830394383790080 | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | 0.703569 | True | 0.076637 | True | 4.595910e-02 | False | chow |
| 1295 | 751937170840121344 | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | 0.424168 | True | 0.260562 | False | 1.274320e-01 | True | Lakeland_terrier |
| 1296 | 752173152931807232 | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | 0.527659 | True | 0.174765 | True | 4.552540e-02 | True | Labrador_retriever |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/75233... | 1 | 0.399163 | True | 0.086425 | True | 7.523110e-02 | True | Bedlington_terrier |
| 1301 | 752682090207055872 | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | 0.299966 | True | 0.278355 | True | 1.785200e-01 | True | German_shepherd |
| 1302 | 752917284578922496 | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | 0.609283 | True | 0.352460 | True | 1.610520e-02 | True | German_shepherd |
| 1303 | 753026973505581056 | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | 0.868511 | True | 0.103708 | True | 1.814160e-02 | True | Pembroke |
| 1304 | 753294487569522689 | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | 0.194773 | True | 0.102305 | False | 8.685470e-02 | True | chow |
| 1305 | 753375668877008896 | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | 0.360071 | True | 0.134816 | False | 9.820660e-02 | False | bluetick |
| 1306 | 753398408988139520 | https://pbs.twimg.com/ext_tw_video_thumb/75339... | 1 | 0.163794 | True | 0.157192 | True | 1.429950e-01 | True | whippet |
| 1308 | 753655901052166144 | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | 0.456092 | True | 0.153126 | True | 1.441470e-01 | True | miniature_pinscher |
| 1309 | 754011816964026368 | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | 0.600985 | True | 0.273176 | True | 5.677150e-02 | True | French_bulldog |
| 1310 | 754120377874386944 | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | 0.168909 | True | 0.129114 | True | 1.208220e-01 | True | chow |
| 1311 | 754449512966619136 | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | 0.858513 | True | 0.076012 | True | 1.624560e-02 | True | beagle |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | 0.471493 | False | 0.250837 | False | 1.178720e-01 | False | rotisserie |
| 1314 | 754856583969079297 | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | 0.872385 | True | 0.099963 | True | 6.050830e-03 | True | golden_retriever |
| 1315 | 754874841593970688 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | 0.272205 | True | 0.251530 | True | 1.168060e-01 | False | pug |
| 1316 | 755110668769038337 | https://pbs.twimg.com/ext_tw_video_thumb/75511... | 1 | 0.708974 | True | 0.114314 | True | 6.581340e-02 | True | Labrador_retriever |
| 1318 | 755955933503782912 | https://pbs.twimg.com/ext_tw_video_thumb/75595... | 1 | 0.596882 | True | 0.176478 | True | 2.677530e-02 | True | Pekinese |
| 1319 | 756275833623502848 | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | 0.602957 | True | 0.086981 | True | 8.627650e-02 | True | Airedale |
| 1321 | 756303284449767430 | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | 0.981652 | True | 0.006790 | True | 4.324510e-03 | True | golden_retriever |
| 1323 | 756651752796094464 | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | 0.294808 | True | 0.282301 | True | 1.126010e-01 | True | Pembroke |
| 1324 | 756939218950160384 | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | 0.790371 | True | 0.130268 | True | 6.462870e-02 | True | golden_retriever |
| 1325 | 756998049151549440 | https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg | 4 | 0.678555 | True | 0.072632 | True | 4.903300e-02 | True | golden_retriever |
| 1326 | 757354760399941633 | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | 0.914667 | True | 0.047774 | True | 1.547680e-02 | False | Italian_greyhound |
| 1327 | 757393109802180609 | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | 0.787125 | True | 0.112676 | True | 4.803860e-02 | True | Labrador_retriever |
| 1331 | 757611664640446465 | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | 0.829259 | True | 0.145358 | True | 1.959530e-02 | True | bluetick |
| 1336 | 758355060040593408 | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | 0.987643 | True | 0.012112 | True | 1.174770e-04 | False | Pembroke |
| 1337 | 758405701903519748 | https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg | 4 | 0.702954 | True | 0.092277 | False | 3.272680e-02 | False | Chesapeake_Bay_retriever |
| 1338 | 758467244762497024 | https://pbs.twimg.com/ext_tw_video_thumb/75846... | 1 | 0.436377 | True | 0.113956 | True | 9.968910e-02 | True | Labrador_retriever |
| 1339 | 758474966123810816 | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | 0.546145 | True | 0.244200 | True | 1.004290e-01 | True | Pembroke |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | 0.848514 | True | 0.110054 | True | 2.520140e-02 | True | Chesapeake_Bay_retriever |
| 1341 | 758828659922702336 | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | 0.480048 | True | 0.264522 | True | 1.218400e-01 | True | Chesapeake_Bay_retriever |
| 1343 | 759047813560868866 | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | 0.778546 | True | 0.154254 | False | 2.497160e-02 | True | Labrador_retriever |
| 1344 | 759099523532779520 | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | 0.129034 | True | 0.117508 | True | 1.067080e-01 | True | Shetland_sheepdog |
| 1345 | 759159934323924993 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | 0.254856 | True | 0.227716 | True | 2.232630e-01 | True | Irish_terrier |
| 1346 | 759197388317847553 | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | 0.511341 | True | 0.076899 | True | 6.326940e-02 | False | kuvasz |
| 1347 | 759447681597108224 | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | 0.223148 | True | 0.220731 | True | 1.813030e-01 | False | kuvasz |
| 1348 | 759557299618865152 | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | 0.763333 | True | 0.194251 | True | 1.222540e-02 | True | golden_retriever |
| 1349 | 759566828574212096 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | 0.967397 | True | 0.016641 | True | 1.485760e-02 | False | Labrador_retriever |
| 1350 | 759793422261743616 | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | 0.985876 | True | 0.001948 | True | 1.751740e-03 | True | golden_retriever |
| 1351 | 759846353224826880 | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | 0.355395 | True | 0.141094 | True | 9.219820e-02 | True | Sussex_spaniel |
| 1352 | 759923798737051648 | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | 0.324579 | True | 0.109168 | False | 1.024660e-01 | True | Labrador_retriever |
| 1355 | 760290219849637889 | https://pbs.twimg.com/ext_tw_video_thumb/76028... | 1 | 0.302200 | True | 0.258803 | True | 1.792000e-01 | True | Old_English_sheepdog |
| 1356 | 760539183865880579 | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | 0.988013 | True | 0.004518 | True | 1.189250e-03 | True | Samoyed |
| 1358 | 760656994973933572 | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | 0.760546 | True | 0.232079 | True | 2.874170e-03 | True | golden_retriever |
| 1359 | 760893934457552897 | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | 0.113992 | True | 0.105780 | True | 7.393450e-02 | True | Blenheim_spaniel |
| 1360 | 761004547850530816 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | 0.735163 | True | 0.064897 | True | 4.770370e-02 | True | golden_retriever |
| 1362 | 761292947749015552 | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | 0.660893 | True | 0.314886 | True | 8.833830e-03 | True | standard_poodle |
| 1363 | 761334018830917632 | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | 0.822936 | True | 0.086152 | True | 6.333290e-02 | True | Norwegian_elkhound |
| 1365 | 761599872357261312 | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | 0.240427 | True | 0.224269 | True | 1.297300e-01 | True | Gordon_setter |
| 1368 | 761750502866649088 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | 0.586937 | True | 0.398260 | True | 5.409690e-03 | True | golden_retriever |
| 1369 | 761976711479193600 | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | 0.475552 | True | 0.082898 | True | 4.846400e-02 | True | Labrador_retriever |
| 1372 | 762464539388485633 | https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg | 4 | 0.999953 | True | 0.000023 | True | 3.010330e-06 | False | chow |
| 1373 | 762471784394268675 | https://pbs.twimg.com/ext_tw_video_thumb/76247... | 1 | 0.540276 | True | 0.279802 | True | 1.020580e-01 | True | Samoyed |
| 1374 | 762699858130116608 | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | 0.519047 | True | 0.296069 | True | 6.100530e-02 | False | kelpie |
| 1376 | 763183847194451968 | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | 0.354674 | True | 0.338642 | True | 1.558280e-01 | False | miniature_poodle |
| 1377 | 763837565564780549 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | 0.375098 | True | 0.069362 | False | 5.052760e-02 | True | malamute |
| 1378 | 764259802650378240 | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | 0.973677 | True | 0.025950 | True | 1.915680e-04 | True | German_shepherd |
| 1379 | 764857477905154048 | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | 0.792059 | True | 0.155034 | True | 3.837380e-02 | True | Bernese_mountain_dog |
| 1380 | 765222098633691136 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | 0.556595 | True | 0.151047 | True | 9.643550e-02 | True | dalmatian |
| 1381 | 765371061932261376 | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | 0.829456 | True | 0.089371 | True | 1.702750e-02 | True | golden_retriever |
| 1382 | 765395769549590528 | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | 0.509491 | True | 0.330401 | True | 3.887490e-02 | True | Pembroke |
| 1383 | 765669560888528897 | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | 0.993333 | True | 0.002902 | True | 2.415180e-03 | True | beagle |
| 1384 | 765719909049503744 | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | 0.969518 | True | 0.021696 | True | 2.074550e-03 | True | golden_retriever |
| 1385 | 766008592277377025 | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | 0.728153 | True | 0.103842 | True | 6.241430e-02 | True | Welsh_springer_spaniel |
| 1387 | 766078092750233600 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | 0.420463 | True | 0.132640 | True | 1.215230e-01 | True | toy_poodle |
| 1388 | 766313316352462849 | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | 0.966896 | True | 0.016424 | True | 1.022710e-02 | True | toy_poodle |
| 1389 | 766423258543644672 | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | 0.995823 | True | 0.003897 | True | 2.531090e-04 | True | keeshond |
| 1390 | 766693177336135680 | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | 0.948355 | True | 0.015032 | True | 9.630840e-03 | True | Doberman |
| 1391 | 766793450729734144 | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | 0.451697 | True | 0.197513 | True | 7.269860e-02 | True | beagle |
| 1392 | 767122157629476866 | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | 0.873841 | True | 0.059192 | True | 3.530600e-02 | True | toy_poodle |
| 1394 | 767500508068192258 | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | 0.483228 | True | 0.165063 | True | 6.017290e-02 | True | chow |
| 1395 | 767754930266464257 | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | 0.307794 | True | 0.142185 | False | 1.139030e-01 | True | vizsla |
| 1398 | 768473857036525572 | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | 0.739170 | True | 0.246488 | True | 6.892340e-03 | True | Labrador_retriever |
| 1399 | 768596291618299904 | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | 0.729745 | True | 0.237961 | True | 2.090330e-02 | True | Great_Pyrenees |
| 1400 | 768609597686943744 | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | 0.183283 | True | 0.136012 | True | 6.012990e-02 | True | basenji |
| 1401 | 768855141948723200 | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | 0.720219 | True | 0.058365 | True | 5.511350e-02 | True | chow |
| 1402 | 768970937022709760 | https://pbs.twimg.com/ext_tw_video_thumb/76896... | 1 | 0.182358 | True | 0.110658 | True | 8.639890e-02 | False | Pomeranian |
| 1403 | 769212283578875904 | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | 0.166538 | True | 0.148215 | True | 8.273510e-02 | True | golden_retriever |
| 1404 | 769695466921623552 | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | 0.407117 | True | 0.165638 | False | 4.583720e-02 | True | pug |
| 1405 | 769940425801170949 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | 0.796313 | True | 0.155413 | True | 3.094330e-02 | True | miniature_pinscher |
| 1406 | 770069151037685760 | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | 0.414965 | True | 0.286985 | True | 1.149700e-01 | True | Boston_bull |
| 1407 | 770093767776997377 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | 0.843799 | True | 0.052956 | True | 3.571110e-02 | True | golden_retriever |
| 1408 | 770293558247038976 | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | 0.931668 | True | 0.038896 | True | 1.315140e-02 | True | Italian_greyhound |
| 1411 | 770772759874076672 | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | 0.979515 | True | 0.010219 | True | 4.606040e-03 | True | chow |
| 1412 | 770787852854652928 | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | 0.787812 | True | 0.163946 | True | 2.029340e-02 | True | Bernese_mountain_dog |
| 1415 | 771102124360998913 | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | 0.568789 | True | 0.179918 | True | 3.443740e-02 | True | Labrador_retriever |
| 1417 | 771171053431250945 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | 0.978833 | True | 0.012763 | True | 1.853050e-03 | True | Samoyed |
| 1418 | 771380798096281600 | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | 0.503728 | True | 0.450944 | True | 1.269280e-02 | True | collie |
| 1419 | 771500966810099713 | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | 0.833952 | True | 0.103223 | True | 1.209390e-02 | False | Labrador_retriever |
| 1420 | 771770456517009408 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | 0.533180 | True | 0.192031 | True | 1.216260e-01 | True | papillon |
| 1421 | 772102971039580160 | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | 0.541780 | True | 0.260504 | True | 6.370310e-02 | True | Pembroke |
| 1422 | 772114945936949249 | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | 0.803293 | True | 0.052980 | True | 3.723880e-02 | True | Chihuahua |
| 1423 | 772117678702071809 | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | 0.217821 | True | 0.157677 | True | 1.277260e-01 | True | Labrador_retriever |
| 1424 | 772152991789019136 | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | 0.275318 | True | 0.100988 | True | 7.352490e-02 | True | golden_retriever |
| 1425 | 772193107915964416 | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | 0.367945 | True | 0.223522 | True | 1.648710e-01 | True | Pembroke |
| 1426 | 772581559778025472 | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | 0.574345 | True | 0.128352 | True | 5.947550e-02 | True | Newfoundland |
| 1427 | 772615324260794368 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | 0.556595 | True | 0.151047 | True | 9.643550e-02 | True | dalmatian |
| 1428 | 772826264096874500 | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | 0.915351 | True | 0.072416 | True | 8.228940e-03 | True | basset |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | 0.427766 | True | 0.219256 | True | 1.446140e-01 | True | Blenheim_spaniel |
| 1433 | 773547596996571136 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | 0.372202 | True | 0.137187 | True | 7.143620e-02 | True | Norwegian_elkhound |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | 0.969311 | True | 0.013243 | True | 4.857310e-03 | True | Old_English_sheepdog |
| 1435 | 773704687002451968 | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | 0.324251 | True | 0.181210 | True | 1.334360e-01 | True | silky_terrier |
| 1436 | 773922284943896577 | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | 0.554331 | True | 0.432158 | True | 3.199420e-03 | True | Pomeranian |
| 1438 | 774314403806253056 | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | 0.596045 | True | 0.223067 | True | 3.632470e-02 | True | Eskimo_dog |
| 1439 | 774639387460112384 | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | 0.627593 | True | 0.128705 | True | 1.262820e-01 | True | Walker_hound |
| 1440 | 774757898236878852 | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | 0.719941 | True | 0.251546 | True | 7.008380e-03 | True | toy_poodle |
| 1441 | 775085132600442880 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | 0.316565 | True | 0.241929 | True | 1.575240e-01 | True | chow |
| 1442 | 775364825476165632 | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | 0.571229 | True | 0.175257 | True | 3.430630e-02 | True | beagle |
| 1445 | 775842724423557120 | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | 0.520022 | True | 0.028775 | False | 2.599010e-02 | True | chow |
| 1446 | 775898661951791106 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | 0.945523 | True | 0.042319 | True | 3.956260e-03 | False | golden_retriever |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | 0.502228 | True | 0.154594 | True | 1.351760e-01 | True | Rottweiler |
| 1450 | 776218204058357768 | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | 0.940326 | True | 0.055527 | True | 2.226350e-03 | True | Samoyed |
| 1451 | 776477788987613185 | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | 0.884839 | True | 0.057565 | True | 5.766080e-03 | False | Labrador_retriever |
| 1452 | 776813020089548800 | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | 0.516610 | True | 0.255033 | True | 1.689890e-01 | True | toy_poodle |
| 1453 | 776819012571455488 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | 0.346545 | True | 0.166246 | True | 1.175020e-01 | True | Chihuahua |
| 1454 | 777189768882946048 | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | 0.988412 | True | 0.004177 | True | 1.506580e-03 | False | Chihuahua |
| 1455 | 777621514455814149 | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | 0.999823 | True | 0.000056 | True | 2.768060e-05 | True | chow |
| 1456 | 777641927919427584 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | 0.964929 | True | 0.011584 | True | 7.498620e-03 | False | golden_retriever |
| 1457 | 777684233540206592 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | 0.253442 | True | 0.162850 | True | 1.109210e-01 | True | cocker_spaniel |
| 1458 | 777885040357281792 | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | 0.123529 | True | 0.119682 | True | 1.087090e-01 | True | Afghan_hound |
| 1460 | 778039087836069888 | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | 0.717776 | True | 0.111175 | True | 5.880240e-02 | True | German_shepherd |
| 1461 | 778286810187399168 | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | 0.322070 | True | 0.229903 | True | 1.014200e-01 | False | Boston_bull |
| 1462 | 778383385161035776 | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | 0.345266 | True | 0.312823 | True | 2.130110e-01 | True | collie |
| 1464 | 778408200802557953 | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | 0.848362 | True | 0.108124 | True | 1.194170e-02 | True | Pembroke |
| 1465 | 778624900596654080 | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | 0.786089 | True | 0.121488 | True | 1.460310e-02 | True | Airedale |
| 1466 | 778650543019483137 | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | 0.515699 | True | 0.300292 | True | 8.702230e-02 | True | German_shepherd |
| 1467 | 778748913645780993 | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | 0.351434 | True | 0.201478 | True | 1.428380e-01 | True | Staffordshire_bullterrier |
| 1468 | 778990705243029504 | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | 0.715351 | True | 0.207056 | True | 2.851940e-02 | True | cocker_spaniel |
| 1469 | 779056095788752897 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | 0.721188 | True | 0.112943 | True | 5.336450e-02 | True | Chihuahua |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | 0.431080 | True | 0.060365 | True | 5.984540e-02 | True | toy_poodle |
| 1472 | 779834332596887552 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | 0.993830 | True | 0.003143 | True | 9.174140e-04 | True | golden_retriever |
| 1473 | 780192070812196864 | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | 0.144012 | True | 0.091474 | False | 7.354470e-02 | False | vizsla |
| 1474 | 780459368902959104 | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | 0.382491 | True | 0.312026 | True | 3.327190e-02 | True | Great_Dane |
| 1475 | 780476555013349377 | https://pbs.twimg.com/tweet_video_thumb/CtTFZZ... | 1 | 0.919255 | True | 0.032350 | True | 2.846790e-02 | True | pug |
| 1476 | 780496263422808064 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | 0.997310 | True | 0.001186 | True | 4.279890e-04 | True | pug |
| 1477 | 780543529827336192 | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | 0.628312 | True | 0.317365 | True | 1.226010e-02 | True | golden_retriever |
| 1478 | 780601303617732608 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | 0.995143 | True | 0.003044 | True | 1.049550e-03 | True | Saint_Bernard |
| 1479 | 780800785462489090 | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | 0.951963 | True | 0.035346 | True | 8.861940e-03 | True | Siberian_husky |
| 1480 | 780858289093574656 | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | 0.488555 | True | 0.271655 | True | 1.069130e-01 | True | Chesapeake_Bay_retriever |
| 1482 | 781163403222056960 | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | 0.973841 | True | 0.025188 | True | 2.973110e-04 | True | Shetland_sheepdog |
| 1483 | 781251288990355457 | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | 0.887771 | True | 0.030666 | True | 2.672980e-02 | False | Mexican_hairless |
| 1485 | 781661882474196992 | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | 0.438087 | True | 0.226954 | True | 7.065160e-02 | True | Pembroke |
| 1487 | 782021823840026624 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | 0.383223 | True | 0.165930 | True | 1.181990e-01 | True | golden_retriever |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | 0.504427 | True | 0.390678 | True | 3.459550e-02 | True | briard |
| 1489 | 782598640137187329 | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | 0.840871 | True | 0.140516 | True | 1.201160e-02 | True | malamute |
| 1490 | 782722598790725632 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | 0.574557 | True | 0.339251 | True | 4.610820e-02 | False | Irish_setter |
| 1491 | 782747134529531904 | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | 0.560699 | True | 0.199482 | True | 4.068180e-02 | True | golden_retriever |
| 1493 | 783085703974514689 | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | 0.240602 | True | 0.164088 | True | 1.345060e-01 | True | Chesapeake_Bay_retriever |
| 1494 | 783334639985389568 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | 0.593858 | True | 0.130611 | True | 1.008420e-01 | True | Cardigan |
| 1495 | 783347506784731136 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | 0.611525 | True | 0.368566 | True | 3.329570e-03 | True | Cardigan |
| 1496 | 783391753726550016 | https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg | 4 | 0.877130 | True | 0.086241 | True | 1.101910e-02 | True | Norwegian_elkhound |
| 1497 | 783466772167098368 | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | 0.789000 | True | 0.115916 | True | 3.629390e-02 | True | Chihuahua |
| 1498 | 783695101801398276 | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | 0.314265 | True | 0.300435 | True | 4.948690e-02 | True | chow |
| 1499 | 783821107061198850 | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | 0.265659 | True | 0.196414 | True | 1.335340e-01 | True | Lakeland_terrier |
| 1501 | 784431430411685888 | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | 0.744819 | True | 0.243192 | True | 1.092020e-02 | True | miniature_poodle |
| 1502 | 784517518371221505 | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | 0.757764 | True | 0.151248 | True | 8.484020e-02 | True | malamute |
| 1503 | 784826020293709826 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | 0.090341 | True | 0.083499 | False | 7.745560e-02 | True | chow |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | 0.674893 | False | 0.056740 | False | 5.613700e-02 | True | teddy |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | 0.436023 | True | 0.258049 | True | 1.452310e-01 | True | miniature_pinscher |
| 1508 | 785872687017132033 | https://pbs.twimg.com/ext_tw_video_thumb/78587... | 1 | 0.392108 | True | 0.198358 | True | 1.433280e-01 | True | Great_Pyrenees |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | 0.972070 | False | 0.008493 | True | 2.882710e-03 | True | teddy |
| 1510 | 786036967502913536 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | 0.993830 | True | 0.003143 | True | 9.174140e-04 | True | golden_retriever |
| 1511 | 786233965241827333 | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | 0.478193 | True | 0.224817 | True | 7.739560e-02 | True | Labrador_retriever |
| 1512 | 786363235746385920 | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | 0.929266 | True | 0.062867 | True | 2.156690e-03 | True | golden_retriever |
| 1513 | 786595970293370880 | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | 0.709512 | True | 0.287178 | True | 5.701760e-04 | True | Pembroke |
| 1514 | 786664955043049472 | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | 0.512034 | True | 0.464816 | True | 7.812490e-03 | True | Leonberg |
| 1515 | 786709082849828864 | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | 0.467321 | True | 0.122978 | False | 1.026540e-01 | True | Pomeranian |
| 1516 | 786963064373534720 | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | 0.915303 | True | 0.046213 | True | 3.750410e-02 | True | golden_retriever |
| 1518 | 787397959788929025 | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | 0.900483 | True | 0.021084 | True | 1.948400e-02 | True | Chihuahua |
| 1519 | 787717603741622272 | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | 0.992339 | True | 0.004920 | True | 8.528020e-04 | True | German_shepherd |
| 1520 | 787810552592695296 | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | 0.362835 | True | 0.221864 | True | 8.041830e-02 | True | pug |
| 1522 | 788070120937619456 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | 0.735163 | True | 0.064897 | True | 4.770370e-02 | True | golden_retriever |
| 1523 | 788150585577050112 | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | 0.814145 | True | 0.112704 | True | 1.588320e-02 | True | chow |
| 1524 | 788178268662984705 | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | 0.735480 | True | 0.075101 | True | 3.607190e-02 | False | Samoyed |
| 1525 | 788412144018661376 | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | 0.805238 | True | 0.113798 | True | 3.855870e-02 | True | golden_retriever |
| 1526 | 788765914992902144 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | 0.500509 | True | 0.272734 | True | 4.147580e-02 | False | cocker_spaniel |
| 1528 | 789137962068021249 | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | 0.746135 | True | 0.070383 | True | 4.923690e-02 | True | Chihuahua |
| 1529 | 789268448748703744 | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | 0.812860 | True | 0.120853 | True | 2.426930e-02 | True | malamute |
| 1530 | 789530877013393408 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | 0.363272 | True | 0.197021 | True | 1.510240e-01 | True | schipperke |
| 1531 | 789599242079838210 | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | 0.878822 | True | 0.018570 | True | 1.749850e-02 | True | Chesapeake_Bay_retriever |
| 1532 | 789628658055020548 | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | 0.260702 | True | 0.088143 | False | 7.988310e-02 | True | chow |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | 0.427742 | True | 0.190503 | True | 1.464270e-01 | True | Labrador_retriever |
| 1535 | 790337589677002753 | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | 0.658808 | True | 0.153096 | True | 1.022990e-01 | True | Pembroke |
| 1537 | 790698755171364864 | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | 0.996541 | True | 0.001057 | True | 9.979070e-04 | True | Bernese_mountain_dog |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | 0.349195 | True | 0.309535 | True | 1.047680e-01 | True | cocker_spaniel |
| 1541 | 791026214425268224 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | 0.375098 | True | 0.069362 | False | 5.052760e-02 | True | malamute |
| 1542 | 791312159183634433 | https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg | 4 | 0.892925 | True | 0.095524 | True | 3.544260e-03 | True | miniature_pinscher |
| 1543 | 791406955684368384 | https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg | 4 | 0.972629 | True | 0.027026 | True | 1.525020e-04 | True | Pembroke |
| 1544 | 791672322847637504 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | 0.705092 | True | 0.219721 | True | 1.596500e-02 | True | golden_retriever |
| 1545 | 792050063153438720 | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | 0.942856 | True | 0.052715 | False | 2.743000e-03 | True | komondor |
| 1546 | 792394556390137856 | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | 0.746387 | True | 0.091615 | True | 6.107820e-02 | True | cocker_spaniel |
| 1547 | 792773781206999040 | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | 0.912804 | True | 0.067822 | True | 4.450690e-03 | True | Yorkshire_terrier |
| 1550 | 793120401413079041 | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | 0.724944 | True | 0.169744 | True | 3.550230e-02 | True | Labrador_retriever |
| 1552 | 793150605191548928 | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | 0.193869 | True | 0.160380 | True | 1.259820e-01 | True | Italian_greyhound |
| 1553 | 793165685325201412 | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | 0.946224 | True | 0.036477 | True | 2.352850e-03 | False | golden_retriever |
| 1554 | 793180763617361921 | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | 0.266824 | True | 0.218783 | True | 1.329600e-01 | True | Lakeland_terrier |
| 1555 | 793195938047070209 | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | 0.654762 | True | 0.074100 | True | 4.233930e-02 | True | Labrador_retriever |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | 0.456047 | True | 0.273428 | True | 8.364330e-02 | True | wire-haired_fox_terrier |
| 1558 | 793241302385262592 | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | 0.559308 | True | 0.390222 | True | 3.631570e-02 | True | golden_retriever |
| 1559 | 793256262322548741 | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | 0.207622 | True | 0.060574 | True | 4.122050e-02 | True | basset |
| 1560 | 793271401113350145 | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | 0.231695 | True | 0.206749 | True | 7.011950e-02 | True | Siberian_husky |
| 1561 | 793286476301799424 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | 0.274637 | True | 0.142204 | True | 1.096770e-01 | False | Afghan_hound |
| 1562 | 793500921481273345 | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | 0.326122 | True | 0.219904 | True | 1.633660e-01 | True | golden_retriever |
| 1563 | 793601777308463104 | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | 0.538981 | True | 0.217830 | True | 8.914870e-02 | True | miniature_pinscher |
| 1564 | 793614319594401792 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | 0.705092 | True | 0.219721 | True | 1.596500e-02 | True | golden_retriever |
| 1565 | 793845145112371200 | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | 0.765277 | True | 0.112753 | True | 4.766170e-02 | True | Old_English_sheepdog |
| 1566 | 793962221541933056 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | 0.861651 | True | 0.044462 | True | 1.649670e-02 | True | Labrador_retriever |
| 1568 | 794332329137291264 | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | 0.988307 | True | 0.004906 | True | 2.901290e-03 | True | Samoyed |
| 1569 | 794355576146903043 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | 0.500509 | True | 0.272734 | True | 4.147580e-02 | False | cocker_spaniel |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | 0.569566 | False | 0.173745 | False | 3.766180e-02 | True | teddy |
| 1571 | 794983741416415232 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | 0.363272 | True | 0.197021 | True | 1.510240e-01 | True | schipperke |
| 1573 | 795400264262053889 | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | 0.925494 | True | 0.059241 | True | 4.495340e-03 | False | golden_retriever |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/79546... | 1 | 0.193082 | True | 0.157927 | True | 1.246840e-01 | True | golden_retriever |
| 1575 | 796031486298386433 | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | 0.893775 | True | 0.070140 | True | 8.418530e-03 | False | golden_retriever |
| 1576 | 796080075804475393 | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | 0.973846 | True | 0.014110 | True | 2.358320e-03 | False | chow |
| 1577 | 796116448414461957 | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | 0.700182 | True | 0.260738 | True | 1.710990e-02 | True | Cardigan |
| 1578 | 796149749086875649 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | 0.600276 | True | 0.140798 | True | 8.735480e-02 | False | golden_retriever |
| 1579 | 796177847564038144 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | 0.600276 | True | 0.140798 | True | 8.735480e-02 | False | golden_retriever |
| 1580 | 796387464403357696 | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | 0.461164 | True | 0.288650 | True | 5.242300e-02 | False | Pekinese |
| 1581 | 796484825502875648 | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | 0.116924 | True | 0.107511 | False | 9.984340e-02 | True | cocker_spaniel |
| 1582 | 796759840936919040 | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | 0.463996 | True | 0.155566 | True | 1.375870e-01 | True | American_Staffordshire_terrier |
| 1583 | 796865951799083009 | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | 0.839129 | True | 0.080699 | True | 3.450500e-02 | True | Cardigan |
| 1584 | 797236660651966464 | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | 0.767005 | True | 0.100844 | True | 4.836810e-02 | True | collie |
| 1585 | 797545162159308800 | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | 0.954089 | True | 0.033644 | True | 9.735660e-03 | True | Pembroke |
| 1586 | 797971864723324932 | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | 0.489845 | True | 0.305760 | True | 7.279910e-02 | True | American_Staffordshire_terrier |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | 0.524583 | True | 0.102931 | True | 9.789310e-02 | True | Pekinese |
| 1588 | 798340744599797760 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | 0.533180 | True | 0.192031 | True | 1.216260e-01 | True | papillon |
| 1589 | 798628517273620480 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | 0.636169 | True | 0.119256 | True | 8.254920e-02 | True | beagle |
| 1590 | 798644042770751489 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | 0.403698 | True | 0.347609 | True | 1.371860e-01 | True | English_springer |
| 1591 | 798665375516884993 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | 0.243529 | True | 0.227150 | False | 5.605670e-02 | True | chow |
| 1593 | 798694562394996736 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | 0.615163 | True | 0.159509 | True | 8.446570e-02 | True | Chihuahua |
| 1594 | 798697898615730177 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | 0.868671 | True | 0.095095 | False | 7.651370e-03 | True | Labrador_retriever |
| 1595 | 798925684722855936 | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | 0.539463 | True | 0.184897 | True | 1.630240e-01 | True | West_Highland_white_terrier |
| 1596 | 798933969379225600 | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | 0.703224 | True | 0.229351 | True | 4.435080e-02 | True | Siberian_husky |
| 1597 | 799063482566066176 | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | 0.334436 | True | 0.231573 | True | 2.142030e-01 | True | Norfolk_terrier |
| 1598 | 799297110730567681 | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | 0.985028 | True | 0.005834 | True | 5.442810e-03 | True | malamute |
| 1599 | 799422933579902976 | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | 0.583630 | True | 0.276095 | True | 1.855010e-02 | True | miniature_pinscher |
| 1600 | 799757965289017345 | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | 0.442534 | True | 0.288684 | True | 1.963990e-01 | True | Border_collie |
| 1601 | 799774291445383169 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | 0.316565 | True | 0.241929 | True | 1.575240e-01 | True | chow |
| 1603 | 800141422401830912 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | 0.938048 | True | 0.025119 | True | 2.297730e-02 | True | golden_retriever |
| 1604 | 800388270626521089 | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | 0.359860 | True | 0.194207 | True | 1.546030e-01 | True | golden_retriever |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | 0.311928 | False | 0.184657 | False | 1.732290e-01 | False | teddy |
| 1607 | 800513324630806528 | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | 0.828904 | True | 0.167373 | True | 7.659340e-04 | True | Pembroke |
| 1608 | 800751577355128832 | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | 0.771984 | True | 0.076653 | True | 3.961830e-02 | True | cocker_spaniel |
| 1609 | 801115127852503040 | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | 0.823356 | True | 0.094602 | True | 2.195340e-02 | True | dalmatian |
| 1610 | 801167903437357056 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | 0.740220 | True | 0.061604 | True | 4.133140e-02 | True | cocker_spaniel |
| 1612 | 801538201127157760 | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | 0.550506 | True | 0.306612 | True | 5.423000e-02 | True | Pembroke |
| 1613 | 801958328846974976 | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | 0.327887 | True | 0.271916 | True | 2.476190e-01 | True | Staffordshire_bullterrier |
| 1614 | 802239329049477120 | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | 0.482498 | True | 0.335774 | True | 1.345890e-01 | True | Eskimo_dog |
| 1615 | 802247111496568832 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | 0.721188 | True | 0.112943 | True | 5.336450e-02 | True | Chihuahua |
| 1616 | 802265048156610565 | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | 0.897162 | True | 0.016895 | True | 1.206060e-02 | True | Labrador_retriever |
| 1618 | 802572683846291456 | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | 0.610171 | True | 0.173252 | True | 1.632570e-01 | True | golden_retriever |
| 1619 | 802624713319034886 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | 0.253442 | True | 0.162850 | True | 1.109210e-01 | True | cocker_spaniel |
| 1620 | 802952499103731712 | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | 0.944032 | True | 0.017240 | True | 1.208480e-02 | True | chow |
| 1621 | 803276597545603072 | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | 0.457086 | True | 0.307801 | True | 4.998820e-02 | True | Pembroke |
| 1623 | 803638050916102144 | https://pbs.twimg.com/ext_tw_video_thumb/80363... | 1 | 0.372776 | True | 0.343666 | True | 6.724230e-02 | True | Labrador_retriever |
| 1624 | 803692223237865472 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | 0.530104 | True | 0.197314 | True | 8.251460e-02 | True | Lakeland_terrier |
| 1625 | 803773340896923648 | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | 0.817066 | True | 0.059707 | True | 3.419520e-02 | True | miniature_pinscher |
| 1627 | 804413760345620481 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | 0.090341 | True | 0.083499 | False | 7.745560e-02 | True | chow |
| 1628 | 804738756058218496 | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | 0.915790 | True | 0.062480 | True | 8.297490e-03 | True | Tibetan_mastiff |
| 1629 | 805207613751304193 | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | 0.244705 | True | 0.180461 | True | 9.466370e-02 | True | Pembroke |
| 1631 | 805520635690676224 | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | 0.643147 | True | 0.186642 | True | 1.093450e-01 | True | malinois |
| 1632 | 805826884734976000 | https://pbs.twimg.com/ext_tw_video_thumb/80582... | 1 | 0.248926 | True | 0.098313 | True | 8.018850e-02 | True | Siberian_husky |
| 1633 | 805932879469572096 | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | 0.657967 | True | 0.319136 | True | 7.946740e-03 | True | Norwegian_elkhound |
| 1634 | 805958939288408065 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | 0.574557 | True | 0.339251 | True | 4.610820e-02 | False | Irish_setter |
| 1635 | 806219024703037440 | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | 0.835102 | True | 0.040783 | True | 2.127450e-02 | True | chow |
| 1636 | 806242860592926720 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | 0.593858 | True | 0.130611 | True | 1.008420e-01 | True | Cardigan |
| 1637 | 806542213899489280 | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | 0.938617 | True | 0.036739 | True | 3.971490e-03 | True | vizsla |
| 1639 | 807010152071229440 | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | 0.610807 | True | 0.213642 | True | 3.188660e-02 | True | golden_retriever |
| 1641 | 807106840509214720 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | 0.505370 | True | 0.120358 | True | 7.700810e-02 | True | Chihuahua |
| 1642 | 807621403335917568 | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | 0.873233 | True | 0.033693 | True | 2.040840e-02 | True | golden_retriever |
| 1643 | 808001312164028416 | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | 0.730959 | True | 0.130726 | True | 2.885260e-02 | True | Labrador_retriever |
| 1644 | 808106460588765185 | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | 0.426183 | True | 0.257447 | True | 1.264820e-01 | True | golden_retriever |
| 1645 | 808134635716833280 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | 0.740220 | True | 0.061604 | True | 4.133140e-02 | True | cocker_spaniel |
| 1646 | 808501579447930884 | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | 0.454239 | True | 0.219323 | True | 9.319300e-02 | True | Airedale |
| 1648 | 808838249661788160 | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | 0.369530 | True | 0.194867 | True | 1.601040e-01 | True | Rottweiler |
| 1649 | 809084759137812480 | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | 0.911412 | True | 0.017134 | True | 1.176100e-02 | True | vizsla |
| 1650 | 809220051211603969 | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | 0.819511 | True | 0.141241 | True | 1.345520e-02 | True | Pomeranian |
| 1651 | 809448704142938112 | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | 0.375415 | True | 0.134317 | True | 7.369710e-02 | True | Greater_Swiss_Mountain_dog |
| 1652 | 809808892968534016 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | 0.861651 | True | 0.044462 | True | 1.649670e-02 | True | Labrador_retriever |
| 1653 | 809920764300447744 | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | 0.397163 | True | 0.274540 | True | 1.346670e-01 | True | Norwich_terrier |
| 1654 | 810254108431155201 | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | 0.292556 | True | 0.261233 | True | 6.237540e-02 | True | Staffordshire_bullterrier |
| 1655 | 810284430598270976 | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | 0.620768 | True | 0.158395 | True | 2.896170e-02 | True | malamute |
| 1656 | 810657578271330305 | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | 0.753521 | True | 0.166151 | True | 6.981080e-02 | True | malamute |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | 0.820804 | True | 0.082318 | True | 6.746050e-02 | True | flat-coated_retriever |
| 1658 | 810984652412424192 | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | 0.871342 | True | 0.036708 | True | 2.582320e-02 | True | golden_retriever |
| 1659 | 811386762094317568 | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | 0.804177 | True | 0.189890 | True | 1.964750e-03 | True | Pembroke |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | 0.396280 | True | 0.049562 | True | 4.634920e-02 | True | beagle |
| 1661 | 811744202451197953 | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | 0.386082 | True | 0.202862 | True | 1.704870e-01 | True | Pekinese |
| 1662 | 811985624773361665 | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | 0.610573 | True | 0.159935 | True | 5.867210e-02 | False | Staffordshire_bullterrier |
| 1663 | 812372279581671427 | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | 0.784873 | True | 0.087788 | True | 8.327470e-02 | True | golden_retriever |
| 1666 | 812709060537683968 | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | 0.326873 | True | 0.182610 | True | 1.569120e-01 | True | Irish_setter |
| 1667 | 812781120811126785 | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | 0.989316 | True | 0.007043 | True | 1.739610e-03 | True | bull_mastiff |
| 1668 | 813051746834595840 | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | 0.914804 | True | 0.083550 | True | 4.532240e-04 | True | golden_retriever |
| 1669 | 813066809284972545 | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | 0.776400 | True | 0.115034 | True | 4.887300e-02 | True | toy_terrier |
| 1670 | 813081950185472002 | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | 0.909951 | True | 0.042649 | True | 2.300410e-02 | True | Doberman |
| 1671 | 813096984823349248 | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | 0.128056 | True | 0.117003 | True | 8.696430e-02 | True | Great_Dane |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | 0.287369 | False | 0.140682 | True | 9.081890e-02 | True | dingo |
| 1673 | 813127251579564032 | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | 0.432416 | True | 0.374223 | True | 3.246260e-02 | True | Norwegian_elkhound |
| 1674 | 813142292504645637 | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | 0.848735 | True | 0.044602 | True | 1.861080e-02 | True | beagle |
| 1677 | 813187593374461952 | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | 0.888181 | True | 0.042312 | True | 9.701730e-03 | True | golden_retriever |
| 1678 | 813202720496779264 | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | 0.701852 | True | 0.120345 | True | 3.632020e-02 | True | cocker_spaniel |
| 1679 | 813217897535406080 | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | 0.905972 | True | 0.048038 | True | 3.566710e-02 | True | Samoyed |
| 1680 | 813800681631023104 | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | 0.501159 | True | 0.228792 | True | 2.003880e-01 | True | malamute |
| 1681 | 813812741911748608 | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | 0.709146 | True | 0.247621 | True | 1.885510e-02 | True | French_bulldog |
| 1682 | 813910438903693312 | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | 0.699355 | True | 0.256433 | True | 1.318880e-02 | True | Siberian_husky |
| 1683 | 813944609378369540 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | 0.427742 | True | 0.190503 | True | 1.464270e-01 | True | Labrador_retriever |
| 1684 | 814153002265309185 | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | 0.490068 | True | 0.291956 | True | 7.247470e-02 | True | golden_retriever |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | 0.626913 | True | 0.265582 | True | 4.161420e-02 | True | miniature_poodle |
| 1686 | 814638523311648768 | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | 0.650814 | True | 0.053281 | True | 3.543960e-02 | True | golden_retriever |
| 1687 | 814986499976527872 | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | 0.999828 | True | 0.000068 | True | 3.424360e-05 | True | dalmatian |
| 1689 | 815639385530101762 | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | 0.817953 | True | 0.140007 | True | 2.482090e-02 | True | German_shepherd |
| 1690 | 815736392542261248 | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | 0.548907 | True | 0.178523 | True | 1.463510e-01 | True | Border_collie |
| 1691 | 815966073409433600 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | 0.506312 | True | 0.295690 | True | 3.625070e-02 | True | Tibetan_mastiff |
| 1692 | 815990720817401858 | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | 0.428756 | True | 0.103912 | True | 8.895870e-02 | True | Chihuahua |
| 1693 | 816014286006976512 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | 0.677408 | True | 0.052724 | True | 4.857190e-02 | True | English_setter |
| 1694 | 816091915477250048 | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | 0.967345 | True | 0.007397 | True | 6.016500e-03 | True | Pomeranian |
| 1695 | 816336735214911488 | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | 0.919330 | True | 0.049480 | True | 1.193420e-02 | True | Labrador_retriever |
| 1697 | 816697700272001025 | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | 0.756992 | True | 0.052850 | True | 4.760780e-02 | True | Chihuahua |
| 1698 | 816816676327063552 | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | 0.668164 | True | 0.105033 | True | 7.787500e-02 | True | malamute |
| 1700 | 817056546584727552 | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | 0.864415 | True | 0.097456 | True | 8.525870e-03 | True | kelpie |
| 1701 | 817120970343411712 | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | 0.568809 | True | 0.229352 | True | 1.571300e-01 | True | Saluki |
| 1702 | 817171292965273600 | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | 0.295483 | True | 0.144431 | True | 7.787900e-02 | True | golden_retriever |
| 1703 | 817181837579653120 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | 0.506312 | True | 0.295690 | True | 3.625070e-02 | True | Tibetan_mastiff |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | 0.806163 | True | 0.097386 | True | 8.599280e-02 | True | Doberman |
| 1706 | 817536400337801217 | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | 0.971358 | True | 0.028518 | True | 8.596980e-05 | True | pug |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/81777... | 1 | 0.733256 | True | 0.214145 | True | 2.976900e-02 | True | curly-coated_retriever |
| 1708 | 817827839487737858 | https://pbs.twimg.com/ext_tw_video_thumb/81782... | 1 | 0.387608 | True | 0.264844 | True | 1.221230e-01 | True | cocker_spaniel |
| 1709 | 818145370475810820 | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | 0.621931 | True | 0.364997 | True | 3.971480e-03 | True | golden_retriever |
| 1710 | 818259473185828864 | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | 0.367368 | True | 0.112479 | True | 9.543400e-02 | True | miniature_schnauzer |
| 1712 | 818588835076603904 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | 0.372202 | True | 0.137187 | True | 7.143620e-02 | True | Norwegian_elkhound |
| 1713 | 818614493328580609 | https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg | 4 | 0.450722 | True | 0.204177 | True | 9.277400e-02 | True | Chihuahua |
| 1714 | 818627210458333184 | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | 0.384188 | True | 0.255917 | True | 7.979950e-02 | False | Labrador_retriever |
| 1715 | 819004803107983360 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | 0.351308 | True | 0.271929 | True | 9.475920e-02 | True | standard_poodle |
| 1718 | 819015337530290176 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | 0.351308 | True | 0.271929 | True | 9.475920e-02 | True | standard_poodle |
| 1719 | 819227688460238848 | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | 0.482452 | True | 0.181082 | True | 6.525660e-02 | True | Border_terrier |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | 0.909106 | True | 0.044120 | True | 3.183490e-02 | True | Rottweiler |
| 1721 | 819588359383371776 | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | 0.547935 | True | 0.116442 | True | 1.016810e-01 | True | Cardigan |
| 1724 | 819952236453363712 | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | 0.925505 | True | 0.036221 | True | 2.041190e-02 | True | American_Staffordshire_terrier |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | 0.940724 | True | 0.042041 | True | 9.417430e-03 | True | Gordon_setter |
| 1727 | 820446719150292993 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | 0.938048 | True | 0.025119 | True | 2.297730e-02 | True | golden_retriever |
| 1728 | 820690176645140481 | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | 0.872064 | True | 0.059526 | True | 3.739960e-02 | True | West_Highland_white_terrier |
| 1729 | 820749716845686786 | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | 0.838012 | True | 0.056733 | True | 2.394360e-02 | True | golden_retriever |
| 1730 | 821044531881721856 | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | 0.148020 | True | 0.133534 | True | 1.209030e-01 | True | Old_English_sheepdog |
| 1731 | 821107785811234820 | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | 0.856590 | True | 0.038537 | True | 3.314580e-02 | True | Pomeranian |
| 1732 | 821149554670182400 | https://pbs.twimg.com/ext_tw_video_thumb/82114... | 1 | 0.515933 | True | 0.203651 | True | 9.105510e-02 | True | German_shepherd |
| 1733 | 821407182352777218 | https://pbs.twimg.com/ext_tw_video_thumb/82140... | 1 | 0.505496 | True | 0.168747 | True | 1.113110e-01 | True | Irish_setter |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | 0.763539 | True | 0.136602 | True | 8.765390e-02 | True | Doberman |
| 1735 | 821765923262631936 | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | 0.980071 | True | 0.008758 | True | 1.805950e-03 | True | golden_retriever |
| 1736 | 821813639212650496 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | 0.995143 | True | 0.003044 | True | 1.049550e-03 | True | Saint_Bernard |
| 1737 | 821886076407029760 | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | 0.266238 | True | 0.223325 | True | 1.516310e-01 | True | golden_retriever |
| 1738 | 822244816520155136 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | 0.585441 | True | 0.193654 | True | 7.164760e-02 | False | Samoyed |
| 1739 | 822462944365645825 | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | 0.960199 | True | 0.023056 | True | 8.944880e-03 | True | Pomeranian |
| 1740 | 822489057087389700 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | 0.416769 | True | 0.252706 | True | 1.570280e-01 | True | Samoyed |
| 1741 | 822610361945911296 | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | 0.664487 | True | 0.075089 | True | 5.964390e-02 | True | cocker_spaniel |
| 1742 | 822647212903690241 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | 0.416769 | True | 0.252706 | True | 1.570280e-01 | True | Samoyed |
| 1743 | 822859134160621569 | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | 0.332897 | True | 0.104116 | True | 4.774500e-02 | True | malinois |
| 1744 | 822872901745569793 | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | 0.196015 | True | 0.160329 | True | 6.912620e-02 | True | Lakeland_terrier |
| 1746 | 823269594223824897 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | 0.585441 | True | 0.193654 | True | 7.164760e-02 | False | Samoyed |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | 0.280949 | False | 0.194044 | True | 1.200510e-01 | True | dingo |
| 1749 | 823699002998870016 | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | 0.203999 | True | 0.171893 | False | 1.075430e-01 | True | cairn |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | 0.234076 | True | 0.193093 | True | 9.519660e-02 | True | schipperke |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | 0.588230 | False | 0.028910 | False | 2.225070e-02 | False | teddy |
| 1752 | 824325613288833024 | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | 0.990793 | True | 0.008919 | True | 2.622640e-04 | True | Pembroke |
| 1753 | 824663926340194305 | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | 0.526488 | True | 0.402815 | True | 3.441780e-02 | True | English_setter |
| 1754 | 824775126675836928 | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | 0.610499 | True | 0.090291 | True | 6.862470e-02 | True | Border_terrier |
| 1756 | 825026590719483904 | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | 0.524454 | True | 0.467678 | True | 4.975840e-03 | True | Eskimo_dog |
| 1757 | 825147591692263424 | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | 0.354823 | True | 0.245390 | True | 1.365450e-01 | True | Pekinese |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | 0.681495 | True | 0.147940 | True | 2.452520e-02 | True | Rottweiler |
| 1759 | 825829644528148480 | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | 0.853407 | True | 0.053531 | True | 4.582990e-02 | True | Great_Pyrenees |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | 0.782058 | True | 0.156581 | True | 7.275120e-03 | True | Labrador_retriever |
| 1763 | 826240494070030336 | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | 0.903048 | True | 0.096242 | True | 2.343640e-04 | True | French_bulldog |
| 1764 | 826476773533745153 | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | 0.741860 | True | 0.122812 | True | 1.004600e-01 | True | German_shepherd |
| 1765 | 826598365270007810 | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | 0.628119 | True | 0.117397 | False | 8.276490e-02 | False | French_bulldog |
| 1766 | 826848821049180160 | https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg | 4 | 0.858764 | True | 0.023526 | True | 1.710390e-02 | True | Great_Pyrenees |
| 1767 | 826958653328592898 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | 0.617389 | True | 0.337053 | True | 8.554420e-03 | False | golden_retriever |
| 1768 | 827199976799354881 | https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg | 4 | 0.869681 | True | 0.026658 | True | 1.986610e-02 | True | Great_Dane |
| 1769 | 827324948884643840 | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | 0.352486 | True | 0.178884 | True | 8.416440e-02 | True | golden_retriever |
| 1770 | 827600520311402496 | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | 0.325638 | True | 0.317235 | True | 1.160870e-01 | True | Pembroke |
| 1771 | 827653905312006145 | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | 0.285555 | True | 0.217306 | True | 1.432450e-01 | True | collie |
| 1772 | 827933404142436356 | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | 0.806115 | True | 0.104831 | True | 3.814820e-02 | True | German_shepherd |
| 1773 | 828011680017821696 | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | 0.936662 | True | 0.032999 | True | 1.718340e-02 | True | American_Staffordshire_terrier |
| 1775 | 828372645993398273 | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | 0.663047 | True | 0.207779 | True | 4.094880e-02 | True | malamute |
| 1776 | 828376505180889089 | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | 0.523086 | True | 0.186168 | True | 4.208940e-02 | True | American_Staffordshire_terrier |
| 1777 | 828381636999917570 | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | 0.392535 | True | 0.089022 | True | 8.179980e-02 | True | Bedlington_terrier |
| 1778 | 828408677031882754 | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | 0.133033 | True | 0.092227 | True | 6.509450e-02 | True | Weimaraner |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | 0.908457 | False | 0.018040 | True | 1.266710e-02 | True | teddy |
| 1780 | 828650029636317184 | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | 0.649209 | True | 0.198560 | True | 5.619990e-02 | True | golden_retriever |
| 1783 | 829011960981237760 | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | 0.312221 | True | 0.244040 | True | 1.302730e-01 | False | boxer |
| 1784 | 829141528400556032 | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | 0.573140 | True | 0.111159 | True | 9.412690e-02 | False | golden_retriever |
| 1785 | 829374341691346946 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | 0.757547 | True | 0.149950 | True | 4.752270e-02 | True | Staffordshire_bullterrier |
| 1786 | 829449946868879360 | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | 0.315163 | True | 0.153210 | True | 1.327910e-01 | True | Labrador_retriever |
| 1787 | 829501995190984704 | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | 0.950851 | True | 0.015200 | True | 1.109360e-02 | True | French_bulldog |
| 1788 | 829861396166877184 | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | 0.394486 | True | 0.376574 | True | 3.129160e-02 | True | Border_terrier |
| 1789 | 829878982036299777 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | 0.617389 | True | 0.337053 | True | 8.554420e-03 | False | golden_retriever |
| 1790 | 830097400375152640 | https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg | 4 | 0.442713 | True | 0.142073 | True | 1.257450e-01 | True | toy_poodle |
| 1791 | 830583320585068544 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | 0.908703 | True | 0.057091 | False | 1.193350e-02 | True | Labrador_retriever |
| 1792 | 830956169170665475 | https://pbs.twimg.com/ext_tw_video_thumb/83095... | 1 | 0.451516 | True | 0.317196 | True | 1.327590e-01 | True | kuvasz |
| 1793 | 831262627380748289 | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | 0.263323 | True | 0.200550 | True | 1.934140e-01 | False | cocker_spaniel |
| 1794 | 831309418084069378 | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | 0.369389 | True | 0.132449 | True | 7.472730e-02 | True | Doberman |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | 0.982755 | True | 0.009084 | True | 4.692800e-03 | True | briard |
| 1796 | 831322785565769729 | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | 0.999715 | True | 0.000046 | True | 4.118430e-05 | False | Old_English_sheepdog |
| 1797 | 831552930092285952 | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | 0.257415 | True | 0.161442 | True | 9.214290e-02 | True | Chihuahua |
| 1798 | 831650051525054464 | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | 0.530416 | True | 0.180335 | True | 1.043140e-01 | True | Eskimo_dog |
| 1799 | 831670449226514432 | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | 0.624802 | True | 0.362861 | True | 3.926210e-03 | True | Pembroke |
| 1800 | 831911600680497154 | https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg | 4 | 0.777562 | True | 0.047418 | True | 1.794310e-02 | True | bloodhound |
| 1801 | 831939777352105988 | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | 0.153862 | True | 0.091234 | False | 9.064410e-02 | False | Pomeranian |
| 1802 | 832032802820481025 | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | 0.601712 | True | 0.152662 | True | 1.350550e-01 | True | whippet |
| 1803 | 832040443403784192 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | 0.796313 | True | 0.155413 | True | 3.094330e-02 | True | miniature_pinscher |
| 1804 | 832215726631055365 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | 0.274637 | True | 0.142204 | True | 1.096770e-01 | False | Afghan_hound |
| 1805 | 832273440279240704 | https://pbs.twimg.com/ext_tw_video_thumb/83227... | 1 | 0.134081 | True | 0.051928 | False | 4.431090e-02 | True | Pembroke |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | 0.504690 | True | 0.105208 | True | 5.433850e-02 | True | kelpie |
| 1807 | 832397543355072512 | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | 0.988916 | True | 0.001677 | True | 1.125890e-03 | False | Pekinese |
| 1808 | 832636094638288896 | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | 0.525032 | True | 0.252238 | True | 2.168390e-01 | True | Eskimo_dog |
| 1809 | 832757312314028032 | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | 0.160888 | True | 0.159441 | True | 1.543680e-01 | True | Cardigan |
| 1811 | 832998151111966721 | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | 0.539036 | True | 0.317617 | True | 9.392850e-02 | True | boxer |
| 1812 | 833124694597443584 | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | 0.710523 | True | 0.106102 | True | 5.547550e-02 | False | Cardigan |
| 1813 | 833479644947025920 | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | 0.727039 | True | 0.071140 | True | 4.869420e-02 | True | golden_retriever |
| 1814 | 833722901757046785 | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | 0.918144 | True | 0.025721 | True | 2.021110e-02 | True | West_Highland_white_terrier |
| 1815 | 833826103416520705 | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | 0.438054 | True | 0.149706 | True | 9.648050e-02 | True | Chihuahua |
| 1816 | 833863086058651648 | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | 0.494969 | True | 0.312632 | True | 1.417360e-01 | True | kuvasz |
| 1819 | 834209720923721728 | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | 0.754799 | True | 0.197861 | True | 8.654040e-03 | True | golden_retriever |
| 1820 | 834458053273591808 | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | 0.468619 | True | 0.177531 | True | 1.065520e-01 | True | Rhodesian_ridgeback |
| 1822 | 834786237630337024 | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | 0.156276 | True | 0.125912 | True | 9.662390e-02 | True | Border_terrier |
| 1825 | 835172783151792128 | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | 0.663138 | True | 0.152494 | True | 3.547060e-02 | True | Border_collie |
| 1827 | 835297930240217089 | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | 0.341276 | True | 0.336220 | True | 4.544830e-02 | True | Rottweiler |
| 1828 | 835574547218894849 | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | 0.610655 | True | 0.132138 | False | 1.095440e-01 | True | Staffordshire_bullterrier |
| 1829 | 836001077879255040 | https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg | 4 | 0.963558 | True | 0.019848 | False | 5.904340e-03 | True | Samoyed |
| 1830 | 836260088725786625 | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | 0.564688 | True | 0.078267 | False | 5.791620e-02 | True | borzoi |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | 0.936882 | False | 0.020815 | False | 1.156350e-02 | True | mortarboard |
| 1836 | 837110210464448512 | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | 0.767696 | True | 0.217079 | True | 1.165680e-02 | True | Siberian_husky |
| 1837 | 837366284874571778 | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | 0.660085 | True | 0.334947 | True | 2.697160e-03 | True | American_Staffordshire_terrier |
| 1838 | 837471256429613056 | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | 0.976255 | True | 0.013990 | True | 2.110540e-03 | False | Norwegian_elkhound |
| 1840 | 837820167694528512 | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | 0.887625 | True | 0.068718 | True | 3.038680e-02 | True | golden_retriever |
| 1841 | 838083903487373313 | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | 0.800975 | True | 0.164133 | False | 1.798100e-02 | True | chow |
| 1842 | 838476387338051585 | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | 0.997692 | True | 0.001001 | True | 4.045560e-04 | True | Great_Pyrenees |
| 1843 | 838561493054533637 | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | 0.216562 | True | 0.139994 | False | 1.328200e-01 | True | kelpie |
| 1845 | 838921590096166913 | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | 0.664538 | True | 0.170451 | True | 8.782360e-02 | True | Border_terrier |
| 1846 | 839239871831150596 | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | 0.927021 | True | 0.050009 | True | 1.072780e-02 | True | Leonberg |
| 1849 | 839990271299457024 | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | 0.604938 | True | 0.311540 | True | 3.715910e-02 | True | Staffordshire_bullterrier |
| 1850 | 840268004936019968 | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | 0.863987 | True | 0.052632 | True | 3.257360e-02 | True | Chesapeake_Bay_retriever |
| 1852 | 840632337062862849 | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | 0.711148 | True | 0.157929 | True | 5.958190e-02 | True | golden_retriever |
| 1854 | 841077006473256960 | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | 0.962985 | True | 0.014820 | True | 9.557110e-03 | True | Brittany_spaniel |
| 1855 | 841314665196081154 | https://pbs.twimg.com/ext_tw_video_thumb/84131... | 1 | 0.903712 | True | 0.035215 | True | 2.656550e-02 | True | Afghan_hound |
| 1857 | 841680585030541313 | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | 0.547401 | True | 0.198361 | False | 5.849250e-02 | True | Chihuahua |
| 1859 | 842115215311396866 | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | 0.293493 | True | 0.181336 | True | 1.251520e-01 | True | chow |
| 1860 | 842163532590374912 | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | 0.891227 | True | 0.022811 | False | 1.285200e-02 | True | French_bulldog |
| 1861 | 842535590457499648 | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | 0.685084 | True | 0.314608 | True | 1.598240e-04 | True | Pembroke |
| 1863 | 842846295480000512 | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | 0.461076 | True | 0.154946 | True | 1.102490e-01 | True | Labrador_retriever |
| 1864 | 842892208864923648 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | 0.505370 | True | 0.120358 | True | 7.700810e-02 | True | Chihuahua |
| 1865 | 843235543001513987 | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | 0.958452 | True | 0.023770 | True | 5.269360e-03 | True | Pembroke |
| 1866 | 843604394117681152 | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | 0.430583 | True | 0.263581 | True | 1.793850e-01 | True | Labrador_retriever |
| 1867 | 843856843873095681 | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | 0.922540 | True | 0.074358 | True | 2.324950e-03 | True | Labrador_retriever |
| 1868 | 844223788422217728 | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | 0.719510 | True | 0.122019 | True | 3.882760e-02 | True | Labrador_retriever |
| 1870 | 844704788403113984 | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | 0.980213 | True | 0.007012 | True | 3.146970e-03 | True | Labrador_retriever |
| 1871 | 844973813909606400 | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | 0.742421 | True | 0.195218 | True | 1.732010e-02 | True | Labrador_retriever |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | 0.567475 | True | 0.169496 | True | 1.015180e-01 | True | Irish_water_spaniel |
| 1874 | 845397057150107648 | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | 0.394404 | True | 0.186537 | True | 1.819850e-01 | True | Dandie_Dinmont |
| 1875 | 845677943972139009 | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | 0.808681 | True | 0.123141 | True | 2.214320e-02 | True | chow |
| 1876 | 845812042753855489 | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | 0.979803 | True | 0.015923 | True | 1.302790e-03 | False | Samoyed |
| 1877 | 846042936437604353 | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | 0.961110 | True | 0.016695 | True | 9.081530e-03 | True | golden_retriever |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | 0.346468 | True | 0.218451 | True | 1.080200e-01 | True | giant_schnauzer |
| 1879 | 846514051647705089 | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | 0.650003 | True | 0.065199 | True | 5.295530e-02 | True | golden_retriever |
| 1880 | 846874817362120707 | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | 0.450539 | True | 0.187928 | True | 1.400680e-01 | True | Shetland_sheepdog |
| 1882 | 847157206088847362 | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | 0.219609 | True | 0.178671 | True | 1.232710e-01 | True | Staffordshire_bullterrier |
| 1883 | 847251039262605312 | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | 0.495380 | True | 0.316456 | True | 1.585330e-01 | True | Airedale |
| 1884 | 847606175596138505 | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | 0.413688 | True | 0.381836 | True | 6.586780e-02 | False | Cardigan |
| 1885 | 847842811428974592 | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | 0.951337 | True | 0.016849 | True | 1.084920e-02 | True | Bernese_mountain_dog |
| 1888 | 848212111729840128 | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | 0.333486 | True | 0.245797 | True | 1.316470e-01 | False | Bedlington_terrier |
| 1889 | 848324959059550208 | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | 0.544576 | True | 0.290268 | True | 1.544210e-01 | True | malamute |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | 0.823648 | True | 0.100571 | True | 3.830970e-02 | True | flat-coated_retriever |
| 1893 | 849412302885593088 | https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg | 4 | 0.907559 | True | 0.017934 | False | 1.619070e-02 | True | schipperke |
| 1894 | 849776966551130114 | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | 0.292092 | True | 0.136852 | True | 1.031110e-01 | False | Chihuahua |
| 1895 | 850019790995546112 | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | 0.759907 | True | 0.107405 | True | 5.233530e-02 | True | Shetland_sheepdog |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/85038... | 1 | 0.249012 | True | 0.166364 | True | 1.422540e-01 | True | Yorkshire_terrier |
| 1898 | 850753642995093505 | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | 0.996952 | True | 0.000996 | True | 8.833800e-04 | True | pug |
| 1901 | 851591660324737024 | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | 0.394507 | True | 0.077254 | True | 7.655880e-02 | True | Cardigan |
| 1903 | 851953902622658560 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | 0.757547 | True | 0.149950 | True | 4.752270e-02 | True | Staffordshire_bullterrier |
| 1907 | 852553447878664193 | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | 0.186498 | True | 0.139028 | True | 1.259400e-01 | True | bloodhound |
| 1908 | 852672615818899456 | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | 0.711235 | True | 0.068235 | True | 4.656170e-02 | True | golden_retriever |
| 1909 | 852912242202992640 | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | 0.783765 | True | 0.114147 | True | 4.643950e-02 | True | Great_Dane |
| 1911 | 853639147608842240 | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | 0.509879 | True | 0.237311 | True | 4.691620e-02 | True | German_shepherd |
| 1912 | 853760880890318849 | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | 0.292519 | True | 0.120946 | True | 1.194900e-01 | True | miniature_pinscher |
| 1913 | 854010172552949760 | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | 0.354733 | True | 0.177538 | True | 1.317060e-01 | True | English_springer |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | 0.854861 | True | 0.050792 | True | 2.176170e-02 | True | black-and-tan_coonhound |
| 1915 | 854365224396361728 | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | 0.907080 | True | 0.086272 | True | 1.413230e-03 | True | Pembroke |
| 1916 | 854482394044301312 | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | 0.260242 | True | 0.189158 | True | 1.441950e-01 | True | Chihuahua |
| 1917 | 854732716440526848 | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | 0.695548 | True | 0.058902 | True | 2.841060e-02 | True | Pembroke |
| 1918 | 855459453768019968 | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | 0.389513 | True | 0.188220 | True | 8.262820e-02 | True | Blenheim_spaniel |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | 0.321676 | True | 0.115138 | True | 9.609970e-02 | True | flat-coated_retriever |
| 1920 | 856282028240666624 | https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg | 4 | 0.876543 | True | 0.032962 | True | 2.077590e-02 | True | Chihuahua |
| 1921 | 856526610513747968 | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | 0.798481 | True | 0.060602 | True | 4.072190e-02 | True | Old_English_sheepdog |
| 1922 | 856543823941562368 | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | 0.306910 | True | 0.191218 | False | 1.892880e-01 | True | Boston_bull |
| 1923 | 857029823797047296 | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | 0.968623 | True | 0.010325 | True | 4.148420e-03 | True | golden_retriever |
| 1924 | 857263160327368704 | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | 0.998021 | True | 0.000922 | True | 3.112610e-04 | True | Samoyed |
| 1925 | 857393404942143489 | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | 0.841597 | True | 0.073644 | True | 7.212860e-02 | True | malamute |
| 1926 | 857746408056729600 | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | 0.919832 | True | 0.043513 | True | 2.335880e-02 | True | Labrador_retriever |
| 1927 | 857989990357356544 | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | 0.432580 | True | 0.325898 | True | 4.261790e-02 | True | French_bulldog |
| 1928 | 858107933456039936 | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | 0.863874 | True | 0.015920 | True | 1.061530e-02 | False | golden_retriever |
| 1929 | 858471635011153920 | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | 0.987407 | True | 0.008723 | True | 3.423730e-03 | True | Pembroke |
| 1930 | 858843525470990336 | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | 0.578120 | True | 0.286059 | True | 2.691730e-02 | True | golden_retriever |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/85919... | 1 | 0.224218 | False | 0.216163 | True | 1.283830e-01 | False | Angora |
| 1933 | 859607811541651456 | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | 0.895529 | True | 0.024099 | True | 1.928540e-02 | True | golden_retriever |
| 1934 | 859851578198683649 | https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg | 4 | 0.899086 | True | 0.047091 | True | 2.320630e-02 | True | Labrador_retriever |
| 1935 | 859924526012018688 | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | 0.254587 | True | 0.192558 | True | 1.002700e-01 | False | French_bulldog |
| 1938 | 860524505164394496 | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | 0.286558 | True | 0.235193 | True | 8.795070e-02 | True | Bedlington_terrier |
| 1939 | 860563773140209665 | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | 0.583936 | True | 0.055979 | True | 4.589570e-02 | True | Cardigan |
| 1941 | 861005113778896900 | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | 0.507951 | True | 0.136113 | True | 7.576420e-02 | False | German_shepherd |
| 1943 | 861383897657036800 | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | 0.771008 | True | 0.137174 | True | 6.330860e-02 | True | Cardigan |
| 1945 | 862096992088072192 | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | 0.677589 | True | 0.270648 | True | 3.810990e-02 | True | chow |
| 1947 | 862722525377298433 | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | 0.393330 | True | 0.242034 | True | 7.769250e-02 | True | basset |
| 1948 | 862831371563274240 | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | 0.207281 | True | 0.156296 | True | 1.235360e-01 | True | Australian_terrier |
| 1949 | 863062471531167744 | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | 0.935804 | True | 0.059576 | True | 1.412180e-03 | True | French_bulldog |
| 1950 | 863079547188785154 | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | 0.275242 | True | 0.190569 | True | 1.025950e-01 | False | Lakeland_terrier |
| 1951 | 863432100342583297 | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | 0.690517 | True | 0.103360 | True | 7.948940e-02 | True | Staffordshire_bullterrier |
| 1952 | 863553081350529029 | https://pbs.twimg.com/ext_tw_video_thumb/86355... | 1 | 0.413330 | True | 0.347646 | True | 1.495360e-01 | True | Eskimo_dog |
| 1954 | 864197398364647424 | https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg | 4 | 0.945905 | True | 0.021264 | True | 2.049280e-02 | True | golden_retriever |
| 1955 | 864279568663928832 | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | 0.668613 | True | 0.180562 | True | 5.223740e-02 | True | bull_mastiff |
| 1957 | 865006731092295680 | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | 0.989882 | True | 0.009906 | True | 1.349520e-04 | True | Pembroke |
| 1958 | 865359393868664832 | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | 0.832435 | True | 0.163551 | True | 2.770250e-03 | True | Chesapeake_Bay_retriever |
| 1959 | 865718153858494464 | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | 0.673664 | True | 0.157523 | True | 1.260730e-01 | True | golden_retriever |
| 1960 | 866334964761202691 | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | 0.984086 | True | 0.007919 | True | 3.328130e-03 | True | Samoyed |
| 1961 | 866450705531457537 | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | 0.905334 | True | 0.078060 | True | 1.770920e-03 | True | French_bulldog |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | 0.514730 | True | 0.306407 | True | 6.131410e-02 | True | flat-coated_retriever |
| 1963 | 867051520902168576 | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | 0.471403 | True | 0.302219 | True | 1.566060e-01 | True | Samoyed |
| 1964 | 867072653475098625 | https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg | 1 | 0.352946 | True | 0.211766 | True | 1.129520e-01 | True | Blenheim_spaniel |
| 1965 | 867421006826221569 | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | 0.616457 | True | 0.381330 | True | 1.670220e-03 | True | Eskimo_dog |
| 1966 | 867774946302451713 | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | 0.661953 | True | 0.175718 | True | 8.714240e-02 | True | Border_collie |
| 1967 | 867900495410671616 | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | 0.522644 | True | 0.332461 | True | 3.200810e-02 | True | Labrador_retriever |
| 1968 | 868552278524837888 | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | 0.378151 | True | 0.275935 | True | 9.499060e-02 | True | whippet |
| 1969 | 868622495443632128 | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | 0.868107 | True | 0.060973 | True | 3.348890e-02 | True | Labrador_retriever |
| 1971 | 869227993411051520 | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | 0.664181 | True | 0.169234 | True | 1.327000e-01 | True | Pembroke |
| 1972 | 869596645499047938 | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | 0.955156 | True | 0.008054 | True | 6.295630e-03 | False | Chihuahua |
| 1973 | 869702957897576449 | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | 0.993449 | True | 0.006325 | True | 1.775980e-04 | True | Pembroke |
| 1974 | 869772420881756160 | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | 0.980148 | True | 0.019271 | True | 1.362600e-04 | True | Pembroke |
| 1976 | 870308999962521604 | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | 0.622752 | True | 0.158463 | True | 1.481150e-01 | True | Greater_Swiss_Mountain_dog |
| 1977 | 870374049280663552 | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | 0.841001 | True | 0.099278 | True | 3.262130e-02 | True | golden_retriever |
| 1978 | 870656317836468226 | https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg | 4 | 0.945495 | True | 0.045875 | True | 4.329430e-03 | True | Pembroke |
| 1980 | 871032628920680449 | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | 0.398053 | True | 0.068955 | False | 5.060180e-02 | False | kelpie |
| 1981 | 871515927908634625 | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | 0.974781 | True | 0.020041 | True | 3.228240e-03 | False | komondor |
| 1982 | 871762521631449091 | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | 0.921393 | True | 0.064608 | True | 3.383370e-03 | True | Labrador_retriever |
| 1983 | 871879754684805121 | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | 0.969171 | True | 0.018261 | True | 8.515340e-03 | True | Shetland_sheepdog |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | 0.972019 | True | 0.008178 | True | 7.359270e-03 | True | Labrador_retriever |
| 1986 | 872486979161796608 | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | 0.931861 | True | 0.037721 | True | 1.196670e-02 | True | Pembroke |
| 1987 | 872620804844003328 | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | 0.513191 | True | 0.159088 | True | 1.495090e-01 | True | cocker_spaniel |
| 1988 | 872820683541237760 | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | 0.999120 | True | 0.000552 | True | 7.289040e-05 | True | pug |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | 0.476913 | True | 0.174145 | True | 9.286140e-02 | True | Labrador_retriever |
| 1990 | 873213775632977920 | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | 0.619782 | True | 0.338069 | True | 1.267630e-02 | True | vizsla |
| 1991 | 873580283840344065 | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | 0.678537 | True | 0.244022 | True | 4.852950e-02 | True | Newfoundland |
| 1993 | 874012996292530176 | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | 0.806674 | True | 0.116622 | True | 4.918190e-02 | True | Cardigan |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | 0.832177 | True | 0.040437 | True | 2.822830e-02 | True | flat-coated_retriever |
| 1995 | 874296783580663808 | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | 0.437216 | True | 0.277191 | True | 1.574020e-01 | True | cocker_spaniel |
| 1996 | 874680097055178752 | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | 0.836052 | True | 0.047069 | True | 3.600710e-02 | True | Labrador_retriever |
| 1997 | 875021211251597312 | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | 0.714319 | True | 0.091913 | True | 4.603820e-02 | True | West_Highland_white_terrier |
| 1998 | 875144289856114688 | https://pbs.twimg.com/ext_tw_video_thumb/87514... | 1 | 0.245048 | True | 0.223716 | True | 1.607530e-01 | False | Siberian_husky |
| 1999 | 875747767867523072 | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | 0.799551 | True | 0.179975 | True | 4.617600e-03 | True | Labrador_retriever |
| 2000 | 876120275196170240 | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | 0.534327 | True | 0.346312 | True | 9.493270e-02 | True | Bernese_mountain_dog |
| 2001 | 876484053909872640 | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | 0.874566 | True | 0.037354 | True | 1.672360e-02 | True | golden_retriever |
| 2002 | 876838120628539392 | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | 0.575751 | True | 0.240970 | True | 8.893480e-02 | True | bloodhound |
| 2003 | 877201837425926144 | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | 0.931120 | True | 0.068698 | True | 8.173790e-05 | True | Pembroke |
| 2004 | 877316821321428993 | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | 0.509967 | True | 0.090497 | True | 7.940580e-02 | True | Saluki |
| 2005 | 877556246731214848 | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | 0.995368 | True | 0.001936 | True | 4.679190e-04 | False | basset |
| 2006 | 877611172832227328 | https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg | 1 | 0.364729 | True | 0.202907 | True | 1.074730e-01 | True | Irish_setter |
| 2007 | 877736472329191424 | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | 0.837956 | True | 0.062034 | True | 4.059910e-02 | True | Chesapeake_Bay_retriever |
| 2008 | 878057613040115712 | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | 0.839097 | True | 0.078799 | True | 1.524340e-02 | True | French_bulldog |
| 2009 | 878281511006478336 | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | 0.320420 | True | 0.215975 | True | 1.285070e-01 | True | basset |
| 2010 | 878776093423087618 | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | 0.734684 | True | 0.150487 | True | 3.972460e-02 | True | Italian_greyhound |
| 2011 | 879008229531029506 | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | 0.960513 | True | 0.009431 | True | 8.711300e-03 | True | vizsla |
| 2014 | 879415818425184262 | https://pbs.twimg.com/ext_tw_video_thumb/87941... | 1 | 0.383404 | True | 0.134967 | True | 1.104810e-01 | True | English_springer |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | 0.479896 | True | 0.124353 | True | 7.332020e-02 | False | German_short-haired_pointer |
| 2016 | 879862464715927552 | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | 0.813507 | True | 0.146654 | True | 9.485020e-03 | True | basset |
| 2017 | 880095782870896641 | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | 0.120298 | True | 0.106395 | True | 1.060730e-01 | True | miniature_pinscher |
| 2018 | 880221127280381952 | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | 0.238525 | True | 0.104256 | False | 5.258030e-02 | True | Chihuahua |
| 2019 | 880465832366813184 | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | 0.913255 | True | 0.026329 | True | 9.370820e-03 | True | golden_retriever |
| 2020 | 880872448815771648 | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | 0.791416 | True | 0.061393 | True | 3.372570e-02 | True | Pembroke |
| 2023 | 881536004380872706 | https://pbs.twimg.com/ext_tw_video_thumb/88153... | 1 | 0.281463 | True | 0.272066 | False | 1.148540e-01 | False | Samoyed |
| 2024 | 881666595344535552 | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | 0.529012 | True | 0.250003 | True | 1.607390e-01 | True | Saluki |
| 2025 | 881906580714921986 | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | 0.291539 | True | 0.278966 | True | 1.270170e-01 | False | Weimaraner |
| 2027 | 882268110199369728 | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | 0.762211 | True | 0.098985 | True | 1.719950e-02 | True | golden_retriever |
| 2028 | 882627270321602560 | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | 0.542982 | True | 0.251988 | True | 1.076990e-01 | True | Pembroke |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | 0.850050 | True | 0.074257 | True | 1.557940e-02 | True | Labrador_retriever |
| 2030 | 882992080364220416 | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | 0.466778 | True | 0.406044 | True | 7.341440e-02 | False | Eskimo_dog |
| 2031 | 883117836046086144 | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | 0.949562 | True | 0.045948 | True | 2.470940e-03 | True | golden_retriever |
| 2032 | 883360690899218434 | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | 0.987997 | True | 0.007099 | True | 2.140330e-03 | True | chow |
| 2033 | 883482846933004288 | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | 0.943082 | True | 0.032409 | True | 5.500720e-03 | True | golden_retriever |
| 2034 | 883838122936631299 | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | 0.610946 | True | 0.299603 | True | 6.302030e-02 | True | Doberman |
| 2035 | 884162670584377345 | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | 0.707046 | True | 0.199396 | True | 4.914760e-02 | True | German_shepherd |
| 2036 | 884441805382717440 | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | 0.993225 | True | 0.003216 | True | 2.080890e-03 | True | Pembroke |
| 2037 | 884562892145688576 | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | 0.546406 | True | 0.404291 | True | 4.400190e-02 | True | pug |
| 2038 | 884876753390489601 | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | 0.822103 | True | 0.106075 | True | 3.734850e-02 | True | chow |
| 2039 | 884925521741709313 | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | 0.259916 | True | 0.198451 | True | 1.277250e-01 | True | Italian_greyhound |
| 2040 | 885167619883638784 | https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg | 4 | 0.812482 | True | 0.071712 | True | 5.576970e-02 | True | malamute |
| 2041 | 885311592912609280 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | 0.908703 | True | 0.057091 | False | 1.193350e-02 | True | Labrador_retriever |
| 2042 | 885528943205470208 | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | 0.369275 | True | 0.265835 | True | 1.346970e-01 | True | pug |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | 0.972494 | True | 0.006630 | True | 6.239150e-03 | True | Blenheim_spaniel |
| 2044 | 886258384151887873 | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | 0.943575 | True | 0.025286 | False | 2.848920e-03 | False | pug |
| 2045 | 886366144734445568 | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | 0.999201 | True | 0.000361 | True | 7.556160e-05 | True | French_bulldog |
| 2047 | 886736880519319552 | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | 0.309706 | True | 0.186136 | True | 8.634630e-02 | True | kuvasz |
| 2048 | 886983233522544640 | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | 0.793469 | True | 0.143528 | True | 3.225290e-02 | False | Chihuahua |
| 2049 | 887101392804085760 | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | 0.733942 | True | 0.035029 | True | 2.970470e-02 | True | Samoyed |
| 2050 | 887343217045368832 | https://pbs.twimg.com/ext_tw_video_thumb/88734... | 1 | 0.330741 | True | 0.275645 | False | 1.342030e-01 | True | Mexican_hairless |
| 2051 | 887473957103951883 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | 0.809197 | True | 0.054950 | True | 3.891480e-02 | True | Pembroke |
| 2053 | 887705289381826560 | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | 0.821664 | True | 0.087582 | True | 2.623640e-02 | True | basset |
| 2054 | 888078434458587136 | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | 0.995026 | True | 0.000932 | True | 9.032110e-04 | True | French_bulldog |
| 2055 | 888202515573088257 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | 0.809197 | True | 0.054950 | True | 3.891480e-02 | True | Pembroke |
| 2056 | 888554962724278272 | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | 0.700377 | True | 0.166511 | True | 1.114110e-01 | True | Siberian_husky |
| 2057 | 888804989199671297 | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | 0.469760 | True | 0.184172 | True | 7.348170e-02 | True | golden_retriever |
| 2058 | 888917238123831296 | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | 0.714719 | True | 0.120184 | True | 1.055060e-01 | True | golden_retriever |
| 2059 | 889278841981685760 | https://pbs.twimg.com/ext_tw_video_thumb/88927... | 1 | 0.626152 | True | 0.194742 | True | 2.735070e-02 | True | whippet |
| 2060 | 889531135344209921 | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | 0.953442 | True | 0.013834 | True | 7.957750e-03 | True | golden_retriever |
| 2061 | 889638837579907072 | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | 0.991650 | True | 0.002129 | True | 1.498180e-03 | True | French_bulldog |
| 2062 | 889665388333682689 | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | 0.966327 | True | 0.027356 | True | 4.633230e-03 | True | Pembroke |
| 2063 | 889880896479866881 | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | 0.377417 | True | 0.151317 | True | 8.298110e-02 | False | French_bulldog |
| 2064 | 890006608113172480 | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | 0.957979 | True | 0.013884 | True | 8.167480e-03 | True | Samoyed |
| 2065 | 890240255349198849 | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | 0.511319 | True | 0.451038 | True | 2.924820e-02 | True | Pembroke |
| 2066 | 890609185150312448 | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | 0.487574 | True | 0.193054 | True | 1.181840e-01 | True | Irish_terrier |
| 2067 | 890729181411237888 | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | 0.566142 | True | 0.178406 | True | 7.650690e-02 | True | Pomeranian |
| 2068 | 890971913173991426 | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | 0.341703 | True | 0.199287 | True | 1.935480e-01 | False | Appenzeller |
| 2069 | 891087950875897856 | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | 0.425595 | True | 0.116317 | True | 7.690220e-02 | False | Chesapeake_Bay_retriever |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | 0.555712 | True | 0.225770 | True | 1.752190e-01 | True | basset |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | 0.716012 | True | 0.078253 | True | 3.137890e-02 | True | Chihuahua |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | 0.323581 | True | 0.090647 | True | 6.895690e-02 | True | Chihuahua |
The spreadsheet clean up worked, as it can be seen above after using value counts for the dog breed column, there are no more values that are not dog breeds.
Upon observation the variables in the Name column are all lower case , and this can be used to filter them and delete them
#obtaining the frequency of the variables and sorting them
mask = clean_TA.name.str.contains('^[a-z]', regex = True)
clean_TA[mask].name.value_counts().sort_index()
a 55 actually 2 all 1 an 6 by 1 getting 2 his 1 incredibly 1 infuriating 1 just 3 life 1 light 1 mad 1 my 1 not 2 officially 1 old 1 one 4 quite 3 space 1 such 1 the 8 this 1 unacceptable 1 very 4 Name: name, dtype: int64
not_dogs = ['a','actually','all','an','by','getting','his','incredibly','infuriating','just','life','light','mad','my','not',
'officially','old','one','quite','space','such','the','this','unacceptable','very']
clean_TA = clean_TA[~clean_TA.isin(not_dogs)]
### TEST:
clean_TA.name
0 Phineas 1 Tilly 2 Archie 3 Darla 4 Franklin 5 None 6 Jax 7 None 8 Zoey 9 Cassie 10 Koda 11 Bruno 12 None 13 Ted 14 Stuart 15 Oliver 16 Jim 17 Zeke 18 Ralphus 20 Gerald 21 Jeffrey 22 NaN 23 Canela 24 None 25 None 26 Maya 27 Mingus 28 Derek 29 Roscoe 30 None 31 Waffles 33 Jimbo 34 Maisey 35 None 37 None 38 Earl 39 Lola 40 Kevin 41 None 42 None 43 Yogi 44 Noah 45 Bella 46 Grizzwald 47 None 48 Rusty 49 Gus 50 Stanley 51 Alfy 52 Koko 53 Rey 54 Gary 55 None 56 NaN 57 Elliot 58 Louis 59 None 60 Bella 61 Jesse 62 None 63 Romeo 64 None 65 Bailey 66 Duddles 67 Jack 69 Steven 70 Beau 71 Snoopy 72 None 75 Shadow 76 Emmy 77 Aja 79 Penny 80 Dante 81 Nelly 82 Ginger 83 None 84 Benedict 85 Venti 86 Goose 87 Nugget 88 None 89 None 90 Cash 92 Jed 93 None 94 Sebastian 96 None 98 Sierra 99 None 100 None 102 Monkey 103 None 104 Harry 105 Kody 106 Lassie 107 Rover 108 Napolean 110 None 111 Boomer 112 None 113 None 114 Cody 115 Zoey 116 Rumble 117 Clifford 119 Dewey 120 Stanley 121 Scout 122 Gizmo 123 Walter 125 None 126 Cooper 127 None 128 Harold 129 Shikha 131 None 133 None 134 Lili 135 Jamesy 136 Coco 138 Boomer 139 Sammy 140 Nelly 141 None 142 Meatball 143 Paisley 144 Albus 145 Neptune 147 Belle 148 None 149 None 150 Quinn 151 Zooey 152 Dave 153 Jersey 154 None 156 Hobbes 157 None 158 Burt 161 Lorenzo 162 Carl 163 Jordy 164 None 166 Milky 167 Trooper 168 None 169 NaN 170 None 172 None 173 Sophie 174 Wyatt 175 Rosie 176 Thor 177 None 178 Oscar 179 None 181 Zeke 183 Callie 184 None 186 None 187 Cermet 188 None 189 None 190 None 191 None 192 None 193 NaN 196 Marlee 197 Arya 198 Einstein 199 None 200 None 201 Alice 202 None 203 Rumpole 205 Benny 206 Aspen 207 Jarod 208 Wiggles 209 General 210 Sailor 213 None 214 Iggy 215 Snoop 216 Kyle 217 Leo 218 None 219 Riley 220 Boomer 221 None 223 Noosh 224 None 225 Kevin 226 None 227 Odin 228 None 229 Jerry 232 Georgie 233 Rontu 234 None 235 Cannon 236 Furzey 237 Daisy 238 None 239 Tuck 240 Barney 241 None 242 Vixen 243 None 244 Jarvis 245 None 246 None 248 Mimosa 249 Pickles 251 None 252 Brady 253 Luna 254 Charlie 255 Margo 256 None 257 Sadie 258 Hank 259 Tycho 261 Charlie 262 Indie 263 Winnie 264 George 265 Bentley 267 Penny 268 None 269 None 270 Max 271 Dawn 274 None 275 None 276 Maddie 277 None 278 Monty 279 Sojourner 280 Winston 282 Odie 283 None 284 Arlo 287 Walter 288 Stanley 290 None 291 None 292 Daisy 293 None 294 Waffles 295 Vincent 296 Lucy 297 Clark 299 Mookie 300 Meera 301 Oliver 304 Ava 305 Lucy 306 None 308 Eli 311 Ash 312 Lola 313 None 314 None 315 None 316 Tucker 317 Tobi 318 None 320 Chester 321 Wilson 322 Sunshine 323 None 324 Lipton 325 Bentley 326 Charlie 328 Bronte 329 Poppy 330 Gidget 331 Rhino 333 Willow 334 None 335 NaN 336 Orion 337 Eevee 338 Charlie 339 Smiley 342 None 344 Miguel 345 Emanuel 346 None 347 Kuyu 348 Daisy 349 None 350 Dutch 351 Pete 352 None 353 Scooter 354 Tucker 355 Reggie 356 Lilly 358 Samson 360 Mia 361 Leo 362 None 363 Astrid 364 Malcolm 365 Dexter 367 Alfie 368 Fiona 369 NaN 370 Mutt 371 Bear 372 Doobert 373 Beebop 374 Alexander 375 None 376 Sailer 377 Brutus 378 Kona 379 Boots 380 Tucker 381 Ralphie 383 Charlie 384 Loki 385 Cupid 387 None 388 Pawnd 389 Pilot 390 None 391 None 392 Ike 393 Mo 394 Toby 395 None 396 Sweet 398 Pablo 400 Scooter 401 Wilson 402 None 403 Nala 404 None 405 Cash 407 Winston 408 Crawford 409 None 410 Wyatt 412 Albus 413 None 414 Hobbes 416 None 417 Paisley 418 Gabe 419 None 421 Jimison 423 Duchess 424 Harlso 426 Sundance 427 None 428 Luca 429 None 430 Flash 432 Sunny 433 None 436 None 437 None 439 Oliver 440 None 441 Howie 442 Jazzy 443 Anna 444 None 445 Finn 448 Sunny 449 Bo 451 Wafer 452 Bear 454 Tom 456 Florence 457 Autumn 458 None 459 Buddy 460 Dido 461 Eugene 463 Ken 464 Strudel 466 Tebow 467 None 468 Chloe 470 Timber 471 Binky 472 Moose 473 Dudley 474 Comet 477 Jack 478 None 480 Akumi 481 Titan 482 None 483 Cooper 484 Olivia 486 Alf 487 Oshie 489 Chubbs 490 Gary 491 Sky 492 Atlas 493 None 494 None 495 Eleanor 496 Layla 497 None 498 None 499 None 500 Toby 501 Rocky 502 Baron 503 Tyr 504 Bauer 505 Swagger 507 Brandi 508 None 509 Mary 510 Moe 511 Ted 512 Halo 513 None 514 Augie 515 Craig 516 Sam 517 Hunter 518 Pavlov 519 Phil 520 Gus 521 None 523 None 524 Kyro 525 Wallace 526 Ito 527 None 528 Koda 529 Seamus 531 None 532 Cooper 533 Ollie 534 Stephan 536 Lennon 537 None 539 None 540 Waffles 542 NaN 544 Major 545 Duke 547 Zeke 548 Sansa 549 Shooter 550 Django 551 None 553 Bo 554 Diogi 556 None 557 Sonny 559 Winston 560 Marley 562 Bailey 563 Winnie 564 Severus 565 None 567 Loki 569 Ronnie 570 None 571 Wallace 572 None 573 Milo 575 Bones 576 None 578 Mauve 579 Chef 580 None 582 Doc 584 Peaches 585 None 587 Sobe 588 Longfellow 590 Jeffrey 591 Mister 592 Iroh 593 Shadow 607 Cooper 608 None 609 Cassie 610 Pancake 611 None 613 Tyr 614 Romeo 616 None 617 Snicku 619 Ruby 620 None 621 None 622 Yogi 623 Daisy 624 None 625 Brody 626 Bailey 628 Mack 630 Nimbus 631 Laika 632 Maximus 633 Clark 635 Dobby 636 Fiona 637 Moreton 638 Dave 639 None 640 Tucker 641 Juno 642 Maude 643 Lily 644 Newt 645 Benji 646 Nida 647 None 648 Robin 649 NaN 650 Bailey 651 Monster 652 BeBe 653 Remus 657 None 658 None 659 Levi 660 Mabel 662 Misty 663 Betty 665 Mosby 666 Duke 667 Maggie 668 Bruce 670 Happy 672 Ralphy 673 Eli 674 Brownie 675 Rizzy 676 None 678 Stella 679 Bo 680 Lucy 681 Butter 683 Dexter 684 None 685 Leo 687 None 688 Frank 689 Tonks 690 Moose 691 Lincoln 693 Rory 695 Logan 696 None 697 Dale 698 Rizzo 699 Arnie 700 Mattie 701 None 703 Lucy 704 Rusty 705 Pinot 706 Dallas 707 None 708 Doc 709 Hero 710 Rusty 711 Frankie 712 Stormy 713 Reginald 714 Balto 715 Riley 716 Mairi 717 Loomis 718 Finn 719 Godi 721 Dave 722 Earl 723 Cali 724 Deacon 725 Penny 726 Timmy 727 Sampson 729 Chipson 730 None 731 Combo 732 None 733 None 734 Oakley 735 None 736 None 737 Dash 738 Koda 739 Hercules 740 None 743 Bear 744 None 746 None 747 Scout 748 None 750 Reggie 751 None 752 Jay 754 None 755 Mya 756 Strider 757 Penny 758 None 760 Nala 761 Stanley 762 None 763 Sophie 765 Wesley 766 None 768 Derek 769 Jeffrey 771 Solomon 772 Huck 774 None 775 O 776 Sampson 777 None 779 Blue 780 Anakin 781 None 782 Finley 783 Maximus 785 Tucker 786 Finley 787 Sprinkles 788 None 789 Winnie 790 Heinrich 791 Loki 792 Shakespeare 793 Chelsea 795 Bungalo 796 Chip 797 Grey 798 None 799 Roosevelt 801 NaN 802 Willem 803 None 804 Jack 805 Finn 806 Penny 807 None 808 Davey 809 Dakota 810 Fizz 812 Dixie 813 Charlie 814 None 816 Winston 817 Sebastian 819 NaN 820 Al 821 Jackson 823 Carbon 824 Klein 825 Titan 827 DonDon 828 Kirby 830 Jesse 831 Lou 832 Oakley 834 Chevy 835 Gerald 836 Tito 837 Philbert 838 Louie 839 None 840 Rupert 842 Rufus 843 None 844 Brudge 845 Shadoe 846 Oscar 848 Juno 849 Angel 850 Brat 851 Tove 852 NaN 853 Louie 854 Gromit 855 Aubie 856 Kota 857 None 858 Alfie 859 Clark 861 Belle 862 Leela 863 Glenn 864 Buddy 865 Scout 866 None 867 Shelby 869 None 870 None 871 Sephie 873 Bruce 874 Bonaparte 875 Albert 876 Bo 877 Wishes 878 Rose 879 Theo 880 Atlas 881 None 882 Rocco 883 Fido 884 Sadie 886 None 887 None 888 Kirby 889 Maggie 891 Emma 892 Oakley 893 None 894 Luna 896 Toby 897 Spencer 898 Lilli 899 None 900 Boston 901 Brandonald 902 None 903 Odie 904 Corey 905 None 906 None 907 Leonard 909 Beckham 910 Cooper 912 None 913 None 914 None 915 Devón 916 Oliver 917 Jax 918 Gert 919 None 920 None 921 None 922 None 923 None 924 NaN 925 Watson 927 Winnie 928 Keith 929 Milo 930 Dex 931 None 932 Charlie 933 None 934 None 935 Scout 936 Hank 938 Ace 939 None 940 Tayzie 941 Carl 942 Grizzie 944 None 945 None 946 None 947 None 948 None 950 Brody 951 Lola 952 Ruby 953 Tucker 954 Fred 955 Toby 956 None 957 Max 958 None 959 Gilbert 960 None 961 Cooper 962 Milo 963 Meyer 964 Malcolm 965 Arnie 966 Zoe 967 None 968 None 969 Stewie 970 Calvin 971 Lilah 972 Spanky 973 None 974 Jameson 975 Beau 976 Jax 977 Piper 978 Bo 979 Atticus 980 Lucy 981 Finn 982 None 983 George 984 Blu 985 Boomer 986 Winston 987 Dietrich 988 NaN 989 Divine 990 None 991 Tripp 992 NaN 993 NaN 994 Cora 995 None 996 None 997 Duke 998 None 999 None 1000 None 1001 None 1002 NaN 1003 Huxley 1004 NaN 1005 None 1006 Keurig 1007 Bookstore 1008 None 1009 None 1010 None 1011 Linus 1013 Atticus 1014 Clark 1015 None 1016 None 1017 NaN 1018 None 1019 None 1020 Maddie 1021 Abby 1022 None 1024 Shiloh 1025 NaN 1026 Gustav 1027 Arlen 1028 Gus 1029 Percy 1030 Lenox 1031 NaN 1032 Sugar 1033 Jeffrey 1034 Oliver 1035 Abby 1036 Indie 1037 Harvey 1038 Blanket 1039 None 1040 NaN 1041 Geno 1042 None 1044 Stark 1045 Harold 1046 Bentley 1047 Beya 1048 Kilo 1049 NaN 1050 Kayla 1051 None 1052 Maxaroni 1053 None 1054 Bell 1055 Phil 1056 Doug 1057 Edmund 1058 None 1059 Aqua 1060 Tucker 1061 Theodore 1062 Ted 1063 NaN 1064 Leo 1065 None 1066 Chip 1067 Baloo 1068 None 1069 None 1070 Chase 1071 NaN 1072 Nollie 1073 Rorie 1074 Simba 1075 None 1076 Benji 1077 None 1078 Kyle 1079 None 1080 None 1081 Charles 1082 None 1083 Bayley 1084 None 1085 None 1086 Axel 1087 Storkson 1088 Remy 1089 Bella 1090 None 1091 None 1092 Lily 1093 None 1094 Chadrick 1095 NaN 1096 Rory 1097 NaN 1098 None 1099 Maxaroni 1100 None 1101 Dakota 1102 None 1103 Kellogg 1104 Buckley 1105 Jax 1106 None 1107 Livvie 1108 None 1109 Terry 1110 Moose 1111 None 1112 Hermione 1113 None 1114 Ralpher 1115 Aldrick 1116 None 1117 Kyle 1118 Larry 1119 Solomon 1120 NaN 1121 NaN 1122 Rooney 1123 Crystal 1124 Ziva 1125 Charles 1126 Ollie 1127 None 1128 Stefan 1129 Pupcasso 1130 None 1131 Puff 1132 None 1133 Flurpson 1134 Coleman 1135 Wallace 1136 Enchilada 1137 Raymond 1138 NaN 1139 Rueben 1140 Cilantro 1141 None 1142 None 1143 None 1144 None 1145 Karll 1146 None 1147 Sprout 1148 Blitz 1149 Bloop 1150 None 1151 Colby 1152 Lillie 1153 Lola 1154 None 1155 Fred 1156 None 1157 Ashleigh 1158 Kreggory 1159 Sarge 1160 Luther 1161 Sugar 1162 Reginald 1163 Ivar 1164 Jangle 1165 None 1166 Schnitzel 1167 Panda 1168 Oliver 1169 Archie 1170 Berkeley 1171 None 1172 Ralphé 1173 Derek 1174 Charleson 1175 Neptune 1176 None 1177 Clyde 1178 Harnold 1179 Sid 1180 Lucy 1181 Pippa 1182 Sadie 1183 Otis 1184 None 1185 Carper 1186 None 1187 Bowie 1188 None 1189 Alexanderson 1190 Suki 1191 Barclay 1192 None 1193 NaN 1194 Skittle 1195 Ebby 1196 Flávio 1197 Smokey 1198 Link 1199 Jennifur 1200 None 1201 Ozzy 1202 Bluebert 1203 Stephanus 1204 None 1205 Bubbles 1206 NaN 1207 NaN 1208 Bentley 1209 Toby 1210 Zeus 1211 Bertson 1212 Oscar 1213 Nico 1214 Michelangelope 1215 Siba 1216 Calbert 1217 None 1218 Curtis 1219 Benedict 1220 None 1221 Blitz 1222 Travis 1223 Thumas 1224 None 1225 None 1226 Kanu 1227 Doug 1228 None 1229 Piper 1230 None 1231 Lance 1232 Opie 1233 Stubert 1234 None 1235 Sunny 1236 Kane 1237 None 1238 None 1239 Steven 1240 Olive 1241 Chester 1243 Winston 1244 Roosevelt 1245 None 1246 None 1247 Gary 1248 None 1249 None 1250 Chuckles 1251 Milo 1252 Staniel 1253 Sora 1254 None 1255 None 1256 Beemo 1257 Oshie 1258 Gunner 1259 NaN 1260 None 1261 Lacy 1262 Tater 1263 None 1264 Watson 1265 None 1266 None 1267 Olaf 1268 Cecil 1269 Vince 1270 Karma 1271 Billy 1272 Walker 1273 Penny 1274 None 1275 Sammy 1276 Rodney 1277 Klevin 1278 Lucy 1279 None 1280 Malikai 1281 Mister 1282 Coco 1283 Smokey 1284 Bear 1285 Bobble 1286 None 1287 Oliver 1288 River 1289 Jebberson 1290 None 1291 Cooper 1292 Remington 1293 None 1294 Farfle 1295 None 1296 Rufus 1297 Sadie 1298 None 1299 None 1300 Jiminus 1301 None 1302 Harper 1303 Keurig 1304 None 1305 Clarkus 1306 None 1307 Finnegus 1308 Cassie 1309 Cupcake 1310 Kathmandu 1311 Tucker 1312 Ellie 1313 None 1314 Elliot 1315 Katie 1316 Shadow 1317 None 1318 Oliver 1319 None 1320 Koda 1321 None 1322 None 1323 Kara 1324 None 1325 Dexter 1326 Layla 1327 Adele 1328 Lucy 1329 Max 1330 None 1331 None 1332 Zara 1333 Cooper 1334 Ambrose 1335 Jimothy 1336 Bode 1337 Terrenth 1338 Reese 1339 None 1340 NaN 1341 None 1342 Chesterson 1343 None 1344 None 1345 None 1346 Lucia 1347 Bisquick 1348 Ralphson 1349 None 1350 Stanley 1351 NaN 1352 None 1353 None 1354 Bella 1355 Scooter 1356 None 1357 None 1358 Charlie 1359 Socks 1360 None 1361 NaN 1362 NaN 1363 Chip 1364 Luna 1365 Lucy 1366 Rambo 1367 Sansa 1368 NaN 1369 Rudy 1370 None 1371 None 1372 None 1373 Fiji 1374 Rilo 1375 Bilbo 1376 None 1377 Coopson 1378 Yoda 1379 Millie 1380 None 1381 Chet 1382 NaN 1383 Crouton 1384 Daniel 1385 NaN 1386 Vincent 1387 Kaia 1388 Murphy 1389 Dotsy 1390 None 1391 None 1392 Eazy 1393 Coops 1394 Thumas 1395 Cooper 1396 Nala 1397 None 1398 Fillup 1399 Dave 1400 Archie 1401 None 1402 None 1403 Miley 1404 Calbert 1405 None 1406 Charl 1407 Reagan 1408 None 1409 Yukon 1410 None 1411 Oliver 1412 CeCe 1413 None 1414 Cuddles 1415 Rusty 1416 None 1417 Claude 1418 Jessiga 1419 Maximus 1420 Franklin 1421 Beau 1422 Lily 1423 None 1424 Doug 1425 Cassie 1426 Carter 1427 None 1428 None 1429 None 1430 Ole 1431 Pherb 1432 Blipson 1433 None 1434 Bentley 1435 NaN 1436 Charlie 1437 Oakley 1438 Rosie 1439 None 1440 None 1441 Misty 1442 Reptar 1443 Klevin 1444 Trevith 1445 None 1446 None 1447 None 1448 Berb 1449 None 1450 None 1451 Wyatt 1452 None 1453 Calvin 1454 None 1455 Bob 1456 Colin 1457 NaN 1458 Lorenzo 1459 None 1460 Brian 1461 None 1462 Archie 1463 Phil 1464 None 1465 Oliviér 1466 None 1467 Grady 1468 None 1469 Lola 1470 Chester 1471 None 1472 Kobe 1473 None 1474 None 1475 Freddery 1476 None 1477 None 1478 Phil 1479 None 1480 Lincoln 1481 Sadie 1482 Oscar 1483 None 1484 Bodie 1485 Dunkin 1486 None 1487 Milo 1488 None 1489 Wally 1490 None 1491 Tupawc 1492 None 1493 None 1494 Chester 1495 Amber 1496 Cody 1497 None 1498 Herschel 1499 NaN 1500 Edgar 1501 None 1502 Teddy 1503 Kingsley 1504 Brockly 1505 None 1506 None 1507 Richie 1508 None 1509 Leo 1510 Bailey 1511 None 1512 Molly 1513 None 1514 None 1515 None 1516 None 1517 None 1518 Buddy 1519 Peaches 1520 Vinscent 1521 Cedrick 1522 Hazel 1523 None 1524 Lolo 1525 Eriq 1526 Phred 1527 NaN 1528 Oddie 1529 Maxwell 1530 Geoff 1531 None 1532 None 1533 Covach 1534 None 1535 None 1536 Gizmo 1537 Durg 1538 Fynn 1539 Luca 1540 Ricky 1541 Lucy 1542 None 1543 None 1544 Carl 1545 None 1546 Chipson 1547 Herald 1548 Lucky 1549 Ferg 1550 None 1551 Trip 1552 None 1553 Clarence 1554 None 1555 Hamrick 1556 Brad 1557 None 1558 Pubert 1559 Frönq 1560 None 1561 Louis 1562 Derby 1563 Lizzie 1564 None 1565 Kilo 1566 None 1567 Louis 1568 None 1569 Trooper 1570 Ember 1571 Blakely 1572 Opal 1573 Marq 1574 None 1575 Curtis 1576 Kramer 1577 Barry 1578 Tyrone 1579 None 1580 Gordon 1581 Samson 1582 Baxter 1583 None 1584 None 1585 Jackson 1586 None 1587 None 1588 None 1589 Mona 1590 Olivia 1591 Horace 1592 None 1593 Crimson 1594 Birf 1595 None 1596 None 1597 Flávio 1598 None 1599 None 1600 None 1601 Hammond 1602 Lorelei 1603 NaN 1604 Olive 1605 None 1606 Marty 1607 Brooks 1608 Otis 1609 None 1610 None 1611 None 1612 Rocky 1613 None 1614 Petrick 1615 Hubertson 1616 Alfie 1617 Gerbald 1618 None 1619 Jerry 1620 Oreo 1621 Bruiser 1622 None 1623 Perry 1624 None 1625 None 1626 Theodore 1627 None 1628 None 1629 Bobby 1630 None 1631 Pippa 1632 Jeph 1633 Obi 1634 None 1635 None 1636 None 1637 Tino 1638 None 1639 Kulet 1640 Sweets 1641 None 1642 Lupe 1643 Sadie 1644 Tiger 1645 Jiminy 1646 None 1647 None 1648 Buddy 1649 Sebastian 1650 None 1651 Griffin 1652 Banjo 1653 None 1654 None 1655 Jack 1656 None 1657 Brandy 1658 Larry 1659 None 1660 None 1661 Lulu 1662 Darrel 1663 None 1664 None 1665 Taco 1666 None 1667 Joey 1668 None 1669 None 1670 Patrick 1671 Kreg 1672 Brody 1673 Todo 1674 Jax 1675 Samson 1676 None 1677 Tess 1678 None 1679 Ulysses 1680 None 1681 Jimothy 1682 Charlie 1683 Bo 1684 None 1685 Toffee 1686 None 1687 Apollo 1688 Carly 1689 None 1690 Asher 1691 Glacier 1692 Chuck 1693 NaN 1694 Sarge 1695 Panda 1696 Champ 1697 None 1698 Aspen 1699 None 1700 Ozzie 1701 Alice 1702 Sadie 1703 Griswold 1704 Cheesy 1705 Ellie 1706 None 1707 None 1708 Moofasa 1709 Brody 1710 Penny 1711 Percy 1712 None 1713 Hector 1714 None 1715 CeCe 1716 Toby 1717 None 1718 None 1719 Goliath 1720 Kawhi 1721 Reggie 1722 Ozzy 1723 None 1724 NaN 1725 Emmie 1726 Sammy 1727 Penelope 1728 Rocco 1729 None 1730 Bruce 1731 Willie 1732 None 1733 Rinna 1734 None 1735 Hunter 1736 Mike 1737 NaN 1738 None 1739 William 1740 Dwight 1741 Evy 1742 Hurley 1743 None 1744 Rubio 1745 None 1746 Louis 1747 NaN 1748 Chompsky 1749 None 1750 Rascal 1751 None 1752 Lola 1753 None 1754 Linda 1755 Tug 1756 Mia 1757 Wilson 1758 Dash 1759 Tango 1760 None 1761 None 1762 Grizz 1763 None 1764 Crystal 1765 Jerome 1766 None 1767 None 1768 Bella 1769 Crumpet 1770 None 1771 Rosie 1772 None 1773 Jessifer 1774 None 1775 Reese 1776 Izzy 1777 None 1778 None 1779 None 1780 Ralph 1781 Sadie 1782 None 1783 None 1784 None 1785 NaN 1786 Sandy 1787 None 1788 None 1789 None 1790 Axel 1791 None 1792 None 1793 Humphrey 1794 Derek 1795 Tassy 1796 Juckson 1797 NaN 1798 Chuq 1799 None 1800 Cooper 1801 None 1802 Tyrus 1803 Karl 1804 None 1805 None 1806 None 1807 None 1808 None 1809 Ash 1810 None 1811 None 1812 Penny 1813 None 1814 None 1815 NaN 1816 None 1817 Godzilla 1818 None 1819 None 1820 Bubbles 1821 Vinnie 1822 None 1823 None 1824 Griffin 1825 None 1826 None 1827 Duke 1828 None 1829 Winston 1830 Kenneth 1831 Herm 1832 None 1833 Bert 1834 None 1835 Striker 1836 None 1837 None 1838 None 1839 Donny 1840 None 1841 None 1842 None 1843 None 1844 None 1845 Pepper 1846 None 1847 None 1848 Bernie 1849 Buddah 1850 None 1851 Lenny 1852 None 1853 NaN 1854 NaN 1855 Ellie 1856 Sammy 1857 None 1858 None 1859 Reggie 1860 None 1861 None 1862 None 1863 None 1864 Daisy 1865 None 1866 None 1867 None 1868 Arnold 1869 None 1870 None 1871 None 1872 Coops 1873 None 1874 Steven 1875 Zuzu 1876 Oliver 1877 NaN 1878 NaN 1879 Moe 1880 Mollie 1881 Laela 1882 None 1883 None 1884 Tedders 1885 None 1886 None 1887 Maggie 1888 None 1889 Superpup 1890 None 1891 None 1892 None 1893 None 1894 Sophie 1895 None 1896 None 1897 Rufio 1898 Patrick 1899 Jeb 1900 Rodman 1901 None 1902 None 1903 None 1904 None 1905 None 1906 Louis 1907 None 1908 Bailey 1909 Ava 1910 Jonah 1911 Lenny 1912 Gary 1913 Chesney 1914 None 1915 Lennon 1916 NaN 1917 Kenny 1918 None 1919 Bob 1920 Henry 1921 Gus 1922 Bobbay 1923 NaN 1924 Mitch 1925 Earl 1926 Stanley 1927 Lucy 1928 None 1929 None 1930 Kaiya 1931 Daisy 1932 None 1933 Acro 1934 Aiden 1935 None 1936 NaN 1937 Obie 1938 None 1939 None 1940 None 1941 NaN 1942 None 1943 None 1944 Riley 1945 Raymond 1946 Dot 1947 None 1948 Pickles 1949 None 1950 Larry 1951 George 1952 Shnuggles 1953 Kendall 1954 Albert 1955 NaN 1956 Jeffri 1957 Sandy 1958 None 1959 None 1960 None 1961 Steve 1962 Koda 1963 None 1964 Bella 1965 Gerald 1966 None 1967 Django 1968 Frankie 1969 None 1970 Eve 1971 Mac 1972 None 1973 Dexter 1974 Fletcher 1975 Kenzie 1976 Pumpkin 1977 Schnozz 1978 None 1979 None 1980 Chuckles 1981 Chet 1982 Gustaf 1983 Terry 1984 Jimison 1985 Cheryl 1986 None 1987 Oscar 1988 Ed 1989 Jerry 1990 Leonidas 1991 None 1992 Norman 1993 Caryl 1994 NaN 1995 Scott 1996 Taz 1997 None 1998 Darby 1999 None 2000 Jackie 2001 NaN 2002 Jazz 2003 Buddy 2004 Franq 2005 Pippin 2006 None 2007 Kreg 2008 None 2009 Rolf 2010 None 2011 Snickers 2012 Ridley 2013 None 2014 Cal 2015 Opal 2016 Bradley 2017 Bubba 2018 None 2019 NaN 2020 Tuco 2021 Patch 2022 Gizmo 2023 Lola 2024 Mojo 2025 Batdog 2026 Brad 2027 Mia 2028 Dylan 2029 None 2030 NaN 2031 None 2032 Mark 2033 None 2034 NaN 2035 Oscar 2036 None 2037 NaN 2038 None 2039 Marley 2040 None 2041 JD 2042 Baxter 2043 Reginald 2044 None 2045 Jax 2046 Alejandro 2047 Scruffers 2048 Hammond 2049 Charlie 2050 Pip 2051 Julius 2052 Malcolm 2053 Penelope 2054 None 2055 Tanner 2056 None 2057 Lou 2058 Lola 2059 Sparky 2060 None 2061 Herm 2062 None 2063 Anthony 2064 Holly 2065 None 2066 NaN 2067 None 2068 None 2069 Clarence 2070 None 2071 Phred 2072 Toby 2073 None 2074 None 2075 Colby 2076 None 2077 Jett 2078 Amy 2079 None 2080 Remington 2081 None 2082 Sage 2083 Maggie 2084 Andy 2085 Mason 2086 None 2087 Trigger 2088 Antony 2089 None 2090 Creg 2091 None 2092 None 2093 Traviss 2094 None 2095 Vincent 2096 Gin 2097 Jerry 2098 Jeffrie 2099 None 2100 Danny 2101 Ester 2102 Pluto 2103 Bloo 2104 Phineas 2105 None 2106 Edd 2107 None 2108 None 2109 None 2110 Paull 2111 Koda 2112 None 2113 Hank 2114 Sam 2115 Willy 2116 NaN 2117 Herb 2118 Damon 2119 None 2120 Scooter 2121 Peanut 2122 Nigel 2123 Larry 2124 Daisy 2125 NaN 2126 Butters 2127 None 2128 NaN 2129 Sandra 2130 Wally 2131 None 2132 Fabio 2133 Winston 2134 Randall 2135 Liam 2136 Tommy 2137 Ben 2138 None 2139 None 2140 Raphael 2141 Zoey 2142 None 2143 Julio 2144 Andru 2145 None 2146 NaN 2147 Chester 2148 Clarence 2149 None 2150 Kloey 2151 Louie 2152 Shawwn 2153 NaN 2154 Penny 2155 None 2156 Skye 2157 None 2158 Linda 2159 Keith 2160 Kollin 2161 NaN 2162 Ronduh 2163 Billl 2164 Oliviér 2165 Chip 2166 None 2167 Saydee 2168 Dug 2169 Tessa 2170 Sully 2171 Kirk 2172 None 2173 Ralf 2174 Clarq 2175 Jaspers 2176 Samsom 2177 None 2178 None 2179 Tucker 2180 Terrance 2181 None 2182 Harrison 2183 Bernie 2184 None 2185 Ruby 2186 None 2187 Chaz 2188 Jeremy 2189 None 2190 Jaycob 2191 NaN 2192 Herald 2193 Lambeau 2194 Ruffles 2195 Amélie 2196 Bobb 2197 Banditt 2198 NaN 2199 Kevon 2200 Winifred 2201 None 2202 None 2203 Hanz 2204 NaN 2205 Churlie 2206 Zeek 2207 Timofy 2208 Maks 2209 Jomathan 2210 Kallie 2211 NaN 2212 NaN 2213 Marvin 2214 None 2215 None 2216 Spark 2217 Gòrdón 2218 NaN 2219 Jo 2220 None 2221 DayZ 2222 NaN 2223 None 2224 None 2225 Rusty 2226 Sophie 2227 None 2228 Jareld 2229 Bisquick 2230 Torque 2231 None 2232 None 2233 Ron 2234 Skittles 2235 NaN 2236 None 2237 None 2238 Alfie 2239 None 2240 Jiminy 2241 Otis 2242 None 2243 Cleopatricia 2244 Erik 2245 Stu 2246 Tedrick 2247 None 2248 Shaggy 2249 NaN 2250 None 2251 Filup 2252 None 2253 None 2254 None 2255 NaN 2256 Calvin 2257 Olive 2258 None 2261 None 2262 George 2263 Kial 2264 NaN 2265 Frank 2266 Naphaniel 2267 None 2268 Dook 2269 None 2270 Hall 2271 Philippe 2272 None 2273 NaN 2274 Reese 2275 Cupcake 2276 None 2277 None 2278 None 2279 Biden 2280 Fwed 2281 None 2282 Genevieve 2283 Joshwa 2284 None 2285 None 2286 Timison 2287 NaN 2288 None 2289 Clarence 2290 Kenneth 2291 Churlie 2292 Bradlay 2293 Pipsy 2294 None 2295 Gabe 2296 Clybe 2297 Dave 2298 None 2299 None 2300 Keet 2301 None 2302 Klevin 2303 Carll 2304 NaN 2305 None 2306 None 2307 None 2308 Jeph 2309 Jockson 2310 None 2311 NaN 2312 Josep 2313 Lugan 2314 NaN 2315 Christoper 2316 None 2317 Jimothy 2318 Kreggory 2319 Scout 2320 None 2321 None 2322 None 2323 None 2324 None 2325 Walter 2326 NaN 2327 NaN 2328 None 2329 None 2330 None 2331 None 2332 None 2333 NaN 2334 NaN 2335 NaN 2336 None 2337 None 2338 None 2339 None 2340 None 2341 None 2342 None 2343 None 2344 None 2345 NaN 2346 NaN 2347 NaN 2348 NaN 2349 NaN 2350 NaN 2351 None 2352 NaN 2353 NaN 2354 NaN 2355 None Name: name, dtype: object
clean_TA.name.value_counts()
#VALUE COUNTS TO SHOW ALL THE VARIABLES IN THE NAME COLUMN
None 680 Lucy 11 Charlie 11 Cooper 10 Oliver 10 Tucker 9 Penny 9 Winston 8 Lola 8 Sadie 8 Daisy 7 Toby 7 Stanley 6 Koda 6 Oscar 6 Jax 6 Bella 6 Bailey 6 Bo 6 Rusty 5 Chester 5 Scout 5 Buddy 5 Louis 5 Dave 5 Bentley 5 Leo 5 Milo 5 Clarence 4 Phil 4 Maggie 4 Jack 4 Oakley 4 Larry 4 Chip 4 Brody 4 Sophie 4 Winnie 4 George 4 Boomer 4 Duke 4 Clark 4 Sammy 4 Jerry 4 Finn 4 Reggie 4 Archie 4 Cassie 4 Bear 4 Jeffrey 4 Alfie 4 Gary 4 Derek 4 Gus 4 Dexter 4 Scooter 4 Sebastian 3 Walter 3 Waffles 3 Calvin 3 Malcolm 3 Vincent 3 Shadow 3 Maximus 3 Luna 3 Steven 3 Max 3 Ellie 3 Beau 3 Gerald 3 Louie 3 Ted 3 Carl 3 Loki 3 Ruby 3 Zeke 3 Olive 3 Wyatt 3 Hank 3 Jimothy 3 Gizmo 3 Zoey 3 Otis 3 Bruce 3 Moose 3 Riley 3 Klevin 3 Kyle 3 Nala 3 Wilson 3 Doug 3 Sunny 3 Wallace 3 Samson 3 Reginald 3 Mia 3 Reese 3 Lily 3 Earl 3 Rosie 3 Herm 2 Sandy 2 Misty 2 Kenneth 2 Juno 2 Benji 2 Atlas 2 Gabe 2 Jimison 2 Rocky 2 Tyr 2 Moe 2 Sam 2 Hunter 2 Oshie 2 Linda 2 Ollie 2 Lennon 2 Sansa 2 Marley 2 Luca 2 Olivia 2 Doc 2 Titan 2 Peaches 2 Lenny 2 Mister 2 Layla 2 Bernie 2 Phineas 2 Frank 2 Oliviér 2 Coops 2 Raymond 2 CeCe 2 Crystal 2 Terry 2 Bob 2 Axel 2 Colby 2 Charles 2 Wally 2 Theodore 2 Maxaroni 2 Kilo 2 Sugar 2 Blitz 2 Kreggory 2 Lincoln 2 Bubbles 2 Remington 2 Chuckles 2 Cupcake 2 Thumas 2 Curtis 2 Calbert 2 Ozzy 2 Sarge 2 Smokey 2 Flávio 2 Bisquick 2 Pippa 2 Panda 2 Chet 2 Percy 2 Abby 2 Phred 2 Solomon 2 Jackson 2 Dakota 2 Roosevelt 2 Patrick 2 Kreg 2 Finley 2 Dash 2 Keurig 2 Chipson 2 Sampson 2 Penelope 2 Frankie 2 Arnie 2 Rory 2 Griffin 2 Jiminy 2 Lou 2 Rufus 2 Jeph 2 Hammond 2 Albert 2 Rocco 2 Baxter 2 Opal 2 Watson 2 Keith 2 Brad 2 Fred 2 Herald 2 Piper 2 Atticus 2 Kirby 2 Django 2 Neptune 2 Ash 2 Belle 2 Ava 2 Nelly 2 Kevin 2 Yogi 2 Eli 2 Aspen 2 Albus 2 Alice 2 Paisley 2 Cody 2 Coco 2 Churlie 2 Elliot 2 Jesse 2 Romeo 2 Benedict 2 Harold 2 Hobbes 2 Indie 2 Maddie 2 Cash 2 Fiona 2 Trooper 2 Lorenzo 2 Franklin 2 Pickles 2 Odie 2 Jareld 1 Kallie 1 Oddie 1 Maxwell 1 Brockly 1 Covach 1 Durg 1 Fynn 1 Jomathan 1 Amber 1 Maks 1 Geoff 1 Lolo 1 Eriq 1 Cedrick 1 Kingsley 1 Teddy 1 Molly 1 Gòrdón 1 Vinscent 1 Spark 1 Ricky 1 Marvin 1 Jo 1 Edgar 1 DayZ 1 Hazel 1 Herschel 1 Richie 1 Tanner 1 Zeek 1 Lucky 1 Birf 1 Kevon 1 Lorelei 1 Marty 1 Brooks 1 Petrick 1 Hubertson 1 Gerbald 1 Oreo 1 Bruiser 1 Perry 1 Bobby 1 Banditt 1 Obi 1 Tino 1 Bobb 1 Kulet 1 Sweets 1 Winifred 1 Crimson 1 Timofy 1 Horace 1 Ferg 1 Trip 1 Torque 1 Hamrick 1 Pubert 1 Frönq 1 Derby 1 Hanz 1 Lizzie 1 Ember 1 Blakely 1 Marq 1 Kramer 1 Barry 1 Tyrone 1 Gordon 1 Mona 1 Tupawc 1 Grady 1 Ron 1 Fwed 1 Adele 1 Zara 1 Ambrose 1 Timison 1 Joshwa 1 Bode 1 Genevieve 1 Terrenth 1 Chesterson 1 Dunkin 1 Lucia 1 Biden 1 Ralphson 1 Socks 1 Rambo 1 Rudy 1 Philippe 1 Hall 1 Kara 1 Katie 1 Bradlay 1 Pipsy 1 Rodney 1 Lugan 1 Malikai 1 Bobble 1 River 1 Jebberson 1 Farfle 1 Jiminus 1 Josep 1 Jockson 1 Harper 1 Clarkus 1 Finnegus 1 Carll 1 Kathmandu 1 Keet 1 Clybe 1 Fiji 1 Rilo 1 Bilbo 1 Cuddles 1 Jessiga 1 Carter 1 Ole 1 Stu 1 Pherb 1 Blipson 1 Reptar 1 Trevith 1 Berb 1 Erik 1 Colin 1 Brian 1 Cleopatricia 1 Skittles 1 Kobe 1 Freddery 1 Bodie 1 Claude 1 Tedrick 1 Coopson 1 Yukon 1 Yoda 1 Millie 1 Dook 1 Crouton 1 Daniel 1 Kaia 1 Murphy 1 Dotsy 1 Naphaniel 1 Eazy 1 Kial 1 Filup 1 Fillup 1 Miley 1 Charl 1 Shaggy 1 Reagan 1 Lupe 1 Banjo 1 Amélie 1 Kendall 1 Kaiya 1 Acro 1 Bloo 1 Aiden 1 Obie 1 Dot 1 Shnuggles 1 Pluto 1 Ester 1 Edd 1 Danny 1 Jeffri 1 Jeffrie 1 Steve 1 Eve 1 Gin 1 Mac 1 Traviss 1 Mitch 1 Paull 1 Fletcher 1 Billy 1 Zuzu 1 Mollie 1 Nigel 1 Laela 1 Tedders 1 Peanut 1 Superpup 1 Rufio 1 Jeb 1 Bobbay 1 Damon 1 Rodman 1 Jonah 1 Chesney 1 Kenny 1 Herb 1 Henry 1 Willy 1 Creg 1 Kenzie 1 Butters 1 Anthony 1 Ridley 1 Cal 1 Bradley 1 Jett 1 Bubba 1 Holly 1 Tuco 1 Patch 1 Mojo 1 Snickers 1 Batdog 1 Dylan 1 Mark 1 JD 1 Sparky 1 Alejandro 1 Scruffers 1 Pip 1 Amy 1 Sage 1 Pumpkin 1 Scott 1 Antony 1 Schnozz 1 Gustaf 1 Cheryl 1 Ed 1 Leonidas 1 Norman 1 Caryl 1 Trigger 1 Rolf 1 Taz 1 Darby 1 Jackie 1 Jazz 1 Mason 1 Andy 1 Franq 1 Pippin 1 Arnold 1 Sandra 1 Tiger 1 Moofasa 1 Chuck 1 Champ 1 Ozzie 1 Griswold 1 Jaspers 1 Cheesy 1 Clarq 1 Ralf 1 Hector 1 Samsom 1 Goliath 1 Kawhi 1 Emmie 1 Kirk 1 Willie 1 Sully 1 Rinna 1 Tessa 1 Glacier 1 Asher 1 William 1 Jeremy 1 Ruffles 1 Lambeau 1 Julius 1 Brandy 1 Lulu 1 Jaycob 1 Darrel 1 Taco 1 Joey 1 Carly 1 Chaz 1 Harrison 1 Terrance 1 Todo 1 Tess 1 Ulysses 1 Toffee 1 Apollo 1 Mike 1 Dwight 1 Buddah 1 Ben 1 Tassy 1 Juckson 1 Chuq 1 Tyrus 1 Julio 1 Karl 1 Raphael 1 Godzilla 1 Vinnie 1 Andru 1 Tommy 1 Liam 1 Bert 1 Striker 1 Randall 1 Donny 1 Pepper 1 Fabio 1 Humphrey 1 Ralph 1 Evy 1 Kollin 1 Dug 1 Hurley 1 Rubio 1 Chompsky 1 Saydee 1 Billl 1 Rascal 1 Ronduh 1 Tug 1 Kloey 1 Tango 1 Grizz 1 Jerome 1 Crumpet 1 Skye 1 Shawwn 1 Jessifer 1 Izzy 1 Walker 1 Bell 1 Karma 1 Pablo 1 Duchess 1 Harlso 1 Sundance 1 Flash 1 Howie 1 Jazzy 1 Anna 1 Wafer 1 Tom 1 Florence 1 Autumn 1 Dido 1 Eugene 1 Ken 1 Strudel 1 Tebow 1 Chloe 1 Timber 1 Binky 1 Crawford 1 Sweet 1 Comet 1 Mo 1 Emanuel 1 Kuyu 1 Dutch 1 Pete 1 Lilly 1 Astrid 1 Mutt 1 Doobert 1 Beebop 1 Alexander 1 Sailer 1 Brutus 1 Kona 1 Boots 1 Ralphie 1 Cupid 1 Pawnd 1 Pilot 1 Ike 1 Dudley 1 Akumi 1 Smiley 1 Ronnie 1 Mauve 1 Chef 1 Sobe 1 Longfellow 1 Iroh 1 Pancake 1 Snicku 1 Mack 1 Nimbus 1 Laika 1 Dobby 1 Moreton 1 Maude 1 Newt 1 Nida 1 Robin 1 Monster 1 BeBe 1 Remus 1 Bones 1 Severus 1 Alf 1 Sonny 1 Chubbs 1 Sky 1 Eleanor 1 Baron 1 Bauer 1 Swagger 1 Brandi 1 Mary 1 Halo 1 Augie 1 Craig 1 Pavlov 1 Kyro 1 Ito 1 Seamus 1 Stephan 1 Major 1 Shooter 1 Diogi 1 Miguel 1 Eevee 1 Vince 1 Ginger 1 Goose 1 Nugget 1 Jed 1 Sierra 1 Monkey 1 Harry 1 Kody 1 Lassie 1 Rover 1 Napolean 1 Rumble 1 Clifford 1 Dewey 1 Shikha 1 Lili 1 Jamesy 1 Meatball 1 Quinn 1 Zooey 1 Venti 1 Dante 1 Burt 1 Aja 1 Darla 1 Bruno 1 Stuart 1 Jim 1 Ralphus 1 Canela 1 Maya 1 Mingus 1 Roscoe 1 Jimbo 1 Maisey 1 Noah 1 Grizzwald 1 Alfy 1 Koko 1 Rey 1 Duddles 1 Snoopy 1 Emmy 1 Jersey 1 Jordy 1 Orion 1 Barney 1 Jarvis 1 Mimosa 1 Brady 1 Margo 1 Tycho 1 Dawn 1 Monty 1 Sojourner 1 Arlo 1 Mookie 1 Meera 1 Tobi 1 Sunshine 1 Lipton 1 Bronte 1 Poppy 1 Gidget 1 Rhino 1 Willow 1 Vixen 1 Tuck 1 Milky 1 Furzey 1 Thor 1 Callie 1 Cermet 1 Marlee 1 Arya 1 Einstein 1 Rumpole 1 Benny 1 Jarod 1 Wiggles 1 General 1 Sailor 1 Iggy 1 Snoop 1 Noosh 1 Odin 1 Georgie 1 Rontu 1 Cannon 1 Levi 1 Mabel 1 Betty 1 Rorie 1 Bayley 1 Storkson 1 Remy 1 Chadrick 1 Kellogg 1 Buckley 1 Livvie 1 Hermione 1 Ralpher 1 Aldrick 1 Rooney 1 Ziva 1 Stefan 1 Pupcasso 1 Puff 1 Flurpson 1 Coleman 1 Enchilada 1 Rueben 1 Simba 1 Nollie 1 Karll 1 Chase 1 Tripp 1 Cora 1 Huxley 1 Bookstore 1 Linus 1 Shiloh 1 Gustav 1 Arlen 1 Lenox 1 Harvey 1 Blanket 1 Geno 1 Stark 1 Beya 1 Kayla 1 Tilly 1 Edmund 1 Aqua 1 Baloo 1 Cilantro 1 Sprout 1 Mosby 1 Bluebert 1 Zeus 1 Bertson 1 Nico 1 Michelangelope 1 Siba 1 Travis 1 Kanu 1 Lance 1 Opie 1 Stubert 1 Kane 1 Staniel 1 Sora 1 Beemo 1 Gunner 1 Lacy 1 Tater 1 Olaf 1 Cecil 1 Stephanus 1 Jennifur 1 Bloop 1 Link 1 Lillie 1 Ashleigh 1 Luther 1 Ivar 1 Jangle 1 Schnitzel 1 Berkeley 1 Ralphé 1 Charleson 1 Clyde 1 Harnold 1 Sid 1 Carper 1 Bowie 1 Alexanderson 1 Suki 1 Barclay 1 Skittle 1 Ebby 1 Divine 1 Dietrich 1 Blu 1 Timmy 1 Hercules 1 Jay 1 Mya 1 Strider 1 Wesley 1 Huck 1 O 1 Blue 1 Anakin 1 Sprinkles 1 Heinrich 1 Shakespeare 1 Chelsea 1 Bungalo 1 Grey 1 Willem 1 Davey 1 Fizz 1 Dixie 1 Combo 1 Deacon 1 Jameson 1 Cali 1 Happy 1 Ralphy 1 Brownie 1 Rizzy 1 Stella 1 Butter 1 Tonks 1 Logan 1 Dale 1 Rizzo 1 Mattie 1 Pinot 1 Dallas 1 Hero 1 Stormy 1 Balto 1 Mairi 1 Loomis 1 Godi 1 Al 1 Carbon 1 Klein 1 DonDon 1 Spencer 1 Lilli 1 Boston 1 Brandonald 1 Corey 1 Leonard 1 Beckham 1 Devón 1 Gert 1 Dex 1 Ace 1 Tayzie 1 Grizzie 1 Gilbert 1 Meyer 1 Zoe 1 Stewie 1 Lilah 1 Spanky 1 Emma 1 Fido 1 Theo 1 Tove 1 Chevy 1 Tito 1 Philbert 1 Rupert 1 Brudge 1 Shadoe 1 Angel 1 Brat 1 Gromit 1 Rose 1 Aubie 1 Kota 1 Leela 1 Glenn 1 Shelby 1 Sephie 1 Bonaparte 1 Wishes 1 Christoper 1 Name: name, dtype: int64
Upon observation of the text column, it can be seen that the coulumn also contains ratings in the text. To solve the incorrect rating issue, denominators not equal to 10 will be filtered away using the query function and then the correct ratings will be inserted into the columns.
pd.set_option('display.max_colwidth', -1) # to have a complete display of the column details
clean_TA.text
C:\Users\willi\AppData\Local\Temp\ipykernel_22688\3373705726.py:1: FutureWarning: Passing a negative integer is deprecated in version 1.0 and will not be supported in future version. Instead, use None to not limit the column width.
pd.set_option('display.max_colwidth', -1) # to have a complete display of the column details
0 This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU 1 This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV 2 This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB 3 This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ 4 This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f 5 Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh 6 Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl 7 When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq 8 This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b 9 This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A 10 This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme 11 This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g 12 Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm 13 This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR 14 This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq 15 This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb 16 This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN 17 This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K 18 This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK 20 This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX 21 This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 22 I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba 23 This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX 24 You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV 25 This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp 26 This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT 27 This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b 28 This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA 29 This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox 30 @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution 31 This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O 33 Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 34 This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF 35 I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk 37 Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf 38 This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa 39 This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO 40 This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 41 I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC 42 OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj 43 Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ 44 This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY 45 This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 46 Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP 47 Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E 48 This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj 49 This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu 50 This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 51 This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA 52 This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w 53 This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ 54 This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s 55 @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s 56 Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF 57 Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC 58 This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt 59 Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf 60 This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw 61 Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK 62 Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 63 This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 64 @RealKentMurphy 14/10 confirmed 65 This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 66 This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY 67 This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa 69 This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD 70 This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN 71 This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS 72 Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa 75 Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 76 This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe 77 This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r 79 This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP 80 Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc 81 This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y 82 This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 83 I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu 84 This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs 85 Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek 86 This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN 87 Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj 88 You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW 89 Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW 90 Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD 92 This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm 93 I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 94 This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V 96 We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n 98 This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ 99 Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR 100 Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 102 This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 103 We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ 104 This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa 105 This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN 106 Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w 107 This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg 108 This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw 110 Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH 111 This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo 112 Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi 113 @ComplicitOwl @ShopWeRateDogs >10/10 is reserved for dogs 114 This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 115 This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm 116 This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 117 Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju 119 This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D 120 Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq 121 This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo 122 This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ 123 This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF 125 Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM 126 Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi 127 Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ 128 Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa 129 This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go 131 Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ 133 He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 134 This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z 135 This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr 136 This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c 138 Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg 139 This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc 140 This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o 141 We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR 142 This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck 143 This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr 144 This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 145 This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop 147 This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H 148 @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 149 Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen 150 Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt 151 This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE 152 This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 153 This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb 154 We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd 156 This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 157 HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g 158 This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 161 Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt 162 This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I 163 This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN 164 Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG 166 Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 167 Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl 168 Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 169 We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 170 Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT 172 I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq 173 This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy 174 This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF 175 This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X 176 Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai 177 Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV 178 This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC 179 @Marc_IRL pixelated af 12/10 181 This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu 183 This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO 184 THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA 186 @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 187 This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 188 @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research 189 @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 190 HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S 191 Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel 192 I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth 193 Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x 196 This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s 197 This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 198 This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 199 Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR 200 At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk 201 Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x 202 A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe 203 This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP 205 Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U 206 This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW 207 This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC 208 This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg 209 Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW 210 This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG 213 Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS 214 This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M 215 Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 216 This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN 217 This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO 218 @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS 219 This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l 220 Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde 221 Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT 223 This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 224 At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu 225 This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz 226 Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU 227 Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z 228 Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet 229 This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 232 This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj 233 This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 234 .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 235 This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 236 This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq 237 Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r 238 Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 239 This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe 240 This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK 241 THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy 242 This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR 243 SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd 244 Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW 245 We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP 246 C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo 248 Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o 249 This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk 251 PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B 252 This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr 253 This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN 254 This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk 255 This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx 256 HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd 257 Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e 258 This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC 259 This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL 261 This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs 262 Meet Indie. She's not a fan of baths but she's definitely a fan of hide & seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l 263 This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe 264 Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl 265 This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy 267 This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj 268 Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL 269 We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K 270 This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 271 This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ 274 @0_kelvin_0 >10/10 is reserved for puppos sorry Kevin 275 I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 276 Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o 277 You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG 278 This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE 279 Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr 280 Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu 282 This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm 283 SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP 284 This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv 287 This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI 288 This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI 290 @markhoppus 182/10 291 @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 292 This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO 293 Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH 294 This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz 295 This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 296 This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns 297 This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B 299 This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM 300 This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY 301 Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs 304 This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q 305 This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD 306 Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE 308 This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q 311 Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO 312 Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU 313 @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho 314 We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL 315 When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag 316 This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK 317 This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE 318 Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg 320 Meet Chester (bottom) & Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe 321 This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ 322 This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB 323 DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 324 This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG 325 This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ 326 Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY 328 This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET 329 This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu 330 This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa 331 This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 333 This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ 334 Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ 335 There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 336 This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr 337 This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt 338 This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d 339 Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz 342 @docmisterio account started on 11/15/15 344 This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M 345 This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT 346 @UNC can confirm 12/10 347 Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg 348 This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg 349 I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO 350 This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse 351 This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK 352 I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 353 This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V 354 This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY 355 Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 356 This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 358 Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW 360 This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU 361 This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul 362 Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB 363 This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao 364 This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR 365 This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is 367 This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz 368 This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 369 Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK 370 This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt 371 This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 372 Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 373 This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR 374 This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS 375 Beebop and Doobert should start a band 12/10 would listen 376 This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 377 Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB 378 This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ 379 This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 380 Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb 381 This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 383 This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ 384 This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR 385 This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh 387 I was going to do 007/10, but the joke wasn't worth the <10 rating 388 This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I 389 This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh 390 We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C 391 Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX 392 This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm 393 This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 394 This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM 395 Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 396 This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD 398 Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc 400 This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI 401 This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM 402 Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS 403 This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt 404 "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW 405 This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw 407 This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL 408 This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U 409 @HistoryInPics 13/10 410 This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 412 This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG 413 Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc 414 This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS 416 Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh 417 This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E 418 This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO 419 We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 421 This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV 423 This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 424 This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn 426 This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG 427 @imgur for a polar bear tho I'd say 13/10 is appropriate 428 This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 429 Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl 430 This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu 432 Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 433 The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd 436 We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE 437 I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD 439 This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb 440 Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E 441 This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU 442 This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO 443 Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W 444 Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv 445 This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT 448 This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb 449 This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 451 Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG 452 This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 454 This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU 456 This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib 457 This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z 458 Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 459 This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA 460 This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 461 Say hello to Eugene & Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu 463 This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ 464 Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 466 This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw 467 Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T 468 This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH 470 This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 471 This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF 472 Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k 473 This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY 474 This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi 477 Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p 478 Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k 480 This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 481 This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy 482 Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L 483 This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 484 This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv 486 This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G 487 This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J 489 This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf 490 Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg 491 This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 492 Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 493 Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn 494 We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ 495 This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE 496 This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV 497 Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi 498 I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 499 Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA 500 Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq 501 This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu 502 This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg 503 This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN 504 This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl 505 This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG 507 This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp 508 I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 509 This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux 510 This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT 511 Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop 512 This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 513 PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 514 This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn 515 This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy 516 Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx 517 This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV 518 This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ 519 This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu 520 This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb 521 Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo 523 I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo 524 This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p 525 This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h 526 This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 527 Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD 528 This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px 529 This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM 531 Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho 532 This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl 533 This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 534 This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d 536 This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX 537 "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 539 Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G 540 This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h 542 We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi 544 This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 545 This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 547 This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ 548 Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl 549 This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 550 This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ 551 HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd 553 This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq 554 This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt 556 Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX 557 Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n 559 This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL 560 This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh 562 This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O 563 This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv 564 This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ 565 Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze 567 This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 569 This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 570 .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC 571 This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe 572 oh h*ck 10/10 https://t.co/bC69RrW559 573 This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey 575 This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj 576 @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets 578 Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG 579 This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm 580 Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca 582 This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 584 This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg 585 Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I 587 This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 588 This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ 590 This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf 591 This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm 592 This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL 593 This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu 607 This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 608 Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z 609 This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB 610 This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi 611 @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 613 This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 614 Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI 616 Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV 617 This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 619 This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt 620 #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 621 I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN 622 This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm 623 This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL 624 Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz 625 This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ 626 This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E 628 This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH 630 This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU 631 This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g 632 This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR 633 This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 635 This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv 636 This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN 637 This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 638 Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN 639 Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 640 This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt 641 This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj 642 This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 643 Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY 644 This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q 645 This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo 646 This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf 647 Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT 648 This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb 649 Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq 650 This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz 651 This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL 652 Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 653 This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu 657 Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 658 When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh 659 Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc 660 This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK 662 This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr 663 This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI 665 This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 666 This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 667 Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV 668 This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 670 This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v 672 This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H 673 This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI 674 This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx 675 This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq 676 HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM 678 This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS 679 This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN 680 This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm 681 This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq 683 This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S 684 Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc 685 This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc 687 Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ 688 This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc 689 This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp 690 This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 691 This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp 693 This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj 695 This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS 696 "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r 697 This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX 698 This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn 699 This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit 700 This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh 701 13/10 for breakdancing puppo @shibbnbot 703 This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y 704 Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV 705 This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd 706 This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG 707 Today, 10/10, should be National Dog Rates Day 708 This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx 709 This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ 710 This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ 711 This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 712 This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt 713 This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ 714 This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC 715 This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 716 This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp 717 This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY 718 This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ 719 Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi 721 This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu 722 This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM 723 This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX 724 This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H 725 This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 726 This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn 727 This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 729 This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV 730 Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC 731 This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 732 Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf 733 Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u 734 This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 735 We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy 736 I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d 737 This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 738 This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw 739 Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG 740 Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q 743 This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm 744 We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni 746 Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb 747 This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD 748 Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 750 This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate 751 Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 752 This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI 754 Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB 755 This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 756 Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l 757 This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 758 RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A 760 This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv 761 This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb 762 Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD 763 This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq 765 This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M 766 "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ 768 This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 769 This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 771 Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA 772 This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW 774 Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 775 This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC 776 This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG 777 I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I 779 This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH 780 This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG 781 This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH 782 This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci 783 This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou 785 This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT 786 This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P 787 This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu 788 I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH 789 Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz 790 This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg 791 This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio 792 This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr 793 This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb 795 This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N 796 This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn 797 This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD 798 You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV 799 Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright & licked position\n11/10 https://t.co/7CQkn3gHOQ 801 Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn 802 This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK 803 Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A 804 Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti 805 This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT 806 This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c 807 Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k 808 This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm 809 This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv 810 Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn 812 This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR 813 This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA 814 Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd 816 This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi 817 This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo 819 We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d 820 Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV 821 This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw 823 Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS 824 This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV 825 This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v 827 This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE 828 This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs 830 This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 831 This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr 832 Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH 834 Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 835 Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq 836 This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA 837 This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O 838 This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 839 I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT 840 This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC 842 This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO 843 His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley 844 This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 845 This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG 846 This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 848 This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk 849 This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL 850 This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 851 This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR 852 This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB 853 This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 854 This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH 855 This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 856 This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ 857 @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 858 This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo 859 This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU 861 This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM 862 This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD 863 Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci 864 This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx 865 This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq 866 This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB 867 This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP 869 Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j 870 Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 871 This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo 873 This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc 874 Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo 875 This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY 876 This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK 877 This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa 878 This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 879 This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC 880 This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ 881 Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 882 This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv 883 This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP 884 Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ 886 Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu 887 We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi 888 This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 889 Meet Maggie & Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll 891 This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu 892 This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 893 No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A 894 This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW 896 Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi 897 This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx 898 This is Lilli Bee & Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW 899 This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q 900 Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj 901 This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM 902 Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE 903 This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh 904 This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr 905 In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE 906 Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv 907 This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo 909 This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr 910 This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB 912 Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl 913 She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 914 Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV 915 This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO 916 This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj 917 This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH 918 This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW 919 All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF 920 Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I 921 Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR 922 When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 923 Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr 924 This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k 925 This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN 927 This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR 928 This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU 929 This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II 930 This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge 931 When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA 932 This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh 933 "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg 934 Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf 935 This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX 936 This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc 938 This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv 939 So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 940 Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV 941 This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc 942 This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW 944 Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS 945 Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr 946 Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ 947 Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 948 Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE 950 This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 951 This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV 952 This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q 953 This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w 954 This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 955 This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC 956 Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 957 This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY 958 Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex 959 This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG 960 "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy 961 This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA 962 Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC 963 This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL 964 This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 965 This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS 966 This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta 967 13/10 such a good doggo\n@spaghemily 968 And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe 969 This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo 970 This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm 971 Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD 972 This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd 973 Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM 974 This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 975 This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI 976 Meet Jax & Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI 977 Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM 978 This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR 979 This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh 980 This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl 981 This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v 982 Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx 983 This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc 984 This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB 985 This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o 986 Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF 987 This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC 988 What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX 989 Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb 990 #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA 991 Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c 992 That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 993 This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd 994 This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 995 "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa 996 SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy 997 This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO 998 This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO 999 Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH 1000 PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q 1001 Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R 1002 This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW 1003 This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz 1004 Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R 1005 Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup 1006 This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M 1007 This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ 1008 Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr 1009 Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP 1010 Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y 1011 This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR 1013 This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U 1014 This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC 1015 Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 1016 PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX 1017 This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 1018 Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ 1019 When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf 1020 This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u 1021 Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp 1022 Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd 1024 This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 1025 This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt 1026 This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX 1027 This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx 1028 This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu 1029 This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E 1030 This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR 1031 We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ 1032 This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 1033 This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh 1034 This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA 1035 This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK 1036 Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r 1037 This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT 1038 This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z 1039 Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 1040 This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N 1041 This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 1042 When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 1044 Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA 1045 This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N 1046 Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn 1047 This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH 1048 This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx 1049 This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa 1050 Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO 1051 For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv 1052 This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O 1053 Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z 1054 This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b 1055 This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq 1056 This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL 1057 This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY 1058 When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu 1059 Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE 1060 This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 1061 This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ 1062 This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ 1063 This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC 1064 This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ 1065 Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv 1066 This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK 1067 Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC 1068 After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ 1069 When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 1070 This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW 1071 This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X 1072 This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf 1073 Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 1074 This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 1075 Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON 1076 Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj 1077 This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P 1078 This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO 1079 Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC 1080 @mount_alex3 13/10 1081 This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr 1082 When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc 1083 This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu 1084 "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK 1085 For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl 1086 This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs 1087 This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC 1088 This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK 1089 This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj 1090 We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 1091 Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT 1092 Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw 1093 Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC 1094 This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW 1095 Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX 1096 This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 1097 We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc 1098 Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS 1099 This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca 1100 *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK 1101 This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj 1102 We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt 1103 This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS 1104 Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 1105 This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK 1106 This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA 1107 This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO 1108 When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC 1109 This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ 1110 This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL 1111 "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L 1112 This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA 1113 Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda 1114 This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH 1115 This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL 1116 When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp 1117 This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE 1118 This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r 1119 This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP 1120 Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv 1121 We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z 1122 This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV 1123 This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG 1124 This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE 1125 This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog 1126 Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z 1127 "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB 1128 This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh 1129 Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 1130 "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u 1131 This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B 1132 When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq 1133 This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE 1134 This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs 1135 This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr 1136 This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP 1137 This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ 1138 This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh 1139 This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi 1140 This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 1141 Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT 1142 This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx 1143 This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs 1144 I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK 1145 This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp 1146 When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 1147 This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY 1148 This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy 1149 This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA 1150 I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z 1151 This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH 1152 Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw 1153 This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU 1154 Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W 1155 This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD 1156 Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs 1157 This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH 1158 This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT 1159 This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL 1160 This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl 1161 This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm 1162 This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 1163 This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU 1164 This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa 1165 Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a 1166 Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY 1167 This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE 1168 This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT 1169 This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp 1170 This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej 1171 Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw 1172 This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk 1173 This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH 1174 This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu 1175 This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv 1176 This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV 1177 This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 1178 This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln 1179 Meet Sid & Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW 1180 Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R 1181 This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz 1182 This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT 1183 This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih 1184 We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos 1185 This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj 1186 Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ 1187 Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe 1188 This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z 1189 This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl 1190 This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb 1191 This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV 1192 Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG 1193 People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n 1194 This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 1195 This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi 1196 This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq 1197 This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 1198 This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o 1199 Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate & churlish. 11/10 would still pet https://t.co/h0trcJohYO 1200 There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC 1201 This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E 1202 This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq 1203 This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ 1204 Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu 1205 This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq 1206 This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP 1207 This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 1208 This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp 1209 Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC 1210 This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp 1211 This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA 1212 This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C 1213 This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx 1214 This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 1215 This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i 1216 This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj 1217 Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ 1218 This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK 1219 This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z 1220 Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG 1221 This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF 1222 Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 & 8/10\nget it together Flurp https://t.co/Akzl5ynMmE 1223 This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi 1224 Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB 1225 I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu 1226 This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE 1227 This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS 1228 Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 1229 This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 1230 Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq 1231 This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J 1232 Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW 1233 This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn 1234 Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 1235 Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl 1236 This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul 1237 Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV 1238 I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK 1239 This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG 1240 Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL 1241 This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt 1243 Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc 1244 Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg 1245 I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 1246 Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ 1247 This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW 1248 "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK 1249 What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz 1250 This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW 1251 Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD 1252 This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM 1253 Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq 1254 Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 1255 I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy 1256 This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV 1257 This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq 1258 This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ 1259 We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 1260 The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 1261 This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I 1262 This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 1263 This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV 1264 Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG 1265 WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r 1266 *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow 1267 This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 1268 This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC 1269 This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 1270 Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo 1271 This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A 1272 This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn 1273 This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg 1274 From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK 1275 This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF 1276 Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR 1277 This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd 1278 This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 1279 Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI 1280 Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn 1281 This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 1282 This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD 1283 This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ 1284 Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W 1285 This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk 1286 RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY 1287 This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX 1288 This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd 1289 This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF 1290 Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT 1291 This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm 1292 This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ 1293 Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U 1294 This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq 1295 @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) 1296 Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm 1297 This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B 1298 When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR 1299 He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN 1300 This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi 1301 We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh 1302 This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 1303 This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 1304 "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 1305 Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E 1306 This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j 1307 This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 1308 This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK 1309 Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL 1310 This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj 1311 This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 1312 This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU 1313 Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f 1314 This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu 1315 Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv 1316 Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw 1317 Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX 1318 This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd 1319 Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp 1320 This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 1321 Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf 1322 When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg 1323 This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV 1324 He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR 1325 This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv 1326 This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 1327 This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO 1328 This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI 1329 Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs 1330 Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR 1331 "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF 1332 Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n 1333 This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 1334 This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA 1335 This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE 1336 This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv 1337 This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z 1338 This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW 1339 I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU 1340 Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu 1341 "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq 1342 This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW 1343 This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 1344 When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc 1345 13/10 hero af\n@ABC 1346 Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe 1347 Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K 1348 This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ 1349 This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j 1350 Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 1351 Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa 1352 "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG 1353 When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT 1354 This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp 1355 Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW 1356 Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC 1357 This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ 1358 This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt 1359 This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf 1360 Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY 1361 This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW 1362 This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR 1363 This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV 1364 Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw 1365 This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO 1366 Meet Rambo & Kiwi. Rambo's the pup with the sharp toes & rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ 1367 This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s 1368 This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 1369 This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd 1370 Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 1371 "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI 1372 I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY 1373 This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY 1374 Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX 1375 This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ 1376 Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr 1377 This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA 1378 This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx 1379 Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M 1380 I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL 1381 This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ 1382 "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW 1383 Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 1384 This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr 1385 We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU 1386 This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD 1387 This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq 1388 This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn 1389 This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s 1390 If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n 1391 When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ 1392 This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE 1393 This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 1394 This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 1395 This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 1396 Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp 1397 Take all my money. 10/10 https://t.co/B28ebc5LzQ 1398 Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD 1399 This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 1400 This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx 1401 I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi 1402 "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE 1403 Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS 1404 Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur 1405 "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z 1406 This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 1407 Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL 1408 ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac 1409 This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il 1410 HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe 1411 This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 1412 Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 1413 This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu 1414 This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z 1415 This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp 1416 Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F 1417 This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG 1418 This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk 1419 This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp 1420 This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD 1421 Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk 1422 This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK 1423 "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ 1424 This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv 1425 This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO 1426 This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 1427 Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP 1428 This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn 1429 Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z 1430 This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ 1431 Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT 1432 Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr 1433 Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ 1434 This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS 1435 Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 1436 Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP 1437 This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN 1438 This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i 1439 These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z 1440 Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ 1441 This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF 1442 This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp 1443 This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 1444 This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 1445 Oh my god 10/10 for every little hot dog pupper 1446 After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me 1447 12/10 revolutionary af https://t.co/zKzq4nIY86 1448 This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ 1449 This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx 1450 Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h 1451 This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd 1452 If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG 1453 Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS 1454 We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T 1455 This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV 1456 This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 1457 This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib 1458 This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ 1459 This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P 1460 Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi 1461 Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 1462 This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ 1463 This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 1464 This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG 1465 Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random & can't bark for shit. 10/10 & 5/10 https://t.co/6NgsQJuSBJ 1466 It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb 1467 Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn 1468 "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI 1469 This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD 1470 This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT 1471 These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H 1472 This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M 1473 What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw 1474 BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af 1475 Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a 1476 This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ 1477 When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X 1478 Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx 1479 Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI 1480 This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 1481 This is Sadie and her 2 pups Shebang & Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne 1482 This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM 1483 I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR 1484 This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP 1485 This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U 1486 "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM 1487 This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW 1488 Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy 1489 This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn 1490 "Fuck the system" 10/10 https://t.co/N0OADmCnVV 1491 Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW 1492 This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS 1493 "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu 1494 This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B 1495 This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI 1496 Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu 1497 PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 1498 Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 1499 This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N 1500 This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB 1501 These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ 1502 This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y 1503 This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 1504 This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z 1505 We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo 1506 THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J 1507 This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV 1508 When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup https://t.co/aenk0KpoWM 1509 Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH 1510 This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV 1511 I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k 1512 This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab 1513 Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW 1514 Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY 1515 We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e 1516 This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E 1517 She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX 1518 This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS 1519 Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt 1520 This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u 1521 This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod 1522 This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP 1523 12/10 @LightningHoltt 1524 This is Lolo. She's America af. Behind in science & math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA 1525 This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf 1526 This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C 1527 Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx 1528 This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL 1529 This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 1530 Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC 1531 This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg 1532 "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt 1533 This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt 1534 Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm 1535 Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf 1536 Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY 1537 This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe 1538 Meet Fynn & Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 & 10/10 https://t.co/MuqHPvtL8c 1539 Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV 1540 This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF 1541 This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n 1542 Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd 1543 Downright majestic af 12/10 https://t.co/WFh2FEbYzj 1544 This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm 1545 Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 1546 Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J 1547 This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS 1548 Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl 1549 This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 1550 We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N 1551 Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv 1552 This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x 1553 Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH 1554 When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx 1555 This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI 1556 Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr 1557 When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 1558 Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG 1559 This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ 1560 This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 1561 This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th 1562 This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO 1563 This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om 1564 Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv 1565 This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY 1566 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp 1567 This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P 1568 With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP 1569 Meet Trooper & Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy 1570 This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl 1571 Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt 1572 Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez 1573 This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c 1574 Another magnificent photo. 12/10 https://t.co/X5w387K5jr 1575 This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj 1576 This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH 1577 This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO 1578 This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz 1579 "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q 1580 Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb 1581 Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy 1582 This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb 1583 Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN 1584 This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC 1585 This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj 1586 This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 1587 Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V 1588 I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU 1589 This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz 1590 This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc 1591 Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd 1592 This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB 1593 Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey & parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc 1594 Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX 1595 Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW 1596 When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe 1597 This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg 1598 Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating 1599 Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D 1600 This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW 1601 This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf 1602 This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 1603 This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn 1604 This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF 1605 Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ 1606 This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ 1607 Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM 1608 This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO 1609 Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM 1610 For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG 1611 "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw 1612 This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu 1613 I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo 1614 Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF 1615 This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ 1616 This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo 1617 Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud 1618 For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u 1619 This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ 1620 This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL 1621 Meet Bruiser & Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 1622 "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a 1623 This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR 1624 Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO 1625 This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p 1626 Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy 1627 "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu 1628 This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL 1629 This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU 1630 After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV 1631 Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb 1632 This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju 1633 This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 1634 Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 1635 Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 1636 Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh 1637 This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 1638 "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA 1639 This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 1640 This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 1641 Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j 1642 Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C 1643 Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW 1644 Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN 1645 This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x 1646 Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet https://t.co/O1E4AtHVxO 1647 Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS 1648 This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR 1649 Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg 1650 HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z 1651 This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 1652 Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq 1653 "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT 1654 I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe 1655 Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 1656 "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd 1657 Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ 1658 This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM 1659 aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H 1660 Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW 1661 This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J 1662 This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 1663 I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible 1664 Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf 1665 Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr 1666 NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz 1667 Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB 1668 I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j 1669 I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU 1670 This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe 1671 This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y 1672 Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ 1673 This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD 1674 Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW 1675 This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf 1676 I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE 1677 This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 1678 We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT 1679 This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak 1680 Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 1681 This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx 1682 Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 1683 This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 1684 Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs 1685 This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu 1686 *collapses* 12/10 https://t.co/C7M8mnzHIK 1687 This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT 1688 This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud 1689 I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace 1690 This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh 1691 This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 1692 This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p 1693 This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap 1694 Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje 1695 Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk 1696 This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy 1697 I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI 1698 This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx 1699 I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 1700 This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY 1701 This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS 1702 Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl 1703 Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN 1704 This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H 1705 This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb 1706 This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 1707 Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 1708 Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD 1709 This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit 1710 This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg 1711 Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s 1712 Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD 1713 This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI 1714 Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He 1715 This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg 1716 I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm 1717 Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 1718 This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt 1719 Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw 1720 Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e 1721 This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK 1722 This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap 1723 This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H 1724 This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE 1725 Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU 1726 Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh 1727 Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ 1728 This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l 1729 "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 1730 This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A 1731 This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X 1732 Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC 1733 This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb 1734 This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP 1735 This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R 1736 This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF 1737 Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC 1738 This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB 1739 Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr 1740 This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z 1741 This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L 1742 Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV 1743 Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO 1744 This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag 1745 I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL 1746 This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 1747 This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE 1748 This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 1749 This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 1750 This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg 1751 If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU 1752 Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f 1753 Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu 1754 This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR 1755 This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx 1756 This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz 1757 Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv 1758 This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW 1759 Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe 1760 Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw 1761 Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r 1762 Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv 1763 Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx 1764 This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz 1765 Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 1766 This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm 1767 These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen 1768 This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM 1769 This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa 1770 This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm 1771 This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 1772 Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj 1773 This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv 1774 After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 1775 This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh 1776 This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi 1777 "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR 1778 Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb 1779 IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq 1780 This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa 1781 This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK 1782 This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD 1783 Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z 1784 In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH 1785 This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND 1786 This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu 1787 Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe 1788 Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j 1789 Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe 1790 Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE 1791 Downright inspiring 12/10 https://t.co/vSLtYBWHcQ 1792 This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 1793 Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 1794 This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s 1795 Meet Tassy & Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 & 11/10 respectively https://t.co/fgORpmTN9C 1796 This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak 1797 This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb 1798 Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 1799 Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo 1800 This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 1801 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L 1802 This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa 1803 This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 1804 This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV 1805 Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a 1806 Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz 1807 Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb 1808 Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk 1809 Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK 1810 Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb 1811 Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C 1812 Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD 1813 When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k 1814 I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh 1815 This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF 1816 *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx 1817 This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr 1818 This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF 1819 After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you 1820 This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT 1821 Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH 1822 This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 1823 ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ 1824 Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX 1825 Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau 1826 Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai 1827 Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr 1828 All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 1829 Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ 1830 This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ 1831 This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv 1832 These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC 1833 This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu 1834 Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs 1835 Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH 1836 Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb 1837 "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp 1838 I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O 1839 This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp 1840 Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa 1841 Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI 1842 & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 1843 Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw 1844 This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you 1845 This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG 1846 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk 1847 Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s 1848 This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 1849 Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 1850 Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 1851 This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 1852 We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 1853 This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI 1854 Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj 1855 This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn 1856 Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 1857 12/10 stay woke https://t.co/XDiQw4Akiw 1858 I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH 1859 Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC 1860 RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn 1861 Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO 1862 Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG 1863 The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju 1864 This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn 1865 Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC 1866 Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP 1867 Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs 1868 This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C 1869 What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 1870 holy shit 12/10 https://t.co/p6O8X93bTQ 1871 When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS 1872 This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF 1873 What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs 1874 This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 1875 Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 1876 Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 1877 C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 1878 This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI 1879 Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G 1880 Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO 1881 Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 1882 Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 1883 When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 1884 This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B 1885 I have found another. 13/10 https://t.co/HwroPYv8pY 1886 ER... MER... GERD 13/10 https://t.co/L1puJISV1a 1887 Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb 1888 Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj 1889 This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm 1890 This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD 1891 These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr 1892 Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc 1893 Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO 1894 This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT 1895 Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you 1896 "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc 1897 Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 & 4/10 https://t.co/KNfLnYPmYh 1898 Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo 1899 Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm 1900 This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb 1901 Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 https://t.co/YPfw7oahbD 1902 When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp 1903 This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL 1904 Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE 1905 The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass 1906 This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx 1907 This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f 1908 Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx 1909 This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk 1910 This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY 1911 This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn 1912 This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi 1913 Meet Chesney. On the outside he stays calm & collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc 1914 13/10\n@ABC7 1915 This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv 1916 This is life-changing. 12/10 https://t.co/SroTpI6psB 1917 This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK 1918 "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it 1919 This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N 1920 This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ 1921 This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 1922 Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx 1923 This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU 1924 Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 1925 This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 1926 This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 1927 This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk 1928 Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 1929 Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX 1930 This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk 1931 Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP 1932 When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ 1933 This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs 1934 Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD 1935 This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ 1936 This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd 1937 This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb 1938 Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M 1939 When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd 1940 The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you 1941 This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl 1942 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH 1943 I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 1944 This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 1945 This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM 1946 This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd 1947 Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA 1948 This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw 1949 When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe 1950 Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y 1951 This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E 1952 This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ 1953 This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj 1954 This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We 1955 This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 1956 This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 1957 This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug 1958 When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP 1959 Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w 1960 This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 1961 This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ 1962 This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ 1963 *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ 1964 This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u 1965 This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS 1966 IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW 1967 This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a 1968 This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf 1969 Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng 1970 Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg 1971 This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum 1972 Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 1973 This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI 1974 This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw 1975 Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg 1976 This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq 1977 This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG 1978 Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs 1979 Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu 1980 This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 1981 This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd 1982 This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ 1983 This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT 1984 This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E 1985 This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp 1986 Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg 1987 This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 1988 This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN 1989 This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs 1990 This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M 1991 This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ 1992 This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U 1993 This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois 1994 This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe 1995 Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz 1996 This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w 1997 Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI 1998 Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap 1999 When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi 2000 This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK 2001 This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt 2002 Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP 2003 This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f 2004 This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 2005 This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 2006 When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ 2007 This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV 2008 Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd 2009 This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 2010 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k 2011 Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr 2012 This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 2013 Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA 2014 This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O 2015 This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D 2016 This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO 2017 This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W 2018 This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ 2019 This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP 2020 This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe 2021 This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg 2022 Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a 2023 This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH 2024 This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW 2025 This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O 2026 This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE 2027 This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG 2028 Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI 2029 Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg 2030 This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq 2031 When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S 2032 Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 2033 Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl 2034 This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 2035 This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr 2036 I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt 2037 This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU 2038 After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes 2039 This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV 2040 Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS 2041 This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF 2042 This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD 2043 This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c 2044 Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K 2045 Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi 2046 Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF 2047 This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 2048 Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 2049 This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA 2050 This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ 2051 This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD 2052 This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx 2053 Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS 2054 Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez 2055 This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 2056 Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb 2057 This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD 2058 This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH 2059 This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt 2060 This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu 2061 This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w 2062 Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX 2063 This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 2064 Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 & 8/10 https://t.co/RcksaUrGNu 2065 *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii 2066 This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr 2067 Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 2068 Me running from commitment. 10/10 https://t.co/ycVJyFFkES 2069 Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY 2070 Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 2071 Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV 2072 This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H 2073 Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm 2074 After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY 2075 Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX 2076 Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk 2077 This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F 2078 This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx 2079 Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT 2080 This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ 2081 Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 2082 This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 2083 Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn 2084 Say hello to Andy. He can balance on one foot, obliterate u in checkers, & transform into a rug. 11/10 much talents https://t.co/idzH8JH06g 2085 Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b 2086 I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR 2087 This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 2088 This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l 2089 Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY 2090 This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa 2091 Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO 2092 This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP 2093 This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP 2094 "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g 2095 Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 2096 Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E 2097 This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z 2098 This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt 2099 *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed 2100 Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH 2101 This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V 2102 This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN 2103 This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc 2104 This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU 2105 Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 2106 This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG 2107 Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD 2108 This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK 2109 Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e 2110 This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq 2111 Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp 2112 Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE 2113 Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj 2114 This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK 2115 This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad 2116 This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo 2117 Meet Herb. 12/10 https://t.co/tLRyYvCci3 2118 This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi 2119 Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn 2120 Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN 2121 This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY 2122 This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I 2123 Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S 2124 Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K 2125 This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj 2126 This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY 2127 AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA 2128 This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN 2129 This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF 2130 This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 2131 "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f 2132 Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD 2133 Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 2134 This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd 2135 This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn 2136 This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 2137 This is Ben & Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU 2138 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK 2139 Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q 2140 This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt 2141 This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK 2142 Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ 2143 This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 2144 This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F 2145 I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw 2146 This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX 2147 Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 2148 Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB 2149 After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 2150 This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA 2151 Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB 2152 This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx 2153 This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM 2154 This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 2155 Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs 2156 This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF 2157 Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu 2158 This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id 2159 This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y 2160 Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX 2161 This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl 2162 Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD 2163 This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY 2164 This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk 2165 This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP 2166 Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m 2167 Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi 2168 Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx 2169 This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv 2170 This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA 2171 This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP 2172 Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 2173 Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc 2174 This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ 2175 This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT 2176 This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 2177 Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 https://t.co/Lh1BsJrWPp 2178 Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN 2179 This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu 2180 Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD 2181 Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh 2182 This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl 2183 This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX 2184 Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF 2185 This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH 2186 Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW 2187 This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 2188 This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY 2189 12/10 good shit Bubka\n@wane15 2190 Meet Jaycob. He got scared of the vacuum. Hide & seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK 2191 This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 2192 This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 2193 Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe 2194 This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj 2195 This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf 2196 Say hello to Bobb. Bobb is a Golden High Fescue & a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY 2197 This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI 2198 This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ 2199 This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW 2200 Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt 2201 Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 2202 Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N 2203 Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ 2204 This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg 2205 This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG 2206 Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH 2207 This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo 2208 This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs 2209 This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj 2210 Say hello to Kallie. There was a tornado in the area & the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx 2211 Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm 2212 Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 2213 This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 2214 It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 2215 There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 2216 This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 https://t.co/stEodX9Aba 2217 This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW 2218 This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt 2219 This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 2220 Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB 2221 Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 2222 Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m 2223 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU 2224 I can't do better than he did. 10/10 https://t.co/fM0KXns7Or 2225 Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc 2226 Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB 2227 Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN 2228 This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd 2229 Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K 2230 This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i 2231 Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 2232 These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh 2233 This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK 2234 This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 2235 This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb 2236 Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI 2237 This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 2238 This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX 2239 This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq 2240 This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 2241 Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN 2242 Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 2243 This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W 2244 This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 2245 Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd 2246 This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&2/10 https://t.co/LvP1TTYSCN 2247 Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE 2248 This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X 2249 This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba 2250 THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 2251 This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 2252 OMIGOD 12/10 https://t.co/SVMF4Frf1w 2253 Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O 2254 Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x 2255 This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD 2256 This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe 2257 Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB 2258 What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ 2261 Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx 2262 Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb 2263 This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR 2264 This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe 2265 This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV 2266 Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy 2267 Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm 2268 This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 2269 This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 2270 Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl 2271 This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i 2272 Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y 2273 This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk 2274 This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK 2275 Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa 2276 Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N 2277 Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx 2278 Ermergerd 12/10 https://t.co/PQni2sjPsm 2279 This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 2280 This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS 2281 Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 2282 This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH 2283 This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ 2284 *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 2285 Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV 2286 This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl 2287 This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW 2288 These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN 2289 This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs 2290 Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY 2291 This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY 2292 This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 2293 This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X 2294 Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V 2295 This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ 2296 This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr 2297 Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq 2298 After much debate this dog is being upgraded to 10/10. I repeat 10/10 2299 Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR 2300 This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA 2301 12/10 gimme now https://t.co/QZAnwgnOMB 2302 This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m 2303 This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk 2304 This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc 2305 My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h 2306 These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 https://t.co/ZnEMHBsAs1 2307 12/10 simply brilliant pup https://t.co/V6ZzG45zzG 2308 This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO 2309 This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK 2310 Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S 2311 This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa 2312 This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH 2313 This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI 2314 This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB 2315 This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF 2316 Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s 2317 This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ 2318 I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua 2319 This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW 2320 Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK 2321 "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU 2322 Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM 2323 Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK 2324 *internally screaming* 12/10 https://t.co/YMcrXC2Y6R 2325 This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn 2326 This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t 2327 This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h 2328 Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE 2329 Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl 2330 Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM 2331 Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO 2332 Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB 2333 This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL 2334 This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 2335 This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv 2336 Can take selfies 11/10 https://t.co/ws2AMaNwPW 2337 Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk 2338 Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX 2339 Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq 2340 Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C 2341 This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP 2342 Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 2343 Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY 2344 Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx 2345 This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK 2346 Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p 2347 My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O 2348 Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt 2349 This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc 2350 This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe 2351 Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq 2352 This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx 2353 Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR 2354 This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI 2355 Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj Name: text, dtype: object
abnormal_denominator = clean_TA.query('rating_denominator != 10')
abnormal_denominator.rating_denominator
#for easy access and display of the required columns
313 0 342 15 433 70 516 7 902 150 1068 11 1120 170 1165 20 1202 50 1228 90 1254 80 1274 50 1351 50 1433 40 1598 20 1634 130 1635 110 1662 11 1663 16 1779 120 1843 80 2335 2 Name: rating_denominator, dtype: int64
abnormal_denominator.text
313 @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho 342 @docmisterio account started on 11/15/15 433 The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd 516 Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx 902 Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE 1068 After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ 1120 Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv 1165 Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a 1202 This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq 1228 Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 1254 Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 1274 From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK 1351 Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa 1433 Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ 1598 Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating 1634 Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 1635 Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 1662 This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 1663 I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible 1779 IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq 1843 Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw 2335 This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv Name: text, dtype: object
# Correct ratings by reading through the text, most of the abnormal ratings are associated with multiple dogs.
# tweet_id: 666287406224695296
clean_TA.loc[clean_TA.tweet_id == 666287406224695296, 'rating_numerator'] = 9
clean_TA.loc[clean_TA.tweet_id == 666287406224695296, 'rating_denominator'] = 10
# tweet_id: 697463031882764288 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 697463031882764288, 'rating_numerator'] = 11
clean_TA.loc[clean_TA.tweet_id == 697463031882764288, 'rating_denominator'] = 10
# tweet_id: 684222868335505415 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 684222868335505415, 'rating_numerator'] = 11
clean_TA.loc[clean_TA.tweet_id == 684222868335505415, 'rating_denominator'] = 10
# tweet_id: 682962037429899265
clean_TA.loc[clean_TA.tweet_id == 682962037429899265, 'rating_numerator'] = 10
clean_TA.loc[clean_TA.tweet_id == 682962037429899265, 'rating_denominator'] = 10
# tweet_id: 710658690886586372 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 710658690886586372, 'rating_numerator'] = 10
clean_TA.loc[clean_TA.tweet_id == 710658690886586372, 'rating_denominator'] = 10
# tweet_id: 713900603437621249 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 713900603437621249, 'rating_numerator'] = 11
clean_TA.loc[clean_TA.tweet_id == 713900603437621249, 'rating_denominator'] = 10
# tweet_id: 709198395643068416 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 709198395643068416, 'rating_numerator'] = 9
clean_TA.loc[clean_TA.tweet_id == 709198395643068416, 'rating_denominator'] = 10
# tweet_id: 722974582966214656
clean_TA.loc[clean_TA.tweet_id == 722974582966214656, 'rating_numerator'] = 13
clean_TA.loc[clean_TA.tweet_id == 722974582966214656, 'rating_denominator'] = 10
# tweet_id: 716439118184652801
clean_TA.loc[clean_TA.tweet_id == 716439118184652801, 'rating_numerator'] = 11
clean_TA.loc[clean_TA.tweet_id == 716439118184652801, 'rating_denominator'] = 10
# tweet_id: 704054845121142784 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 704054845121142784, 'rating_numerator'] = 12
clean_TA.loc[clean_TA.tweet_id == 704054845121142784, 'rating_denominator'] = 10
# tweet_id: 677716515794329600 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 677716515794329600, 'rating_numerator'] = 12
clean_TA.loc[clean_TA.tweet_id == 677716515794329600, 'rating_denominator'] = 10
# tweet_id: 675853064436391936 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 675853064436391936, 'rating_numerator'] = 11
clean_TA.loc[clean_TA.tweet_id == 675853064436391936, 'rating_denominator'] = 10
# tweet_id: 810984652412424192 no rating
clean_TA.loc[clean_TA.tweet_id == 810984652412424192, 'rating_numerator'] = 10
clean_TA.loc[clean_TA.tweet_id == 810984652412424192, 'rating_denominator'] = 10
# tweet_id: 820690176645140481 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 820690176645140481, 'rating_numerator'] = 12
clean_TA.loc[clean_TA.tweet_id == 820690176645140481, 'rating_denominator'] = 10
# tweet_id: 731156023742988288 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 731156023742988288, 'rating_numerator'] = 12
clean_TA.loc[clean_TA.tweet_id == 731156023742988288, 'rating_denominator'] = 10
# tweet_id: 758467244762497024 --- Multiple dogs
clean_TA.loc[clean_TA.tweet_id == 758467244762497024, 'rating_numerator'] = 11
clean_TA.loc[clean_TA.tweet_id == 758467244762497024, 'rating_denominator'] = 10
# tweet_id: 740373189193256964
clean_TA.loc[clean_TA.tweet_id == 740373189193256964, 'rating_numerator'] = 14
clean_TA.loc[clean_TA.tweet_id == 740373189193256964, 'rating_denominator'] = 10
#tweet_id:835246439529840640
clean_TA.loc[clean_TA.tweet_id == 835246439529840640, 'rating_numerator'] = 13
clean_TA.loc[clean_TA.tweet_id == 835246439529840640, 'rating_denominator'] = 10
#tweet_id:775096608509886464
clean_TA.loc[clean_TA.tweet_id == 775096608509886464, 'rating_numerator'] = 14
clean_TA.loc[clean_TA.tweet_id == 775096608509886464, 'rating_denominator'] = 10
#tweet_id:832088576586297345
clean_TA.loc[clean_TA.tweet_id == 832088576586297345, 'rating_denominator'] = 10
#tweet_id:686035780142297088
clean_TA.loc[clean_TA.tweet_id == 686035780142297088, 'rating_denominator'] = 10
#tweet_id:684225744407494656
clean_TA.loc[clean_TA.tweet_id == 684225744407494656, 'rating_denominator'] = 10
#tweet_id:682808988178739200
clean_TA.loc[clean_TA.tweet_id == 682808988178739200, 'rating_denominator'] = 10
clean_TA.rating_denominator
clean_TA.query('rating_denominator != 10')
#oops!! seems like we were unable to capture all for the denominator column, we will have to run the code above again
#and include the tweet id's below
# we will replace all the denominators , since its meant to be 10, for the numerator we will calculate the mean of the correct
# and replace the absurd values with the mean by creating a new dataframe excluding those ones.
| tweet_id | timestamp | text | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo |
|---|
As seen above after replacing all the denominator values with 10 , there are no more dirty data in the denominator column
#Capturing decimal values in the rating_numerator column
ratings = clean_TA.text.str.extract('((?:\d+\.)?\d+)\/(\d+)', expand=True)
#removing decimal values
decimals = clean_TA[~clean_TA.isin(ratings)]
#testing the removals
ratings
| 0 | 1 | |
|---|---|---|
| 0 | 13 | 10 |
| 1 | 13 | 10 |
| 2 | 12 | 10 |
| 3 | 13 | 10 |
| 4 | 12 | 10 |
| 5 | 13 | 10 |
| 6 | 13 | 10 |
| 7 | 13 | 10 |
| 8 | 13 | 10 |
| 9 | 14 | 10 |
| 10 | 13 | 10 |
| 11 | 13 | 10 |
| 12 | 13 | 10 |
| 13 | 12 | 10 |
| 14 | 13 | 10 |
| 15 | 13 | 10 |
| 16 | 12 | 10 |
| 17 | 13 | 10 |
| 18 | 13 | 10 |
| 20 | 12 | 10 |
| 21 | 13 | 10 |
| 22 | 14 | 10 |
| 23 | 13 | 10 |
| 24 | 13 | 10 |
| 25 | 12 | 10 |
| 26 | 13 | 10 |
| 27 | 13 | 10 |
| 28 | 13 | 10 |
| 29 | 12 | 10 |
| 30 | 12 | 10 |
| 31 | 13 | 10 |
| 33 | 12 | 10 |
| 34 | 13 | 10 |
| 35 | 14 | 10 |
| 37 | 13 | 10 |
| 38 | 12 | 10 |
| 39 | 13 | 10 |
| 40 | 13 | 10 |
| 41 | 14 | 10 |
| 42 | 13 | 10 |
| 43 | 12 | 10 |
| 44 | 12 | 10 |
| 45 | 13.5 | 10 |
| 46 | 13 | 10 |
| 47 | 13 | 10 |
| 48 | 13 | 10 |
| 49 | 12 | 10 |
| 50 | 13 | 10 |
| 51 | 13 | 10 |
| 52 | 13 | 10 |
| 53 | 12 | 10 |
| 54 | 13 | 10 |
| 55 | 17 | 10 |
| 56 | 14 | 10 |
| 57 | 12 | 10 |
| 58 | 13 | 10 |
| 59 | 12 | 10 |
| 60 | 12 | 10 |
| 61 | 12 | 10 |
| 62 | 11 | 10 |
| 63 | 13 | 10 |
| 64 | 14 | 10 |
| 65 | 12 | 10 |
| 66 | 13 | 10 |
| 67 | 12 | 10 |
| 69 | 11 | 10 |
| 70 | 13 | 10 |
| 71 | 13 | 10 |
| 72 | 13 | 10 |
| 75 | 13 | 10 |
| 76 | 14 | 10 |
| 77 | 13 | 10 |
| 79 | 12 | 10 |
| 80 | 13 | 10 |
| 81 | 12 | 10 |
| 82 | 12 | 10 |
| 83 | 14 | 10 |
| 84 | 13 | 10 |
| 85 | 13 | 10 |
| 86 | 13 | 10 |
| 87 | 13 | 10 |
| 88 | 13 | 10 |
| 89 | 12 | 10 |
| 90 | 12 | 10 |
| 92 | 13 | 10 |
| 93 | 12 | 10 |
| 94 | 13 | 10 |
| 96 | 13 | 10 |
| 98 | 12 | 10 |
| 99 | 12 | 10 |
| 100 | 13 | 10 |
| 102 | 13 | 10 |
| 103 | 12 | 10 |
| 104 | 13 | 10 |
| 105 | 12 | 10 |
| 106 | 13 | 10 |
| 107 | 12 | 10 |
| 108 | 12 | 10 |
| 110 | 14 | 10 |
| 111 | 13 | 10 |
| 112 | 11 | 10 |
| 113 | 10 | 10 |
| 114 | 13 | 10 |
| 115 | 13 | 10 |
| 116 | 13 | 10 |
| 117 | 14 | 10 |
| 119 | 13 | 10 |
| 120 | 13 | 10 |
| 121 | 12 | 10 |
| 122 | 13 | 10 |
| 123 | 14 | 10 |
| 125 | 13 | 10 |
| 126 | 12 | 10 |
| 127 | 12 | 10 |
| 128 | 13 | 10 |
| 129 | 12 | 10 |
| 131 | 13 | 10 |
| 133 | 13 | 10 |
| 134 | 12 | 10 |
| 135 | 13 | 10 |
| 136 | 12 | 10 |
| 138 | 13 | 10 |
| 139 | 13 | 10 |
| 140 | 13 | 10 |
| 141 | 14 | 10 |
| 142 | 12 | 10 |
| 143 | 13 | 10 |
| 144 | 13 | 10 |
| 145 | 13 | 10 |
| 147 | 12 | 10 |
| 148 | 12 | 10 |
| 149 | 14 | 10 |
| 150 | 13 | 10 |
| 151 | 13 | 10 |
| 152 | 11 | 10 |
| 153 | 13 | 10 |
| 154 | 13 | 10 |
| 156 | 13 | 10 |
| 157 | 13 | 10 |
| 158 | 12 | 10 |
| 161 | 13 | 10 |
| 162 | 13 | 10 |
| 163 | 12 | 10 |
| 164 | 14 | 10 |
| 166 | 12 | 10 |
| 167 | 13 | 10 |
| 168 | 13 | 10 |
| 169 | 12 | 10 |
| 170 | 13 | 10 |
| 172 | 13 | 10 |
| 173 | 13 | 10 |
| 174 | 12 | 10 |
| 175 | 12 | 10 |
| 176 | 13 | 10 |
| 177 | 13 | 10 |
| 178 | 13 | 10 |
| 179 | 12 | 10 |
| 181 | 12 | 10 |
| 183 | 12 | 10 |
| 184 | 14 | 10 |
| 186 | 14 | 10 |
| 187 | 14 | 10 |
| 188 | 420 | 10 |
| 189 | 666 | 10 |
| 190 | 13 | 10 |
| 191 | 13 | 10 |
| 192 | 13 | 10 |
| 193 | 12 | 10 |
| 196 | 12 | 10 |
| 197 | 13 | 10 |
| 198 | 13 | 10 |
| 199 | 14 | 10 |
| 200 | 11 | 10 |
| 201 | 12 | 10 |
| 202 | 13 | 10 |
| 203 | 13 | 10 |
| 205 | 12 | 10 |
| 206 | 12 | 10 |
| 207 | 13 | 10 |
| 208 | 13 | 10 |
| 209 | 14 | 10 |
| 210 | 12 | 10 |
| 213 | 11 | 10 |
| 214 | 14 | 10 |
| 215 | 13 | 10 |
| 216 | 11 | 10 |
| 217 | 13 | 10 |
| 218 | 13 | 10 |
| 219 | 11 | 10 |
| 220 | 12 | 10 |
| 221 | 12 | 10 |
| 223 | 12 | 10 |
| 224 | 11 | 10 |
| 225 | 13 | 10 |
| 226 | 12 | 10 |
| 227 | 12 | 10 |
| 228 | 11 | 10 |
| 229 | 6 | 10 |
| 232 | 10 | 10 |
| 233 | 12 | 10 |
| 234 | 13 | 10 |
| 235 | 12 | 10 |
| 236 | 12 | 10 |
| 237 | 11 | 10 |
| 238 | 11 | 10 |
| 239 | 13 | 10 |
| 240 | 13 | 10 |
| 241 | 11 | 10 |
| 242 | 13 | 10 |
| 243 | 13 | 10 |
| 244 | 12 | 10 |
| 245 | 13 | 10 |
| 246 | 12 | 10 |
| 248 | 13 | 10 |
| 249 | 12 | 10 |
| 251 | 13 | 10 |
| 252 | 12 | 10 |
| 253 | 13 | 10 |
| 254 | 11 | 10 |
| 255 | 12 | 10 |
| 256 | 13 | 10 |
| 257 | 12 | 10 |
| 258 | 11 | 10 |
| 259 | 13 | 10 |
| 261 | 13 | 10 |
| 262 | 12 | 10 |
| 263 | 13 | 10 |
| 264 | 12 | 10 |
| 265 | 12 | 10 |
| 267 | 12 | 10 |
| 268 | 14 | 10 |
| 269 | 12 | 10 |
| 270 | 13 | 10 |
| 271 | 12 | 10 |
| 274 | 10 | 10 |
| 275 | 10 | 10 |
| 276 | 12 | 10 |
| 277 | 13 | 10 |
| 278 | 12 | 10 |
| 279 | 13 | 10 |
| 280 | 12 | 10 |
| 282 | 13 | 10 |
| 283 | 13 | 10 |
| 284 | 13 | 10 |
| 287 | 13 | 10 |
| 288 | 13 | 10 |
| 290 | 182 | 10 |
| 291 | 15 | 10 |
| 292 | 13 | 10 |
| 293 | 12 | 10 |
| 294 | 13 | 10 |
| 295 | 12 | 10 |
| 296 | 13 | 10 |
| 297 | 13 | 10 |
| 299 | 12 | 10 |
| 300 | 12 | 10 |
| 301 | 11 | 10 |
| 304 | 12 | 10 |
| 305 | 13 | 10 |
| 306 | 13 | 10 |
| 308 | 11 | 10 |
| 311 | 12 | 10 |
| 312 | 12 | 10 |
| 313 | 960 | 00 |
| 314 | 12 | 10 |
| 315 | 0 | 10 |
| 316 | 12 | 10 |
| 317 | 13 | 10 |
| 318 | 13 | 10 |
| 320 | 12 | 10 |
| 321 | 12 | 10 |
| 322 | 11 | 10 |
| 323 | 10 | 10 |
| 324 | 12 | 10 |
| 325 | 12 | 10 |
| 326 | 13 | 10 |
| 328 | 13 | 10 |
| 329 | 13 | 10 |
| 330 | 12 | 10 |
| 331 | 13 | 10 |
| 333 | 13 | 10 |
| 334 | 13 | 10 |
| 335 | 10 | 10 |
| 336 | 12 | 10 |
| 337 | 12 | 10 |
| 338 | 11 | 10 |
| 339 | 14 | 10 |
| 342 | 11 | 15 |
| 344 | 12 | 10 |
| 345 | 12 | 10 |
| 346 | 12 | 10 |
| 347 | 14 | 10 |
| 348 | 13 | 10 |
| 349 | 13 | 10 |
| 350 | 13 | 10 |
| 351 | 12 | 10 |
| 352 | 13 | 10 |
| 353 | 12 | 10 |
| 354 | 12 | 10 |
| 355 | 12 | 10 |
| 356 | 13 | 10 |
| 358 | 13 | 10 |
| 360 | 12 | 10 |
| 361 | 12 | 10 |
| 362 | 11 | 10 |
| 363 | 13 | 10 |
| 364 | 12 | 10 |
| 365 | 13 | 10 |
| 367 | 13 | 10 |
| 368 | 10 | 10 |
| 369 | 14 | 10 |
| 370 | 12 | 10 |
| 371 | 12 | 10 |
| 372 | 14 | 10 |
| 373 | 13 | 10 |
| 374 | 12 | 10 |
| 375 | 12 | 10 |
| 376 | 13 | 10 |
| 377 | 11 | 10 |
| 378 | 12 | 10 |
| 379 | 12 | 10 |
| 380 | 13 | 10 |
| 381 | 12 | 10 |
| 383 | 13 | 10 |
| 384 | 12 | 10 |
| 385 | 13 | 10 |
| 387 | 007 | 10 |
| 388 | 13 | 10 |
| 389 | 12 | 10 |
| 390 | 11 | 10 |
| 391 | 13 | 10 |
| 392 | 13 | 10 |
| 393 | 11 | 10 |
| 394 | 12 | 10 |
| 395 | 14 | 10 |
| 396 | 13 | 10 |
| 398 | 12 | 10 |
| 400 | 12 | 10 |
| 401 | 13 | 10 |
| 402 | 13 | 10 |
| 403 | 11 | 10 |
| 404 | 14 | 10 |
| 405 | 12 | 10 |
| 407 | 12 | 10 |
| 408 | 11 | 10 |
| 409 | 13 | 10 |
| 410 | 11 | 10 |
| 412 | 12 | 10 |
| 413 | 13 | 10 |
| 414 | 12 | 10 |
| 416 | 12 | 10 |
| 417 | 13 | 10 |
| 418 | 14 | 10 |
| 419 | 11 | 10 |
| 421 | 13 | 10 |
| 423 | 13 | 10 |
| 424 | 13 | 10 |
| 426 | 14 | 10 |
| 427 | 13 | 10 |
| 428 | 12 | 10 |
| 429 | 11 | 10 |
| 430 | 12 | 10 |
| 432 | 13 | 10 |
| 433 | 84 | 70 |
| 436 | 14 | 10 |
| 437 | 12 | 10 |
| 439 | 13 | 10 |
| 440 | 11 | 10 |
| 441 | 11 | 10 |
| 442 | 13 | 10 |
| 443 | 12 | 10 |
| 444 | 10 | 10 |
| 445 | 12 | 10 |
| 448 | 14 | 10 |
| 449 | 14 | 10 |
| 451 | 13 | 10 |
| 452 | 12 | 10 |
| 454 | 11 | 10 |
| 456 | 12 | 10 |
| 457 | 11 | 10 |
| 458 | 12 | 10 |
| 459 | 13 | 10 |
| 460 | 13 | 10 |
| 461 | 12 | 10 |
| 463 | 13 | 10 |
| 464 | 11 | 10 |
| 466 | 13 | 10 |
| 467 | 13 | 10 |
| 468 | 11 | 10 |
| 470 | 12 | 10 |
| 471 | 12 | 10 |
| 472 | 13 | 10 |
| 473 | 11 | 10 |
| 474 | 12 | 10 |
| 477 | 11 | 10 |
| 478 | 13 | 10 |
| 480 | 11 | 10 |
| 481 | 12 | 10 |
| 482 | 13 | 10 |
| 483 | 11 | 10 |
| 484 | 12 | 10 |
| 486 | 12 | 10 |
| 487 | 12 | 10 |
| 489 | 11 | 10 |
| 490 | 14 | 10 |
| 491 | 12 | 10 |
| 492 | 13 | 10 |
| 493 | 11 | 10 |
| 494 | 13 | 10 |
| 495 | 12 | 10 |
| 496 | 12 | 10 |
| 497 | 13 | 10 |
| 498 | 12 | 10 |
| 499 | 11 | 10 |
| 500 | 12 | 10 |
| 501 | 11 | 10 |
| 502 | 11 | 10 |
| 503 | 12 | 10 |
| 504 | 13 | 10 |
| 505 | 10 | 10 |
| 507 | 12 | 10 |
| 508 | 13 | 10 |
| 509 | 12 | 10 |
| 510 | 13 | 10 |
| 511 | 11 | 10 |
| 512 | 13 | 10 |
| 513 | 11 | 10 |
| 514 | 10 | 10 |
| 515 | 11 | 10 |
| 516 | 24 | 7 |
| 517 | 11 | 10 |
| 518 | 11 | 10 |
| 519 | 13 | 10 |
| 520 | 12 | 10 |
| 521 | 10 | 10 |
| 523 | 12 | 10 |
| 524 | 12 | 10 |
| 525 | 11 | 10 |
| 526 | 13 | 10 |
| 527 | 12 | 10 |
| 528 | 12 | 10 |
| 529 | 11 | 10 |
| 531 | 12 | 10 |
| 532 | 12 | 10 |
| 533 | 14 | 10 |
| 534 | 13 | 10 |
| 536 | 12 | 10 |
| 537 | 13 | 10 |
| 539 | 13 | 10 |
| 540 | 11 | 10 |
| 542 | 11 | 10 |
| 544 | 12 | 10 |
| 545 | 12 | 10 |
| 547 | 13 | 10 |
| 548 | 12 | 10 |
| 549 | 12 | 10 |
| 550 | 12 | 10 |
| 551 | 13 | 10 |
| 553 | 13 | 10 |
| 554 | 12 | 10 |
| 556 | 13 | 10 |
| 557 | 12 | 10 |
| 559 | 11 | 10 |
| 560 | 12 | 10 |
| 562 | 11 | 10 |
| 563 | 12 | 10 |
| 564 | 13 | 10 |
| 565 | 11 | 10 |
| 567 | 12 | 10 |
| 569 | 12 | 10 |
| 570 | 11 | 10 |
| 571 | 12 | 10 |
| 572 | 10 | 10 |
| 573 | 13 | 10 |
| 575 | 12 | 10 |
| 576 | 11 | 10 |
| 578 | 12 | 10 |
| 579 | 11 | 10 |
| 580 | 12 | 10 |
| 582 | 12 | 10 |
| 584 | 13 | 10 |
| 585 | 11 | 10 |
| 587 | 13 | 10 |
| 588 | 12 | 10 |
| 590 | 11 | 10 |
| 591 | 11 | 10 |
| 592 | 12 | 10 |
| 593 | 11 | 10 |
| 607 | 13 | 10 |
| 608 | 12 | 10 |
| 609 | 12 | 10 |
| 610 | 12 | 10 |
| 611 | 11 | 10 |
| 613 | 12 | 10 |
| 614 | 11 | 10 |
| 616 | 12 | 10 |
| 617 | 12 | 10 |
| 619 | 11 | 10 |
| 620 | 13 | 10 |
| 621 | 11 | 10 |
| 622 | 12 | 10 |
| 623 | 13 | 10 |
| 624 | 13 | 10 |
| 625 | 12 | 10 |
| 626 | 11 | 10 |
| 628 | 12 | 10 |
| 630 | 12 | 10 |
| 631 | 14 | 10 |
| 632 | 12 | 10 |
| 633 | 13 | 10 |
| 635 | 12 | 10 |
| 636 | 12 | 10 |
| 637 | 13 | 10 |
| 638 | 12 | 10 |
| 639 | 12 | 10 |
| 640 | 13 | 10 |
| 641 | 11 | 10 |
| 642 | 10 | 10 |
| 643 | 12 | 10 |
| 644 | 11 | 10 |
| 645 | 12 | 10 |
| 646 | 11 | 10 |
| 647 | 13 | 10 |
| 648 | 11 | 10 |
| 649 | 13 | 10 |
| 650 | 12 | 10 |
| 651 | 12 | 10 |
| 652 | 12 | 10 |
| 653 | 11 | 10 |
| 657 | 14 | 10 |
| 658 | 13 | 10 |
| 659 | 12 | 10 |
| 660 | 12 | 10 |
| 662 | 12 | 10 |
| 663 | 12 | 10 |
| 665 | 12 | 10 |
| 666 | 11 | 10 |
| 667 | 12 | 10 |
| 668 | 11 | 10 |
| 670 | 12 | 10 |
| 672 | 13 | 10 |
| 673 | 13 | 10 |
| 674 | 12 | 10 |
| 675 | 12 | 10 |
| 676 | 13 | 10 |
| 678 | 10 | 10 |
| 679 | 12 | 10 |
| 680 | 11 | 10 |
| 681 | 12 | 10 |
| 683 | 11 | 10 |
| 684 | 13 | 10 |
| 685 | 13 | 10 |
| 687 | 12 | 10 |
| 688 | 11 | 10 |
| 689 | 13 | 10 |
| 690 | 11 | 10 |
| 691 | 10 | 10 |
| 693 | 12 | 10 |
| 695 | 9.75 | 10 |
| 696 | 12 | 10 |
| 697 | 11 | 10 |
| 698 | 13 | 10 |
| 699 | 12 | 10 |
| 700 | 11 | 10 |
| 701 | 13 | 10 |
| 703 | 12 | 10 |
| 704 | 12 | 10 |
| 705 | 10 | 10 |
| 706 | 11 | 10 |
| 707 | 10 | 10 |
| 708 | 12 | 10 |
| 709 | 11 | 10 |
| 710 | 13 | 10 |
| 711 | 11 | 10 |
| 712 | 12 | 10 |
| 713 | 12 | 10 |
| 714 | 12 | 10 |
| 715 | 13 | 10 |
| 716 | 12 | 10 |
| 717 | 12 | 10 |
| 718 | 11 | 10 |
| 719 | 13 | 10 |
| 721 | 12 | 10 |
| 722 | 11 | 10 |
| 723 | 12 | 10 |
| 724 | 11 | 10 |
| 725 | 10 | 10 |
| 726 | 11 | 10 |
| 727 | 12 | 10 |
| 729 | 11 | 10 |
| 730 | 5 | 10 |
| 731 | 11 | 10 |
| 732 | 12 | 10 |
| 733 | 12 | 10 |
| 734 | 11 | 10 |
| 735 | 10 | 10 |
| 736 | 13 | 10 |
| 737 | 10 | 10 |
| 738 | 11 | 10 |
| 739 | 12 | 10 |
| 740 | 12 | 10 |
| 743 | 11 | 10 |
| 744 | 11 | 10 |
| 746 | 10 | 10 |
| 747 | 11 | 10 |
| 748 | 12 | 10 |
| 750 | 12 | 10 |
| 751 | 13 | 10 |
| 752 | 11 | 10 |
| 754 | 13 | 10 |
| 755 | 11 | 10 |
| 756 | 10 | 10 |
| 757 | 11 | 10 |
| 758 | 14 | 10 |
| 760 | 13 | 10 |
| 761 | 11 | 10 |
| 762 | 12 | 10 |
| 763 | 11.27 | 10 |
| 765 | 3 | 10 |
| 766 | 12 | 10 |
| 768 | 12 | 10 |
| 769 | 12 | 10 |
| 771 | 12 | 10 |
| 772 | 11 | 10 |
| 774 | 13 | 10 |
| 775 | 10 | 10 |
| 776 | 11 | 10 |
| 777 | 10 | 10 |
| 779 | 12 | 10 |
| 780 | 11 | 10 |
| 781 | 13 | 10 |
| 782 | 11 | 10 |
| 783 | 12 | 10 |
| 785 | 13 | 10 |
| 786 | 12 | 10 |
| 787 | 10 | 10 |
| 788 | 14 | 10 |
| 789 | 11 | 10 |
| 790 | 12 | 10 |
| 791 | 12 | 10 |
| 792 | 10 | 10 |
| 793 | 11 | 10 |
| 795 | 12 | 10 |
| 796 | 10 | 10 |
| 797 | 12 | 10 |
| 798 | 11 | 10 |
| 799 | 11 | 10 |
| 801 | 10 | 10 |
| 802 | 12 | 10 |
| 803 | 10 | 10 |
| 804 | 12 | 10 |
| 805 | 10 | 10 |
| 806 | 11 | 10 |
| 807 | 13 | 10 |
| 808 | 11 | 10 |
| 809 | 12 | 10 |
| 810 | 11 | 10 |
| 812 | 11 | 10 |
| 813 | 12 | 10 |
| 814 | 7 | 10 |
| 816 | 10 | 10 |
| 817 | 11 | 10 |
| 819 | 11 | 10 |
| 820 | 11 | 10 |
| 821 | 10 | 10 |
| 823 | 10 | 10 |
| 824 | 12 | 10 |
| 825 | 13 | 10 |
| 827 | 12 | 10 |
| 828 | 12 | 10 |
| 830 | 11 | 10 |
| 831 | 10 | 10 |
| 832 | 12 | 10 |
| 834 | 11 | 10 |
| 835 | 8 | 10 |
| 836 | 10 | 10 |
| 837 | 11 | 10 |
| 838 | 12 | 10 |
| 839 | 13 | 10 |
| 840 | 13 | 10 |
| 842 | 10 | 10 |
| 843 | 13 | 10 |
| 844 | 11 | 10 |
| 845 | 9 | 10 |
| 846 | 12 | 10 |
| 848 | 12 | 10 |
| 849 | 11 | 10 |
| 850 | 12 | 10 |
| 851 | 12 | 10 |
| 852 | 13 | 10 |
| 853 | 11 | 10 |
| 854 | 10 | 10 |
| 855 | 12 | 10 |
| 856 | 10 | 10 |
| 857 | 12 | 10 |
| 858 | 11 | 10 |
| 859 | 8 | 10 |
| 861 | 10 | 10 |
| 862 | 11 | 10 |
| 863 | 12 | 10 |
| 864 | 12 | 10 |
| 865 | 11 | 10 |
| 866 | 14 | 10 |
| 867 | 12 | 10 |
| 869 | 11 | 10 |
| 870 | 10 | 10 |
| 871 | 11 | 10 |
| 873 | 10 | 10 |
| 874 | 11 | 10 |
| 875 | 10 | 10 |
| 876 | 11 | 10 |
| 877 | 11 | 10 |
| 878 | 11 | 10 |
| 879 | 12 | 10 |
| 880 | 12 | 10 |
| 881 | 12 | 10 |
| 882 | 13 | 10 |
| 883 | 4 | 10 |
| 884 | 10 | 10 |
| 886 | 12 | 10 |
| 887 | 10 | 10 |
| 888 | 11 | 10 |
| 889 | 12 | 10 |
| 891 | 10 | 10 |
| 892 | 11 | 10 |
| 893 | 10 | 10 |
| 894 | 12 | 10 |
| 896 | 7 | 10 |
| 897 | 11 | 10 |
| 898 | 11 | 10 |
| 899 | 13 | 10 |
| 900 | 12 | 10 |
| 901 | 11 | 10 |
| 902 | 165 | 150 |
| 903 | 10 | 10 |
| 904 | 11 | 10 |
| 905 | 13 | 10 |
| 906 | 9 | 10 |
| 907 | 10 | 10 |
| 909 | 11 | 10 |
| 910 | 12 | 10 |
| 912 | 4 | 10 |
| 913 | 13 | 10 |
| 914 | 10 | 10 |
| 915 | 8 | 10 |
| 916 | 11 | 10 |
| 917 | 12 | 10 |
| 918 | 11 | 10 |
| 919 | 13 | 10 |
| 920 | 11 | 10 |
| 921 | 12 | 10 |
| 922 | 10 | 10 |
| 923 | 12 | 10 |
| 924 | 14 | 10 |
| 925 | 13 | 10 |
| 927 | 11 | 10 |
| 928 | 12 | 10 |
| 929 | 10 | 10 |
| 930 | 11 | 10 |
| 931 | 10 | 10 |
| 932 | 12 | 10 |
| 933 | 10 | 10 |
| 934 | 11 | 10 |
| 935 | 12 | 10 |
| 936 | 8 | 10 |
| 938 | 11 | 10 |
| 939 | 13 | 10 |
| 940 | 10 | 10 |
| 941 | 12 | 10 |
| 942 | 11 | 10 |
| 944 | 10 | 10 |
| 945 | 10 | 10 |
| 946 | 9 | 10 |
| 947 | 11 | 10 |
| 948 | 8 | 10 |
| 950 | 12 | 10 |
| 951 | 13 | 10 |
| 952 | 11 | 10 |
| 953 | 12 | 10 |
| 954 | 11 | 10 |
| 955 | 13 | 10 |
| 956 | 5 | 10 |
| 957 | 10 | 10 |
| 958 | 12 | 10 |
| 959 | 10 | 10 |
| 960 | 12 | 10 |
| 961 | 10 | 10 |
| 962 | 11 | 10 |
| 963 | 12 | 10 |
| 964 | 8 | 10 |
| 965 | 12 | 10 |
| 966 | 9 | 10 |
| 967 | 13 | 10 |
| 968 | 13 | 10 |
| 969 | 11 | 10 |
| 970 | 10 | 10 |
| 971 | 11 | 10 |
| 972 | 12 | 10 |
| 973 | 10 | 10 |
| 974 | 11 | 10 |
| 975 | 13 | 10 |
| 976 | 10 | 10 |
| 977 | 11 | 10 |
| 978 | 12 | 10 |
| 979 | 1776 | 10 |
| 980 | 12 | 10 |
| 981 | 11 | 10 |
| 982 | 10 | 10 |
| 983 | 10 | 10 |
| 984 | 12 | 10 |
| 985 | 11 | 10 |
| 986 | 11 | 10 |
| 987 | 8 | 10 |
| 988 | 10 | 10 |
| 989 | 13 | 10 |
| 990 | 13 | 10 |
| 991 | 11 | 10 |
| 992 | 10 | 10 |
| 993 | 6 | 10 |
| 994 | 12 | 10 |
| 995 | 10 | 10 |
| 996 | 13 | 10 |
| 997 | 11 | 10 |
| 998 | 7 | 10 |
| 999 | 13 | 10 |
| 1000 | 10 | 10 |
| 1001 | 11 | 10 |
| 1002 | 8 | 10 |
| 1003 | 11 | 10 |
| 1004 | 4 | 10 |
| 1005 | 12 | 10 |
| 1006 | 12 | 10 |
| 1007 | 10 | 10 |
| 1008 | 11 | 10 |
| 1009 | 10 | 10 |
| 1010 | 10 | 10 |
| 1011 | 12 | 10 |
| 1013 | 11 | 10 |
| 1014 | 10 | 10 |
| 1015 | 11 | 10 |
| 1016 | 0 | 10 |
| 1017 | 11 | 10 |
| 1018 | 13 | 10 |
| 1019 | 10 | 10 |
| 1020 | 11 | 10 |
| 1021 | 12 | 10 |
| 1022 | 11 | 10 |
| 1024 | 10 | 10 |
| 1025 | 9 | 10 |
| 1026 | 10 | 10 |
| 1027 | 11 | 10 |
| 1028 | 10 | 10 |
| 1029 | 7 | 10 |
| 1030 | 10 | 10 |
| 1031 | 9 | 10 |
| 1032 | 12 | 10 |
| 1033 | 11 | 10 |
| 1034 | 12 | 10 |
| 1035 | 9 | 10 |
| 1036 | 12 | 10 |
| 1037 | 10 | 10 |
| 1038 | 11 | 10 |
| 1039 | 13 | 10 |
| 1040 | 12 | 10 |
| 1041 | 11 | 10 |
| 1042 | 10 | 10 |
| 1044 | 10 | 10 |
| 1045 | 7 | 10 |
| 1046 | 11 | 10 |
| 1047 | 13 | 10 |
| 1048 | 10 | 10 |
| 1049 | 12 | 10 |
| 1050 | 10 | 10 |
| 1051 | 11 | 10 |
| 1052 | 10 | 10 |
| 1053 | 14 | 10 |
| 1054 | 12 | 10 |
| 1055 | 11 | 10 |
| 1056 | 12 | 10 |
| 1057 | 8 | 10 |
| 1058 | 10 | 10 |
| 1059 | 11 | 10 |
| 1060 | 9 | 10 |
| 1061 | 12 | 10 |
| 1062 | 11 | 10 |
| 1063 | 12 | 10 |
| 1064 | 10 | 10 |
| 1065 | 9 | 10 |
| 1066 | 8 | 10 |
| 1067 | 11 | 10 |
| 1068 | 9 | 11 |
| 1069 | 10 | 10 |
| 1070 | 9 | 10 |
| 1071 | 10 | 10 |
| 1072 | 12 | 10 |
| 1073 | 10 | 10 |
| 1074 | 12 | 10 |
| 1075 | 12 | 10 |
| 1076 | 9 | 10 |
| 1077 | 10 | 10 |
| 1078 | 6 | 10 |
| 1079 | 13 | 10 |
| 1080 | 13 | 10 |
| 1081 | 11 | 10 |
| 1082 | 10 | 10 |
| 1083 | 11 | 10 |
| 1084 | 10 | 10 |
| 1085 | 9 | 10 |
| 1086 | 12 | 10 |
| 1087 | 10 | 10 |
| 1088 | 10 | 10 |
| 1089 | 10 | 10 |
| 1090 | 11 | 10 |
| 1091 | 13 | 10 |
| 1092 | 9 | 10 |
| 1093 | 13 | 10 |
| 1094 | 13 | 10 |
| 1095 | 13 | 10 |
| 1096 | 11 | 10 |
| 1097 | 10 | 10 |
| 1098 | 10 | 10 |
| 1099 | 11 | 10 |
| 1100 | 12 | 10 |
| 1101 | 11 | 10 |
| 1102 | 11 | 10 |
| 1103 | 8 | 10 |
| 1104 | 9 | 10 |
| 1105 | 10 | 10 |
| 1106 | 13 | 10 |
| 1107 | 11 | 10 |
| 1108 | 10 | 10 |
| 1109 | 10 | 10 |
| 1110 | 10 | 10 |
| 1111 | 10 | 10 |
| 1112 | 11 | 10 |
| 1113 | 12 | 10 |
| 1114 | 12 | 10 |
| 1115 | 11 | 10 |
| 1116 | 10 | 10 |
| 1117 | 11 | 10 |
| 1118 | 11 | 10 |
| 1119 | 12 | 10 |
| 1120 | 204 | 170 |
| 1121 | 9 | 10 |
| 1122 | 10 | 10 |
| 1123 | 11 | 10 |
| 1124 | 11 | 10 |
| 1125 | 6 | 10 |
| 1126 | 11 | 10 |
| 1127 | 12 | 10 |
| 1128 | 13 | 10 |
| 1129 | 13 | 10 |
| 1130 | 10 | 10 |
| 1131 | 11 | 10 |
| 1132 | 13 | 10 |
| 1133 | 10 | 10 |
| 1134 | 8 | 10 |
| 1135 | 10 | 10 |
| 1136 | 12 | 10 |
| 1137 | 11 | 10 |
| 1138 | 12 | 10 |
| 1139 | 11 | 10 |
| 1140 | 12 | 10 |
| 1141 | 13 | 10 |
| 1142 | 10 | 10 |
| 1143 | 11 | 10 |
| 1144 | 9 | 10 |
| 1145 | 10 | 10 |
| 1146 | 11 | 10 |
| 1147 | 12 | 10 |
| 1148 | 10 | 10 |
| 1149 | 12 | 10 |
| 1150 | 9 | 10 |
| 1151 | 12 | 10 |
| 1152 | 11 | 10 |
| 1153 | 12 | 10 |
| 1154 | 13 | 10 |
| 1155 | 12 | 10 |
| 1156 | 11 | 10 |
| 1157 | 10 | 10 |
| 1158 | 10 | 10 |
| 1159 | 10 | 10 |
| 1160 | 11 | 10 |
| 1161 | 12 | 10 |
| 1162 | 12 | 10 |
| 1163 | 10 | 10 |
| 1164 | 8 | 10 |
| 1165 | 4 | 20 |
| 1166 | 12 | 10 |
| 1167 | 11 | 10 |
| 1168 | 11 | 10 |
| 1169 | 12 | 10 |
| 1170 | 10 | 10 |
| 1171 | 10 | 10 |
| 1172 | 11 | 10 |
| 1173 | 10 | 10 |
| 1174 | 9 | 10 |
| 1175 | 11 | 10 |
| 1176 | 10 | 10 |
| 1177 | 12 | 10 |
| 1178 | 10 | 10 |
| 1179 | 11 | 10 |
| 1180 | 10 | 10 |
| 1181 | 11 | 10 |
| 1182 | 10 | 10 |
| 1183 | 12 | 10 |
| 1184 | 10 | 10 |
| 1185 | 11 | 10 |
| 1186 | 10 | 10 |
| 1187 | 9 | 10 |
| 1188 | 13 | 10 |
| 1189 | 3 | 10 |
| 1190 | 11 | 10 |
| 1191 | 11 | 10 |
| 1192 | 10 | 10 |
| 1193 | 11 | 10 |
| 1194 | 11 | 10 |
| 1195 | 9 | 10 |
| 1196 | 12 | 10 |
| 1197 | 10 | 10 |
| 1198 | 10 | 10 |
| 1199 | 11 | 10 |
| 1200 | 12 | 10 |
| 1201 | 13 | 10 |
| 1202 | 50 | 50 |
| 1203 | 12 | 10 |
| 1204 | 11 | 10 |
| 1205 | 11 | 10 |
| 1206 | 13 | 10 |
| 1207 | 10 | 10 |
| 1208 | 11 | 10 |
| 1209 | 10 | 10 |
| 1210 | 12 | 10 |
| 1211 | 11 | 10 |
| 1212 | 10 | 10 |
| 1213 | 10 | 10 |
| 1214 | 12 | 10 |
| 1215 | 12 | 10 |
| 1216 | 9 | 10 |
| 1217 | 12 | 10 |
| 1218 | 10 | 10 |
| 1219 | 4 | 10 |
| 1220 | 12 | 10 |
| 1221 | 10 | 10 |
| 1222 | 10 | 10 |
| 1223 | 8 | 10 |
| 1224 | 13 | 10 |
| 1225 | 10 | 10 |
| 1226 | 12 | 10 |
| 1227 | 12 | 10 |
| 1228 | 99 | 90 |
| 1229 | 12 | 10 |
| 1230 | 11 | 10 |
| 1231 | 10 | 10 |
| 1232 | 10 | 10 |
| 1233 | 10 | 10 |
| 1234 | 10 | 10 |
| 1235 | 10 | 10 |
| 1236 | 11 | 10 |
| 1237 | 12 | 10 |
| 1238 | 10 | 10 |
| 1239 | 7 | 10 |
| 1240 | 11 | 10 |
| 1241 | 6 | 10 |
| 1243 | 10 | 10 |
| 1244 | 11 | 10 |
| 1245 | 10 | 10 |
| 1246 | 13 | 10 |
| 1247 | 9 | 10 |
| 1248 | 11 | 10 |
| 1249 | 3 | 10 |
| 1250 | 11 | 10 |
| 1251 | 12 | 10 |
| 1252 | 10 | 10 |
| 1253 | 12 | 10 |
| 1254 | 80 | 80 |
| 1255 | 12 | 10 |
| 1256 | 12 | 10 |
| 1257 | 12 | 10 |
| 1258 | 11 | 10 |
| 1259 | 11 | 10 |
| 1260 | 13 | 10 |
| 1261 | 11 | 10 |
| 1262 | 8 | 10 |
| 1263 | 11 | 10 |
| 1264 | 12 | 10 |
| 1265 | 12 | 10 |
| 1266 | 12 | 10 |
| 1267 | 12 | 10 |
| 1268 | 12 | 10 |
| 1269 | 9 | 10 |
| 1270 | 10 | 10 |
| 1271 | 8 | 10 |
| 1272 | 11 | 10 |
| 1273 | 11 | 10 |
| 1274 | 45 | 50 |
| 1275 | 13 | 10 |
| 1276 | 10 | 10 |
| 1277 | 9 | 10 |
| 1278 | 8 | 10 |
| 1279 | 9 | 10 |
| 1280 | 10 | 10 |
| 1281 | 10 | 10 |
| 1282 | 11 | 10 |
| 1283 | 11 | 10 |
| 1284 | 13 | 10 |
| 1285 | 11 | 10 |
| 1286 | 12 | 10 |
| 1287 | 10 | 10 |
| 1288 | 11 | 10 |
| 1289 | 10 | 10 |
| 1290 | 11 | 10 |
| 1291 | 9 | 10 |
| 1292 | 10 | 10 |
| 1293 | 13 | 10 |
| 1294 | 12 | 10 |
| 1295 | 12 | 10 |
| 1296 | 11 | 10 |
| 1297 | 11 | 10 |
| 1298 | 10 | 10 |
| 1299 | 12 | 10 |
| 1300 | 7 | 10 |
| 1301 | 10 | 10 |
| 1302 | 12 | 10 |
| 1303 | 4 | 10 |
| 1304 | 11 | 10 |
| 1305 | 10 | 10 |
| 1306 | 9 | 10 |
| 1307 | 10 | 10 |
| 1308 | 10 | 10 |
| 1309 | 11 | 10 |
| 1310 | 10 | 10 |
| 1311 | 12 | 10 |
| 1312 | 11 | 10 |
| 1313 | 13 | 10 |
| 1314 | 3 | 10 |
| 1315 | 12 | 10 |
| 1316 | 9 | 10 |
| 1317 | 10 | 10 |
| 1318 | 11 | 10 |
| 1319 | 12 | 10 |
| 1320 | 12 | 10 |
| 1321 | 12 | 10 |
| 1322 | 11 | 10 |
| 1323 | 11 | 10 |
| 1324 | 12 | 10 |
| 1325 | 7 | 10 |
| 1326 | 13 | 10 |
| 1327 | 10 | 10 |
| 1328 | 12 | 10 |
| 1329 | 10 | 10 |
| 1330 | 11 | 10 |
| 1331 | 11 | 10 |
| 1332 | 12 | 10 |
| 1333 | 12 | 10 |
| 1334 | 11 | 10 |
| 1335 | 11 | 10 |
| 1336 | 9 | 10 |
| 1337 | 10 | 10 |
| 1338 | 12 | 10 |
| 1339 | 12 | 10 |
| 1340 | 10 | 10 |
| 1341 | 12 | 10 |
| 1342 | 7 | 10 |
| 1343 | 13 | 10 |
| 1344 | 12 | 10 |
| 1345 | 13 | 10 |
| 1346 | 11 | 10 |
| 1347 | 12 | 10 |
| 1348 | 10 | 10 |
| 1349 | 12 | 10 |
| 1350 | 8 | 10 |
| 1351 | 60 | 50 |
| 1352 | 10 | 10 |
| 1353 | 10 | 10 |
| 1354 | 11 | 10 |
| 1355 | 10 | 10 |
| 1356 | 9 | 10 |
| 1357 | 10 | 10 |
| 1358 | 12 | 10 |
| 1359 | 9 | 10 |
| 1360 | 12 | 10 |
| 1361 | 11 | 10 |
| 1362 | 10 | 10 |
| 1363 | 6 | 10 |
| 1364 | 12 | 10 |
| 1365 | 11 | 10 |
| 1366 | 10 | 10 |
| 1367 | 11 | 10 |
| 1368 | 12 | 10 |
| 1369 | 13 | 10 |
| 1370 | 12 | 10 |
| 1371 | 11 | 10 |
| 1372 | 9 | 10 |
| 1373 | 12 | 10 |
| 1374 | 11 | 10 |
| 1375 | 11 | 10 |
| 1376 | 11 | 10 |
| 1377 | 10 | 10 |
| 1378 | 9 | 10 |
| 1379 | 10 | 10 |
| 1380 | 12 | 10 |
| 1381 | 11 | 10 |
| 1382 | 12 | 10 |
| 1383 | 10 | 10 |
| 1384 | 7 | 10 |
| 1385 | 11 | 10 |
| 1386 | 10 | 10 |
| 1387 | 12 | 10 |
| 1388 | 6 | 10 |
| 1389 | 10 | 10 |
| 1390 | 11 | 10 |
| 1391 | 10 | 10 |
| 1392 | 6 | 10 |
| 1393 | 10 | 10 |
| 1394 | 9 | 10 |
| 1395 | 11 | 10 |
| 1396 | 12 | 10 |
| 1397 | 10 | 10 |
| 1398 | 11 | 10 |
| 1399 | 5 | 10 |
| 1400 | 12 | 10 |
| 1401 | 12 | 10 |
| 1402 | 10 | 10 |
| 1403 | 11 | 10 |
| 1404 | 11 | 10 |
| 1405 | 10 | 10 |
| 1406 | 3 | 10 |
| 1407 | 8 | 10 |
| 1408 | 12 | 10 |
| 1409 | 12 | 10 |
| 1410 | 13 | 10 |
| 1411 | 13 | 10 |
| 1412 | 11 | 10 |
| 1413 | 10 | 10 |
| 1414 | 10 | 10 |
| 1415 | 7 | 10 |
| 1416 | 12 | 10 |
| 1417 | 9 | 10 |
| 1418 | 10 | 10 |
| 1419 | 11 | 10 |
| 1420 | 11 | 10 |
| 1421 | 9 | 10 |
| 1422 | 10 | 10 |
| 1423 | 11 | 10 |
| 1424 | 11 | 10 |
| 1425 | 10 | 10 |
| 1426 | 10 | 10 |
| 1427 | 8 | 10 |
| 1428 | 11 | 10 |
| 1429 | 11 | 10 |
| 1430 | 8 | 10 |
| 1431 | 9 | 10 |
| 1432 | 11 | 10 |
| 1433 | 44 | 40 |
| 1434 | 10 | 10 |
| 1435 | 8 | 10 |
| 1436 | 10 | 10 |
| 1437 | 10 | 10 |
| 1438 | 12 | 10 |
| 1439 | 9 | 10 |
| 1440 | 12 | 10 |
| 1441 | 9 | 10 |
| 1442 | 10 | 10 |
| 1443 | 10 | 10 |
| 1444 | 9 | 10 |
| 1445 | 10 | 10 |
| 1446 | 1 | 10 |
| 1447 | 12 | 10 |
| 1448 | 7 | 10 |
| 1449 | 10 | 10 |
| 1450 | 11 | 10 |
| 1451 | 13 | 10 |
| 1452 | 13 | 10 |
| 1453 | 8 | 10 |
| 1454 | 12 | 10 |
| 1455 | 10 | 10 |
| 1456 | 10 | 10 |
| 1457 | 12 | 10 |
| 1458 | 11 | 10 |
| 1459 | 4 | 10 |
| 1460 | 6 | 10 |
| 1461 | 5 | 10 |
| 1462 | 10 | 10 |
| 1463 | 12 | 10 |
| 1464 | 10 | 10 |
| 1465 | 10 | 10 |
| 1466 | 11 | 10 |
| 1467 | 9 | 10 |
| 1468 | 10 | 10 |
| 1469 | 9 | 10 |
| 1470 | 11 | 10 |
| 1471 | 12 | 10 |
| 1472 | 10 | 10 |
| 1473 | 7 | 10 |
| 1474 | 10 | 10 |
| 1475 | 9 | 10 |
| 1476 | 12 | 10 |
| 1477 | 10 | 10 |
| 1478 | 3 | 10 |
| 1479 | 11 | 10 |
| 1480 | 11 | 10 |
| 1481 | 10 | 10 |
| 1482 | 12 | 10 |
| 1483 | 11 | 10 |
| 1484 | 9 | 10 |
| 1485 | 12 | 10 |
| 1486 | 11 | 10 |
| 1487 | 10 | 10 |
| 1488 | 9 | 10 |
| 1489 | 10 | 10 |
| 1490 | 10 | 10 |
| 1491 | 10 | 10 |
| 1492 | 12 | 10 |
| 1493 | 13 | 10 |
| 1494 | 12 | 10 |
| 1495 | 10 | 10 |
| 1496 | 10 | 10 |
| 1497 | 9 | 10 |
| 1498 | 7 | 10 |
| 1499 | 12 | 10 |
| 1500 | 10 | 10 |
| 1501 | 13 | 10 |
| 1502 | 13 | 10 |
| 1503 | 9 | 10 |
| 1504 | 8 | 10 |
| 1505 | 10 | 10 |
| 1506 | 10 | 10 |
| 1507 | 10 | 10 |
| 1508 | 5 | 10 |
| 1509 | 12 | 10 |
| 1510 | 12 | 10 |
| 1511 | 13 | 10 |
| 1512 | 11 | 10 |
| 1513 | 11 | 10 |
| 1514 | 12 | 10 |
| 1515 | 12 | 10 |
| 1516 | 11 | 10 |
| 1517 | 10 | 10 |
| 1518 | 12 | 10 |
| 1519 | 13 | 10 |
| 1520 | 8 | 10 |
| 1521 | 10 | 10 |
| 1522 | 11 | 10 |
| 1523 | 12 | 10 |
| 1524 | 11 | 10 |
| 1525 | 10 | 10 |
| 1526 | 11 | 10 |
| 1527 | 9 | 10 |
| 1528 | 12 | 10 |
| 1529 | 11 | 10 |
| 1530 | 10 | 10 |
| 1531 | 12 | 10 |
| 1532 | 10 | 10 |
| 1533 | 10 | 10 |
| 1534 | 12 | 10 |
| 1535 | 12 | 10 |
| 1536 | 11 | 10 |
| 1537 | 9 | 10 |
| 1538 | 11 | 10 |
| 1539 | 12 | 10 |
| 1540 | 8 | 10 |
| 1541 | 10 | 10 |
| 1542 | 11 | 10 |
| 1543 | 12 | 10 |
| 1544 | 12 | 10 |
| 1545 | 13 | 10 |
| 1546 | 9 | 10 |
| 1547 | 10 | 10 |
| 1548 | 10 | 10 |
| 1549 | 10 | 10 |
| 1550 | 9 | 10 |
| 1551 | 10 | 10 |
| 1552 | 11 | 10 |
| 1553 | 8 | 10 |
| 1554 | 10 | 10 |
| 1555 | 7 | 10 |
| 1556 | 9 | 10 |
| 1557 | 12 | 10 |
| 1558 | 8 | 10 |
| 1559 | 9 | 10 |
| 1560 | 12 | 10 |
| 1561 | 12 | 10 |
| 1562 | 13 | 10 |
| 1563 | 10 | 10 |
| 1564 | 10 | 10 |
| 1565 | 11 | 10 |
| 1566 | 13 | 10 |
| 1567 | 12 | 10 |
| 1568 | 12 | 10 |
| 1569 | 11 | 10 |
| 1570 | 11 | 10 |
| 1571 | 9 | 10 |
| 1572 | 11 | 10 |
| 1573 | 7 | 10 |
| 1574 | 12 | 10 |
| 1575 | 11 | 10 |
| 1576 | 10 | 10 |
| 1577 | 10 | 10 |
| 1578 | 11 | 10 |
| 1579 | 7 | 10 |
| 1580 | 9 | 10 |
| 1581 | 11 | 10 |
| 1582 | 11 | 10 |
| 1583 | 5 | 10 |
| 1584 | 11 | 10 |
| 1585 | 11 | 10 |
| 1586 | 12 | 10 |
| 1587 | 8 | 10 |
| 1588 | 12 | 10 |
| 1589 | 11 | 10 |
| 1590 | 11 | 10 |
| 1591 | 10 | 10 |
| 1592 | 12 | 10 |
| 1593 | 11 | 10 |
| 1594 | 10 | 10 |
| 1595 | 10 | 10 |
| 1596 | 12 | 10 |
| 1597 | 11 | 10 |
| 1598 | 4 | 20 |
| 1599 | 12 | 10 |
| 1600 | 11 | 10 |
| 1601 | 3 | 10 |
| 1602 | 11 | 10 |
| 1603 | 8 | 10 |
| 1604 | 9 | 10 |
| 1605 | 14 | 10 |
| 1606 | 9 | 10 |
| 1607 | 12 | 10 |
| 1608 | 7 | 10 |
| 1609 | 14 | 10 |
| 1610 | 9 | 10 |
| 1611 | 10 | 10 |
| 1612 | 10 | 10 |
| 1613 | 11 | 10 |
| 1614 | 11 | 10 |
| 1615 | 10 | 10 |
| 1616 | 11 | 10 |
| 1617 | 11 | 10 |
| 1618 | 5 | 10 |
| 1619 | 5 | 10 |
| 1620 | 12 | 10 |
| 1621 | 11 | 10 |
| 1622 | 12 | 10 |
| 1623 | 11 | 10 |
| 1624 | 5 | 10 |
| 1625 | 13 | 10 |
| 1626 | 11 | 10 |
| 1627 | 10 | 10 |
| 1628 | 12 | 10 |
| 1629 | 4 | 10 |
| 1630 | 12 | 10 |
| 1631 | 10 | 10 |
| 1632 | 10 | 10 |
| 1633 | 12 | 10 |
| 1634 | 143 | 130 |
| 1635 | 121 | 110 |
| 1636 | 6 | 10 |
| 1637 | 9 | 10 |
| 1638 | 10 | 10 |
| 1639 | 10 | 10 |
| 1640 | 12 | 10 |
| 1641 | 11 | 10 |
| 1642 | 10 | 10 |
| 1643 | 10 | 10 |
| 1644 | 10 | 10 |
| 1645 | 5 | 10 |
| 1646 | 9 | 10 |
| 1647 | 12 | 10 |
| 1648 | 9 | 10 |
| 1649 | 11 | 10 |
| 1650 | 11 | 10 |
| 1651 | 11 | 10 |
| 1652 | 11 | 10 |
| 1653 | 8 | 10 |
| 1654 | 10 | 10 |
| 1655 | 11 | 10 |
| 1656 | 10 | 10 |
| 1657 | 9 | 10 |
| 1658 | 10 | 10 |
| 1659 | 12 | 10 |
| 1660 | 9 | 10 |
| 1661 | 10 | 10 |
| 1662 | 7 | 11 |
| 1663 | 20 | 16 |
| 1664 | 12 | 10 |
| 1665 | 9 | 10 |
| 1666 | 12 | 10 |
| 1667 | 11 | 10 |
| 1668 | 12 | 10 |
| 1669 | 8 | 10 |
| 1670 | 7 | 10 |
| 1671 | 11 | 10 |
| 1672 | 9 | 10 |
| 1673 | 9 | 10 |
| 1674 | 9 | 10 |
| 1675 | 11 | 10 |
| 1676 | 12 | 10 |
| 1677 | 11 | 10 |
| 1678 | 10 | 10 |
| 1679 | 11 | 10 |
| 1680 | 5 | 10 |
| 1681 | 12 | 10 |
| 1682 | 10 | 10 |
| 1683 | 11 | 10 |
| 1684 | 7 | 10 |
| 1685 | 12 | 10 |
| 1686 | 12 | 10 |
| 1687 | 8 | 10 |
| 1688 | 12 | 10 |
| 1689 | 9.5 | 10 |
| 1690 | 9 | 10 |
| 1691 | 11 | 10 |
| 1692 | 3 | 10 |
| 1693 | 12 | 10 |
| 1694 | 11 | 10 |
| 1695 | 9 | 10 |
| 1696 | 10 | 10 |
| 1697 | 11 | 10 |
| 1698 | 11 | 10 |
| 1699 | 9 | 10 |
| 1700 | 9 | 10 |
| 1701 | 4 | 10 |
| 1702 | 10 | 10 |
| 1703 | 11 | 10 |
| 1704 | 9 | 10 |
| 1705 | 12 | 10 |
| 1706 | 9 | 10 |
| 1707 | 10 | 10 |
| 1708 | 6 | 10 |
| 1709 | 9 | 10 |
| 1710 | 8 | 10 |
| 1711 | 12 | 10 |
| 1712 | 11.26 | 10 |
| 1713 | 10 | 10 |
| 1714 | 11 | 10 |
| 1715 | 10 | 10 |
| 1716 | 12 | 10 |
| 1717 | 11 | 10 |
| 1718 | 10 | 10 |
| 1719 | 12 | 10 |
| 1720 | 10 | 10 |
| 1721 | 10 | 10 |
| 1722 | 9 | 10 |
| 1723 | 11 | 10 |
| 1724 | 12 | 10 |
| 1725 | 9 | 10 |
| 1726 | 10 | 10 |
| 1727 | 5 | 10 |
| 1728 | 10 | 10 |
| 1729 | 11 | 10 |
| 1730 | 7 | 10 |
| 1731 | 10 | 10 |
| 1732 | 13 | 10 |
| 1733 | 10 | 10 |
| 1734 | 9 | 10 |
| 1735 | 8 | 10 |
| 1736 | 8 | 10 |
| 1737 | 7 | 10 |
| 1738 | 11 | 10 |
| 1739 | 7 | 10 |
| 1740 | 8 | 10 |
| 1741 | 9 | 10 |
| 1742 | 11 | 10 |
| 1743 | 10 | 10 |
| 1744 | 11 | 10 |
| 1745 | 8 | 10 |
| 1746 | 10 | 10 |
| 1747 | 12 | 10 |
| 1748 | 11 | 10 |
| 1749 | 9 | 10 |
| 1750 | 11 | 10 |
| 1751 | 12 | 10 |
| 1752 | 11 | 10 |
| 1753 | 12 | 10 |
| 1754 | 7 | 10 |
| 1755 | 11 | 10 |
| 1756 | 8 | 10 |
| 1757 | 10 | 10 |
| 1758 | 10 | 10 |
| 1759 | 6 | 10 |
| 1760 | 10 | 10 |
| 1761 | 2 | 10 |
| 1762 | 10 | 10 |
| 1763 | 10 | 10 |
| 1764 | 2 | 10 |
| 1765 | 10 | 10 |
| 1766 | 12 | 10 |
| 1767 | 12 | 10 |
| 1768 | 11 | 10 |
| 1769 | 10 | 10 |
| 1770 | 12 | 10 |
| 1771 | 10 | 10 |
| 1772 | 10 | 10 |
| 1773 | 9 | 10 |
| 1774 | 13 | 10 |
| 1775 | 12 | 10 |
| 1776 | 11 | 10 |
| 1777 | 10 | 10 |
| 1778 | 9 | 10 |
| 1779 | 144 | 120 |
| 1780 | 10 | 10 |
| 1781 | 9 | 10 |
| 1782 | 11 | 10 |
| 1783 | 9 | 10 |
| 1784 | 12 | 10 |
| 1785 | 11 | 10 |
| 1786 | 10 | 10 |
| 1787 | 6 | 10 |
| 1788 | 10 | 10 |
| 1789 | 12 | 10 |
| 1790 | 9 | 10 |
| 1791 | 12 | 10 |
| 1792 | 9 | 10 |
| 1793 | 9 | 10 |
| 1794 | 10 | 10 |
| 1795 | 10 | 10 |
| 1796 | 5 | 10 |
| 1797 | 10 | 10 |
| 1798 | 11 | 10 |
| 1799 | 9 | 10 |
| 1800 | 11 | 10 |
| 1801 | 10 | 10 |
| 1802 | 8 | 10 |
| 1803 | 6 | 10 |
| 1804 | 12 | 10 |
| 1805 | 9 | 10 |
| 1806 | 8 | 10 |
| 1807 | 10 | 10 |
| 1808 | 5 | 10 |
| 1809 | 10 | 10 |
| 1810 | 11 | 10 |
| 1811 | 12 | 10 |
| 1812 | 9 | 10 |
| 1813 | 10 | 10 |
| 1814 | 13 | 10 |
| 1815 | 12 | 10 |
| 1816 | 12 | 10 |
| 1817 | 9 | 10 |
| 1818 | 11 | 10 |
| 1819 | 7 | 10 |
| 1820 | 5 | 10 |
| 1821 | 8 | 10 |
| 1822 | 8 | 10 |
| 1823 | 12 | 10 |
| 1824 | 9 | 10 |
| 1825 | 11 | 10 |
| 1826 | 11 | 10 |
| 1827 | 10 | 10 |
| 1828 | 10 | 10 |
| 1829 | 8 | 10 |
| 1830 | 10 | 10 |
| 1831 | 9 | 10 |
| 1832 | 10 | 10 |
| 1833 | 10 | 10 |
| 1834 | 8 | 10 |
| 1835 | 11 | 10 |
| 1836 | 3 | 10 |
| 1837 | 9 | 10 |
| 1838 | 10 | 10 |
| 1839 | 6 | 10 |
| 1840 | 10 | 10 |
| 1841 | 11 | 10 |
| 1842 | 11 | 10 |
| 1843 | 88 | 80 |
| 1844 | 9 | 10 |
| 1845 | 10 | 10 |
| 1846 | 10 | 10 |
| 1847 | 11 | 10 |
| 1848 | 10 | 10 |
| 1849 | 11 | 10 |
| 1850 | 12 | 10 |
| 1851 | 12 | 10 |
| 1852 | 11 | 10 |
| 1853 | 10 | 10 |
| 1854 | 11 | 10 |
| 1855 | 10 | 10 |
| 1856 | 10 | 10 |
| 1857 | 12 | 10 |
| 1858 | 13 | 10 |
| 1859 | 11 | 10 |
| 1860 | 10 | 10 |
| 1861 | 5 | 10 |
| 1862 | 12 | 10 |
| 1863 | 13 | 10 |
| 1864 | 12 | 10 |
| 1865 | 13 | 10 |
| 1866 | 13 | 10 |
| 1867 | 12 | 10 |
| 1868 | 10 | 10 |
| 1869 | 1 | 10 |
| 1870 | 12 | 10 |
| 1871 | 10 | 10 |
| 1872 | 7 | 10 |
| 1873 | 9 | 10 |
| 1874 | 5 | 10 |
| 1875 | 10 | 10 |
| 1876 | 8 | 10 |
| 1877 | 9 | 10 |
| 1878 | 11 | 10 |
| 1879 | 10 | 10 |
| 1880 | 10 | 10 |
| 1881 | 12 | 10 |
| 1882 | 13 | 10 |
| 1883 | 10 | 10 |
| 1884 | 11 | 10 |
| 1885 | 13 | 10 |
| 1886 | 13 | 10 |
| 1887 | 9 | 10 |
| 1888 | 8 | 10 |
| 1889 | 11 | 10 |
| 1890 | 12 | 10 |
| 1891 | 10 | 10 |
| 1892 | 12 | 10 |
| 1893 | 12 | 10 |
| 1894 | 10 | 10 |
| 1895 | 11 | 10 |
| 1896 | 11 | 10 |
| 1897 | 10 | 10 |
| 1898 | 3 | 10 |
| 1899 | 9 | 10 |
| 1900 | 10 | 10 |
| 1901 | 5 | 10 |
| 1902 | 11 | 10 |
| 1903 | 12 | 10 |
| 1904 | 5 | 10 |
| 1905 | 13 | 10 |
| 1906 | 13 | 10 |
| 1907 | 10 | 10 |
| 1908 | 9 | 10 |
| 1909 | 12 | 10 |
| 1910 | 10 | 10 |
| 1911 | 10 | 10 |
| 1912 | 8 | 10 |
| 1913 | 10 | 10 |
| 1914 | 13 | 10 |
| 1915 | 8 | 10 |
| 1916 | 12 | 10 |
| 1917 | 11 | 10 |
| 1918 | 10 | 10 |
| 1919 | 8 | 10 |
| 1920 | 2 | 10 |
| 1921 | 9 | 10 |
| 1922 | 10 | 10 |
| 1923 | 11 | 10 |
| 1924 | 11 | 10 |
| 1925 | 5 | 10 |
| 1926 | 10 | 10 |
| 1927 | 10 | 10 |
| 1928 | 3 | 10 |
| 1929 | 12 | 10 |
| 1930 | 12 | 10 |
| 1931 | 9 | 10 |
| 1932 | 10 | 10 |
| 1933 | 10 | 10 |
| 1934 | 11 | 10 |
| 1935 | 10 | 10 |
| 1936 | 10 | 10 |
| 1937 | 11 | 10 |
| 1938 | 3 | 10 |
| 1939 | 10 | 10 |
| 1940 | 1 | 10 |
| 1941 | 4 | 10 |
| 1942 | 10 | 10 |
| 1943 | 12 | 10 |
| 1944 | 12 | 10 |
| 1945 | 10 | 10 |
| 1946 | 8 | 10 |
| 1947 | 3 | 10 |
| 1948 | 8 | 10 |
| 1949 | 11 | 10 |
| 1950 | 9 | 10 |
| 1951 | 11 | 10 |
| 1952 | 13 | 10 |
| 1953 | 12 | 10 |
| 1954 | 10 | 10 |
| 1955 | 10 | 10 |
| 1956 | 7 | 10 |
| 1957 | 11 | 10 |
| 1958 | 8 | 10 |
| 1959 | 7 | 10 |
| 1960 | 11 | 10 |
| 1961 | 8 | 10 |
| 1962 | 11 | 10 |
| 1963 | 12 | 10 |
| 1964 | 9 | 10 |
| 1965 | 7 | 10 |
| 1966 | 11 | 10 |
| 1967 | 10 | 10 |
| 1968 | 11 | 10 |
| 1969 | 10 | 10 |
| 1970 | 8 | 10 |
| 1971 | 11 | 10 |
| 1972 | 6 | 10 |
| 1973 | 10 | 10 |
| 1974 | 8 | 10 |
| 1975 | 12 | 10 |
| 1976 | 8 | 10 |
| 1977 | 10 | 10 |
| 1978 | 9 | 10 |
| 1979 | 5 | 10 |
| 1980 | 10 | 10 |
| 1981 | 7 | 10 |
| 1982 | 11 | 10 |
| 1983 | 10 | 10 |
| 1984 | 9 | 10 |
| 1985 | 11 | 10 |
| 1986 | 6 | 10 |
| 1987 | 8 | 10 |
| 1988 | 10 | 10 |
| 1989 | 9 | 10 |
| 1990 | 9 | 10 |
| 1991 | 12 | 10 |
| 1992 | 6 | 10 |
| 1993 | 9 | 10 |
| 1994 | 11 | 10 |
| 1995 | 9 | 10 |
| 1996 | 10 | 10 |
| 1997 | 8 | 10 |
| 1998 | 7 | 10 |
| 1999 | 10 | 10 |
| 2000 | 10 | 10 |
| 2001 | 10 | 10 |
| 2002 | 12 | 10 |
| 2003 | 8 | 10 |
| 2004 | 12 | 10 |
| 2005 | 11 | 10 |
| 2006 | 10 | 10 |
| 2007 | 10 | 10 |
| 2008 | 8 | 10 |
| 2009 | 11 | 10 |
| 2010 | 10 | 10 |
| 2011 | 12 | 10 |
| 2012 | 7 | 10 |
| 2013 | 5 | 10 |
| 2014 | 9 | 10 |
| 2015 | 9 | 10 |
| 2016 | 10 | 10 |
| 2017 | 8 | 10 |
| 2018 | 12 | 10 |
| 2019 | 11 | 10 |
| 2020 | 9 | 10 |
| 2021 | 11 | 10 |
| 2022 | 7 | 10 |
| 2023 | 10 | 10 |
| 2024 | 11 | 10 |
| 2025 | 11 | 10 |
| 2026 | 5 | 10 |
| 2027 | 10 | 10 |
| 2028 | 10 | 10 |
| 2029 | 8 | 10 |
| 2030 | 13 | 10 |
| 2031 | 10 | 10 |
| 2032 | 9 | 10 |
| 2033 | 6 | 10 |
| 2034 | 11 | 10 |
| 2035 | 11 | 10 |
| 2036 | 13 | 10 |
| 2037 | 13 | 10 |
| 2038 | 1 | 10 |
| 2039 | 10 | 10 |
| 2040 | 6 | 10 |
| 2041 | 10 | 10 |
| 2042 | 8 | 10 |
| 2043 | 9 | 10 |
| 2044 | 6 | 10 |
| 2045 | 10 | 10 |
| 2046 | 10 | 10 |
| 2047 | 9 | 10 |
| 2048 | 8 | 10 |
| 2049 | 11 | 10 |
| 2050 | 11 | 10 |
| 2051 | 8 | 10 |
| 2052 | 10 | 10 |
| 2053 | 11 | 10 |
| 2054 | 7 | 10 |
| 2055 | 11 | 10 |
| 2056 | 9 | 10 |
| 2057 | 10 | 10 |
| 2058 | 9 | 10 |
| 2059 | 10 | 10 |
| 2060 | 12 | 10 |
| 2061 | 10 | 10 |
| 2062 | 8 | 10 |
| 2063 | 5 | 10 |
| 2064 | 11 | 10 |
| 2065 | 12 | 10 |
| 2066 | 9 | 10 |
| 2067 | 9 | 10 |
| 2068 | 10 | 10 |
| 2069 | 8 | 10 |
| 2070 | 4 | 10 |
| 2071 | 6 | 10 |
| 2072 | 8 | 10 |
| 2073 | 12 | 10 |
| 2074 | 420 | 10 |
| 2075 | 10 | 10 |
| 2076 | 4 | 10 |
| 2077 | 7 | 10 |
| 2078 | 10 | 10 |
| 2079 | 2 | 10 |
| 2080 | 12 | 10 |
| 2081 | 10 | 10 |
| 2082 | 10 | 10 |
| 2083 | 10 | 10 |
| 2084 | 11 | 10 |
| 2085 | 10 | 10 |
| 2086 | 10 | 10 |
| 2087 | 11 | 10 |
| 2088 | 7 | 10 |
| 2089 | 9 | 10 |
| 2090 | 8 | 10 |
| 2091 | 1 | 10 |
| 2092 | 5 | 10 |
| 2093 | 7 | 10 |
| 2094 | 10 | 10 |
| 2095 | 10 | 10 |
| 2096 | 9 | 10 |
| 2097 | 8 | 10 |
| 2098 | 10 | 10 |
| 2099 | 12 | 10 |
| 2100 | 6 | 10 |
| 2101 | 8 | 10 |
| 2102 | 8 | 10 |
| 2103 | 8 | 10 |
| 2104 | 10 | 10 |
| 2105 | 10 | 10 |
| 2106 | 10 | 10 |
| 2107 | 7 | 10 |
| 2108 | 11 | 10 |
| 2109 | 5 | 10 |
| 2110 | 10 | 10 |
| 2111 | 11 | 10 |
| 2112 | 10 | 10 |
| 2113 | 11 | 10 |
| 2114 | 10 | 10 |
| 2115 | 11 | 10 |
| 2116 | 9 | 10 |
| 2117 | 12 | 10 |
| 2118 | 10 | 10 |
| 2119 | 6 | 10 |
| 2120 | 12 | 10 |
| 2121 | 10 | 10 |
| 2122 | 10 | 10 |
| 2123 | 8 | 10 |
| 2124 | 12 | 10 |
| 2125 | 9 | 10 |
| 2126 | 10 | 10 |
| 2127 | 11 | 10 |
| 2128 | 9 | 10 |
| 2129 | 11 | 10 |
| 2130 | 9 | 10 |
| 2131 | 10 | 10 |
| 2132 | 10 | 10 |
| 2133 | 10 | 10 |
| 2134 | 5 | 10 |
| 2135 | 11 | 10 |
| 2136 | 3 | 10 |
| 2137 | 11 | 10 |
| 2138 | 10 | 10 |
| 2139 | 5 | 10 |
| 2140 | 10 | 10 |
| 2141 | 9 | 10 |
| 2142 | 10 | 10 |
| 2143 | 10 | 10 |
| 2144 | 11 | 10 |
| 2145 | 12 | 10 |
| 2146 | 10 | 10 |
| 2147 | 10 | 10 |
| 2148 | 8 | 10 |
| 2149 | 11 | 10 |
| 2150 | 10 | 10 |
| 2151 | 9 | 10 |
| 2152 | 8 | 10 |
| 2153 | 5 | 10 |
| 2154 | 12 | 10 |
| 2155 | 10 | 10 |
| 2156 | 10 | 10 |
| 2157 | 6 | 10 |
| 2158 | 10 | 10 |
| 2159 | 7 | 10 |
| 2160 | 9 | 10 |
| 2161 | 10 | 10 |
| 2162 | 10 | 10 |
| 2163 | 6 | 10 |
| 2164 | 10 | 10 |
| 2165 | 10 | 10 |
| 2166 | 10 | 10 |
| 2167 | 11 | 10 |
| 2168 | 8 | 10 |
| 2169 | 10 | 10 |
| 2170 | 10 | 10 |
| 2171 | 12 | 10 |
| 2172 | 13 | 10 |
| 2173 | 11 | 10 |
| 2174 | 8 | 10 |
| 2175 | 10 | 10 |
| 2176 | 9 | 10 |
| 2177 | 10 | 10 |
| 2178 | 10 | 10 |
| 2179 | 12 | 10 |
| 2180 | 11 | 10 |
| 2181 | 5 | 10 |
| 2182 | 8 | 10 |
| 2183 | 3 | 10 |
| 2184 | 7 | 10 |
| 2185 | 9 | 10 |
| 2186 | 4 | 10 |
| 2187 | 12 | 10 |
| 2188 | 11 | 10 |
| 2189 | 12 | 10 |
| 2190 | 10 | 10 |
| 2191 | 10 | 10 |
| 2192 | 9 | 10 |
| 2193 | 11 | 10 |
| 2194 | 11 | 10 |
| 2195 | 11 | 10 |
| 2196 | 11 | 10 |
| 2197 | 10 | 10 |
| 2198 | 7 | 10 |
| 2199 | 10 | 10 |
| 2200 | 11 | 10 |
| 2201 | 11 | 10 |
| 2202 | 3 | 10 |
| 2203 | 10 | 10 |
| 2204 | 10 | 10 |
| 2205 | 10 | 10 |
| 2206 | 5 | 10 |
| 2207 | 9 | 10 |
| 2208 | 10 | 10 |
| 2209 | 10 | 10 |
| 2210 | 10 | 10 |
| 2211 | 7 | 10 |
| 2212 | 13 | 10 |
| 2213 | 11 | 10 |
| 2214 | 10 | 10 |
| 2215 | 10 | 10 |
| 2216 | 8 | 10 |
| 2217 | 12 | 10 |
| 2218 | 10 | 10 |
| 2219 | 8 | 10 |
| 2220 | 9 | 10 |
| 2221 | 11 | 10 |
| 2222 | 4 | 10 |
| 2223 | 9 | 10 |
| 2224 | 10 | 10 |
| 2225 | 11 | 10 |
| 2226 | 10 | 10 |
| 2227 | 10 | 10 |
| 2228 | 13 | 10 |
| 2229 | 8 | 10 |
| 2230 | 10 | 10 |
| 2231 | 10 | 10 |
| 2232 | 10 | 10 |
| 2233 | 8 | 10 |
| 2234 | 12 | 10 |
| 2235 | 7 | 10 |
| 2236 | 9 | 10 |
| 2237 | 2 | 10 |
| 2238 | 6 | 10 |
| 2239 | 3 | 10 |
| 2240 | 9 | 10 |
| 2241 | 10 | 10 |
| 2242 | 5 | 10 |
| 2243 | 9 | 10 |
| 2244 | 11 | 10 |
| 2245 | 10 | 10 |
| 2246 | 2 | 10 |
| 2247 | 10 | 10 |
| 2248 | 10 | 10 |
| 2249 | 9 | 10 |
| 2250 | 12 | 10 |
| 2251 | 10 | 10 |
| 2252 | 12 | 10 |
| 2253 | 8 | 10 |
| 2254 | 9 | 10 |
| 2255 | 8 | 10 |
| 2256 | 9 | 10 |
| 2257 | 11 | 10 |
| 2258 | 7 | 10 |
| 2261 | 1 | 10 |
| 2262 | 9 | 10 |
| 2263 | 10 | 10 |
| 2264 | 9 | 10 |
| 2265 | 8 | 10 |
| 2266 | 10 | 10 |
| 2267 | 12 | 10 |
| 2268 | 8 | 10 |
| 2269 | 12 | 10 |
| 2270 | 11 | 10 |
| 2271 | 9 | 10 |
| 2272 | 7 | 10 |
| 2273 | 11 | 10 |
| 2274 | 7 | 10 |
| 2275 | 11 | 10 |
| 2276 | 6 | 10 |
| 2277 | 10 | 10 |
| 2278 | 12 | 10 |
| 2279 | 7 | 10 |
| 2280 | 8 | 10 |
| 2281 | 10 | 10 |
| 2282 | 9 | 10 |
| 2283 | 11 | 10 |
| 2284 | 12 | 10 |
| 2285 | 10 | 10 |
| 2286 | 10 | 10 |
| 2287 | 8 | 10 |
| 2288 | 4 | 10 |
| 2289 | 9 | 10 |
| 2290 | 10 | 10 |
| 2291 | 10 | 10 |
| 2292 | 11 | 10 |
| 2293 | 12 | 10 |
| 2294 | 10 | 10 |
| 2295 | 10 | 10 |
| 2296 | 7 | 10 |
| 2297 | 10 | 10 |
| 2298 | 10 | 10 |
| 2299 | 8 | 10 |
| 2300 | 10 | 10 |
| 2301 | 12 | 10 |
| 2302 | 9 | 10 |
| 2303 | 10 | 10 |
| 2304 | 11 | 10 |
| 2305 | 3 | 10 |
| 2306 | 10 | 10 |
| 2307 | 12 | 10 |
| 2308 | 9 | 10 |
| 2309 | 8 | 10 |
| 2310 | 2 | 10 |
| 2311 | 10 | 10 |
| 2312 | 5 | 10 |
| 2313 | 10 | 10 |
| 2314 | 8 | 10 |
| 2315 | 8 | 10 |
| 2316 | 4 | 10 |
| 2317 | 9 | 10 |
| 2318 | 10 | 10 |
| 2319 | 9 | 10 |
| 2320 | 7 | 10 |
| 2321 | 10 | 10 |
| 2322 | 6 | 10 |
| 2323 | 7 | 10 |
| 2324 | 12 | 10 |
| 2325 | 10 | 10 |
| 2326 | 2 | 10 |
| 2327 | 7 | 10 |
| 2328 | 9 | 10 |
| 2329 | 11 | 10 |
| 2330 | 6 | 10 |
| 2331 | 8 | 10 |
| 2332 | 10 | 10 |
| 2333 | 9 | 10 |
| 2334 | 3 | 10 |
| 2335 | 1 | 2 |
| 2336 | 11 | 10 |
| 2337 | 10 | 10 |
| 2338 | 1 | 10 |
| 2339 | 11 | 10 |
| 2340 | 8 | 10 |
| 2341 | 9 | 10 |
| 2342 | 6 | 10 |
| 2343 | 10 | 10 |
| 2344 | 9 | 10 |
| 2345 | 10 | 10 |
| 2346 | 8 | 10 |
| 2347 | 9 | 10 |
| 2348 | 10 | 10 |
| 2349 | 2 | 10 |
| 2350 | 10 | 10 |
| 2351 | 5 | 10 |
| 2352 | 6 | 10 |
| 2353 | 9 | 10 |
| 2354 | 7 | 10 |
| 2355 | 8 | 10 |
clean_TA.query('rating_numerator >20')
#we are using 20 because its not so common to find numerators higher than 20 and it's safe to assume that any one higher than 20 is an error.
# we have quite a number of dirty/ absurd values in the numerator column
# we will create a new dataframe with correct values and calculate the mean, which will be used to replace the absurd values.
| tweet_id | timestamp | text | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|
| 188 | 855862651834028034 | 2017-04-22 19:15:32 +0000 | @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research | 420 | 10 | None | None | None | None | None |
| 189 | 855860136149123072 | 2017-04-22 19:05:32 +0000 | @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 | 666 | 10 | None | None | None | None | None |
| 290 | 838150277551247360 | 2017-03-04 22:12:52 +0000 | @markhoppus 182/10 | 182 | 10 | None | None | None | None | None |
| 695 | 786709082849828864 | 2016-10-13 23:23:56 +0000 | This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS | 75 | 10 | Logan | None | None | None | None |
| 763 | 778027034220126208 | 2016-09-20 00:24:34 +0000 | This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq | 27 | 10 | Sophie | None | None | pupper | None |
| 979 | 749981277374128128 | 2016-07-04 15:00:45 +0000 | This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh | 1776 | 10 | Atticus | None | None | None | None |
| 1634 | 684225744407494656 | 2016-01-05 04:11:44 +0000 | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 | 143 | 10 | None | None | None | None | None |
| 1712 | 680494726643068929 | 2015-12-25 21:06:00 +0000 | Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD | 26 | 10 | None | None | None | None | None |
| 2074 | 670842764863651840 | 2015-11-29 05:52:33 +0000 | After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY | 420 | 10 | None | None | None | None | None |
#creating new df
good_numerator =clean_TA.query('rating_numerator < 20')
good_numerator.describe()
good_numerator.rating_numerator.mean()
#the code above calculated the mean of the numeartor and rounded it up to the closest whole number.
#this mean will be used to replace values higher than 20 for the numerator column.
good_mean = good_numerator.rating_numerator.mean()
good_mean = round(good_mean)
good_mean
11
#replacing numerator columns higher than 20 with the loc function
#tweet_id:855862651834028034
clean_TA.loc[clean_TA.tweet_id == 855862651834028034, 'rating_numerator'] = good_mean
#tweet_id:855860136149123072
clean_TA.loc[clean_TA.tweet_id == 855860136149123072, 'rating_numerator'] = good_mean
#tweet_id:838150277551247360
clean_TA.loc[clean_TA.tweet_id == 838150277551247360, 'rating_numerator'] = good_mean
#tweet_id:832215909146226688
clean_TA.loc[clean_TA.tweet_id == 832215909146226688, 'rating_numerator'] = good_mean
#tweet_id:786709082849828864
clean_TA.loc[clean_TA.tweet_id == 786709082849828864, 'rating_numerator'] = good_mean
#tweet_id:778027034220126208
clean_TA.loc[clean_TA.tweet_id == 778027034220126208, 'rating_numerator'] = good_mean
#tweet_id:749981277374128128
clean_TA.loc[clean_TA.tweet_id == 749981277374128128, 'rating_numerator'] = good_mean
#tweet_id:684225744407494656
clean_TA.loc[clean_TA.tweet_id == 684225744407494656, 'rating_numerator'] = good_mean
#tweet_id:680494726643068929
clean_TA.loc[clean_TA.tweet_id == 680494726643068929, 'rating_numerator'] = good_mean
#tweet_id:670842764863651840
clean_TA.loc[clean_TA.tweet_id == 670842764863651840, 'rating_numerator'] = good_mean
clean_TA.loc[clean_TA.tweet_id == 835246439529840640,'rating_numerator'] = good_mean
bad_numerator =clean_TA.query('rating_numerator > 20')
bad_numerator
#yeaee!!
#fixed all the absurd numerator
| tweet_id | timestamp | text | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo |
|---|
clean_TA.query('rating_numerator > 20')
clean_TA.query('rating_denominator != 10')
| tweet_id | timestamp | text | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo |
|---|
To solve this issue we will have to delete the extra 0000 using .str function to delete the extra zeros and use the to_date_time function to convert to date time.
#deleting the extra zeros
clean_TA.timestamp = clean_TA.timestamp.str[:-6]
#converting to time date format
clean_TA['timestamp'] =pd.to_datetime(clean_TA['timestamp'])
clean_TA.timestamp
clean_TA.timestamp.head()
#as can be seen below the dtype is now datetime format
0 2017-08-01 16:23:56 1 2017-08-01 00:17:27 2 2017-07-31 00:18:03 3 2017-07-30 15:58:51 4 2017-07-29 16:00:24 Name: timestamp, dtype: datetime64[ns]
#viewing the rows with a confidence score of > 3
clean_images.query('img_num > 3')
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | dog_breed | |
|---|---|---|---|---|---|---|---|---|---|---|
| 144 | 668623201287675904 | https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg | 4 | 0.708163 | True | 0.091372 | True | 0.067325 | False | Chihuahua |
| 779 | 689905486972461056 | https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg | 4 | 0.943331 | True | 0.023675 | True | 0.007165 | True | Pomeranian |
| 1024 | 710588934686908417 | https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg | 4 | 0.982004 | True | 0.008943 | True | 0.007550 | True | Pembroke |
| 1161 | 734787690684657664 | https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg | 4 | 0.883991 | True | 0.023542 | True | 0.016056 | True | golden_retriever |
| 1286 | 750868782890057730 | https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg | 4 | 0.912648 | True | 0.035059 | True | 0.026376 | False | toy_poodle |
| 1325 | 756998049151549440 | https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg | 4 | 0.678555 | True | 0.072632 | True | 0.049033 | True | golden_retriever |
| 1337 | 758405701903519748 | https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg | 4 | 0.702954 | True | 0.092277 | False | 0.032727 | False | Chesapeake_Bay_retriever |
| 1372 | 762464539388485633 | https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg | 4 | 0.999953 | True | 0.000023 | True | 0.000003 | False | chow |
| 1496 | 783391753726550016 | https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg | 4 | 0.877130 | True | 0.086241 | True | 0.011019 | True | Norwegian_elkhound |
| 1542 | 791312159183634433 | https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg | 4 | 0.892925 | True | 0.095524 | True | 0.003544 | True | miniature_pinscher |
| 1543 | 791406955684368384 | https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg | 4 | 0.972629 | True | 0.027026 | True | 0.000153 | True | Pembroke |
| 1713 | 818614493328580609 | https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg | 4 | 0.450722 | True | 0.204177 | True | 0.092774 | True | Chihuahua |
| 1766 | 826848821049180160 | https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg | 4 | 0.858764 | True | 0.023526 | True | 0.017104 | True | Great_Pyrenees |
| 1768 | 827199976799354881 | https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg | 4 | 0.869681 | True | 0.026658 | True | 0.019866 | True | Great_Dane |
| 1790 | 830097400375152640 | https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg | 4 | 0.442713 | True | 0.142073 | True | 0.125745 | True | toy_poodle |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | 0.982755 | True | 0.009084 | True | 0.004693 | True | briard |
| 1800 | 831911600680497154 | https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg | 4 | 0.777562 | True | 0.047418 | True | 0.017943 | True | bloodhound |
| 1829 | 836001077879255040 | https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg | 4 | 0.963558 | True | 0.019848 | False | 0.005904 | True | Samoyed |
| 1893 | 849412302885593088 | https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg | 4 | 0.907559 | True | 0.017934 | False | 0.016191 | True | schipperke |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | 0.854861 | True | 0.050792 | True | 0.021762 | True | black-and-tan_coonhound |
| 1920 | 856282028240666624 | https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg | 4 | 0.876543 | True | 0.032962 | True | 0.020776 | True | Chihuahua |
| 1934 | 859851578198683649 | https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg | 4 | 0.899086 | True | 0.047091 | True | 0.023206 | True | Labrador_retriever |
| 1954 | 864197398364647424 | https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg | 4 | 0.945905 | True | 0.021264 | True | 0.020493 | True | golden_retriever |
| 1978 | 870656317836468226 | https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg | 4 | 0.945495 | True | 0.045875 | True | 0.004329 | True | Pembroke |
| 2040 | 885167619883638784 | https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg | 4 | 0.812482 | True | 0.071712 | True | 0.055770 | True | malamute |
#creating the dataframe and checking the index
least_confident = clean_images[(clean_images['img_num']> 3)].index
least_confident
Int64Index([ 144, 779, 1024, 1161, 1286, 1325, 1337, 1372, 1496, 1542, 1543,
1713, 1766, 1768, 1790, 1795, 1800, 1829, 1893, 1914, 1920, 1934,
1954, 1978, 2040],
dtype='int64')
#dropping the temporal dataframe
clean_images.drop(least_confident,inplace = True)
clean_images.query('img_num > 3')
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | dog_breed |
|---|
The duplicates images url will be dropped using drop_duplicates function, specifically targeting the jpg_url column
duplicates =clean_images[clean_images.jpg_url.duplicated()]
duplicates.jpg_url.value_counts().sum()
clean_images.shape
(1536, 10)
#Delete duplicate rows based on jpg_url column
#df2 = df.drop_duplicates(subset=["Courses", "Fee"], keep=False)
clean_images.drop_duplicates("jpg_url",inplace =True)
clean_images.shape
(1484, 10)
AS seen above the number of rows has decreased from 1533 to 1481
clean_images
| tweet_id | jpg_url | img_num | p1_conf | p1_dog | p2_conf | p2_dog | p3_conf | p3_dog | dog_breed | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | 0.465074 | True | 0.156665 | True | 6.142850e-02 | True | Welsh_springer_spaniel |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | 0.596461 | True | 0.138584 | True | 1.161970e-01 | True | German_shepherd |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | 0.408143 | True | 0.360687 | True | 2.227520e-01 | True | Rhodesian_ridgeback |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | 0.560311 | True | 0.243682 | True | 1.546290e-01 | True | miniature_pinscher |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | 0.651137 | True | 0.263788 | True | 1.619920e-02 | True | Bernese_mountain_dog |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | 0.692517 | True | 0.058279 | True | 5.444860e-02 | False | chow |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | 0.201493 | True | 0.192305 | True | 8.208610e-02 | True | miniature_poodle |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | 0.775930 | True | 0.093718 | True | 7.242660e-02 | True | golden_retriever |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | 0.503672 | True | 0.174201 | True | 1.094540e-01 | True | Gordon_setter |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | 0.260857 | True | 0.175382 | True | 9.747050e-02 | True | Walker_hound |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | 0.489814 | True | 0.404722 | True | 4.895950e-02 | True | pug |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | 0.195217 | True | 0.078260 | True | 7.562780e-02 | True | bloodhound |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | 0.582330 | True | 0.166192 | True | 8.968830e-02 | True | Lhasa |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | 0.298617 | True | 0.149842 | True | 1.336490e-01 | True | English_setter |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | 0.176053 | True | 0.111884 | True | 1.111520e-01 | True | Italian_greyhound |
| 20 | 666287406224695296 | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | 0.857531 | True | 0.063064 | True | 2.558060e-02 | True | Maltese_dog |
| 23 | 666345417576210432 | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | 0.858744 | True | 0.054787 | True | 1.424090e-02 | True | golden_retriever |
| 24 | 666353288456101888 | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | 0.336874 | True | 0.147655 | True | 9.341240e-02 | True | malamute |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | 0.326467 | True | 0.259551 | True | 2.068030e-01 | True | soft-coated_wheaten_terrier |
| 27 | 666396247373291520 | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | 0.978108 | True | 0.009397 | True | 4.576810e-03 | True | Chihuahua |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | 0.529139 | True | 0.244220 | True | 1.738100e-01 | True | black-and-tan_coonhound |
| 30 | 666418789513326592 | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | 0.149680 | True | 0.148258 | True | 1.428600e-01 | True | toy_terrier |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | 0.906777 | True | 0.090346 | True | 1.116870e-03 | True | Blenheim_spaniel |
| 32 | 666428276349472768 | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | 0.371361 | True | 0.249394 | True | 2.418780e-01 | True | Pembroke |
| 34 | 666435652385423360 | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | 0.184130 | True | 0.056775 | False | 3.676340e-02 | False | Chesapeake_Bay_retriever |
| 35 | 666437273139982337 | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | 0.671853 | True | 0.124680 | True | 4.409420e-02 | True | Chihuahua |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | 0.322084 | True | 0.287955 | True | 1.663310e-01 | True | curly-coated_retriever |
| 37 | 666454714377183233 | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | 0.278954 | True | 0.237612 | True | 1.711060e-01 | True | dalmatian |
| 38 | 666644823164719104 | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | 0.044333 | True | 0.043209 | True | 3.890560e-02 | True | Ibizan_hound |
| 39 | 666649482315059201 | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | 0.447803 | True | 0.170497 | True | 1.392060e-01 | True | Border_collie |
| 40 | 666691418707132416 | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | 0.975401 | True | 0.008687 | True | 5.394040e-03 | True | German_shepherd |
| 41 | 666701168228331520 | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | 0.887707 | True | 0.029307 | True | 2.075630e-02 | True | Labrador_retriever |
| 42 | 666739327293083650 | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | 0.546933 | True | 0.165255 | True | 9.595890e-02 | True | miniature_poodle |
| 44 | 666781792255496192 | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | 0.618316 | True | 0.151363 | True | 8.598910e-02 | True | Italian_greyhound |
| 46 | 666804364988780544 | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | 0.328792 | True | 0.283545 | True | 5.746150e-02 | True | English_setter |
| 47 | 666817836334096384 | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | 0.496953 | True | 0.285276 | True | 7.376370e-02 | True | miniature_schnauzer |
| 48 | 666826780179869698 | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | 0.359383 | True | 0.148759 | False | 1.060070e-01 | True | Maltese_dog |
| 49 | 666835007768551424 | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | 0.448459 | True | 0.124030 | True | 1.101830e-01 | False | Airedale |
| 54 | 667044094246576128 | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | 0.765266 | True | 0.206694 | True | 1.066690e-02 | False | golden_retriever |
| 55 | 667062181243039745 | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | 0.825678 | True | 0.090998 | True | 2.295620e-02 | True | Chesapeake_Bay_retriever |
| 57 | 667073648344346624 | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | 0.483682 | True | 0.092494 | True | 5.749540e-02 | True | Chihuahua |
| 58 | 667090893657276420 | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | 0.959514 | True | 0.005370 | True | 2.641330e-03 | True | Chihuahua |
| 59 | 667119796878725120 | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | 0.741563 | True | 0.057866 | True | 3.912510e-02 | True | Pembroke |
| 60 | 667138269671505920 | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | 0.747713 | True | 0.243629 | True | 1.803970e-03 | True | West_Highland_white_terrier |
| 61 | 667152164079423490 | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | 0.535411 | True | 0.087544 | True | 6.205000e-02 | True | toy_poodle |
| 62 | 667160273090932737 | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | 0.471351 | True | 0.091992 | True | 8.738540e-02 | True | golden_retriever |
| 63 | 667165590075940865 | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | 0.140173 | True | 0.134094 | True | 8.189980e-02 | True | miniature_pinscher |
| 64 | 667171260800061440 | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | 0.841265 | True | 0.052744 | True | 3.440170e-02 | True | giant_schnauzer |
| 65 | 667174963120574464 | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | 0.266437 | True | 0.243223 | True | 7.280630e-02 | True | toy_poodle |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | 0.318981 | True | 0.215218 | True | 1.060140e-01 | True | soft-coated_wheaten_terrier |
| 67 | 667177989038297088 | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | 0.259249 | True | 0.176293 | True | 1.123690e-01 | True | vizsla |
| 68 | 667182792070062081 | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | 0.949892 | True | 0.010564 | True | 5.821410e-03 | True | golden_retriever |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | 0.283640 | True | 0.148112 | True | 9.558480e-02 | True | Rottweiler |
| 71 | 667200525029539841 | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | 0.694904 | True | 0.232006 | True | 5.063510e-02 | True | Siberian_husky |
| 72 | 667211855547486208 | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | 0.462556 | True | 0.454937 | True | 2.419330e-02 | True | golden_retriever |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | 0.709545 | False | 0.127285 | False | 2.856750e-02 | False | teddy |
| 74 | 667393430834667520 | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | 0.557009 | True | 0.271963 | True | 7.347290e-02 | True | papillon |
| 75 | 667405339315146752 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | 0.381377 | True | 0.127998 | True | 6.935680e-02 | True | Saint_Bernard |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | 0.999091 | True | 0.000450 | True | 1.571400e-04 | True | Rottweiler |
| 79 | 667453023279554560 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | 0.825670 | True | 0.056639 | True | 5.401840e-02 | True | Labrador_retriever |
| 80 | 667455448082227200 | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | 0.676376 | True | 0.054933 | True | 4.057550e-02 | True | Tibetan_terrier |
| 81 | 667470559035432960 | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | 0.304175 | True | 0.223427 | True | 7.331650e-02 | True | toy_poodle |
| 82 | 667491009379606528 | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | 0.852088 | True | 0.132264 | False | 5.729980e-03 | False | borzoi |
| 83 | 667495797102141441 | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | 0.143957 | True | 0.118651 | False | 9.248170e-02 | False | Chihuahua |
| 84 | 667502640335572993 | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | 0.996709 | True | 0.001688 | True | 7.116670e-04 | True | Labrador_retriever |
| 85 | 667509364010450944 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | 0.636169 | True | 0.119256 | True | 8.254920e-02 | True | beagle |
| 86 | 667517642048163840 | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | 0.125176 | True | 0.084571 | True | 8.134690e-02 | True | Italian_greyhound |
| 88 | 667530908589760512 | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | 0.633037 | True | 0.146391 | True | 4.618370e-02 | True | golden_retriever |
| 89 | 667534815156183040 | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | 0.435254 | True | 0.307407 | True | 3.315830e-02 | True | Pembroke |
| 90 | 667538891197542400 | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | 0.618957 | True | 0.300313 | True | 5.341200e-02 | True | Yorkshire_terrier |
| 91 | 667544320556335104 | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | 0.412893 | True | 0.312958 | True | 7.196040e-02 | True | Pomeranian |
| 92 | 667546741521195010 | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | 0.787424 | True | 0.202225 | True | 4.047220e-03 | False | toy_poodle |
| 97 | 667728196545200128 | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | 0.360159 | True | 0.293744 | True | 2.706730e-01 | True | kuvasz |
| 99 | 667773195014021121 | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | 0.360465 | True | 0.093494 | True | 6.903820e-02 | False | West_Highland_white_terrier |
| 101 | 667793409583771648 | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | 0.535073 | True | 0.451219 | True | 8.163610e-03 | True | dalmatian |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | 0.508392 | True | 0.262239 | True | 4.891980e-02 | True | flat-coated_retriever |
| 104 | 667832474953625600 | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | 0.214200 | True | 0.146789 | False | 1.041520e-01 | True | miniature_pinscher |
| 105 | 667861340749471744 | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | 0.967275 | True | 0.016168 | True | 1.127740e-02 | True | malamute |
| 109 | 667885044254572545 | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | 0.088530 | True | 0.087499 | True | 7.500770e-02 | False | malamute |
| 110 | 667886921285246976 | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | 0.800432 | True | 0.168445 | True | 8.949520e-03 | True | Pomeranian |
| 111 | 667902449697558528 | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | 0.298881 | True | 0.279479 | True | 1.984280e-01 | True | Norwegian_elkhound |
| 114 | 667924896115245057 | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | 0.209051 | True | 0.203980 | False | 1.659140e-01 | True | Labrador_retriever |
| 116 | 668113020489474048 | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | 0.548896 | True | 0.191101 | True | 5.981410e-02 | True | Pembroke |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | 0.918834 | False | 0.037793 | False | 1.101490e-02 | False | Angora |
| 119 | 668171859951755264 | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | 0.664834 | True | 0.060343 | False | 5.983750e-02 | False | Chihuahua |
| 120 | 668190681446379520 | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | 0.958402 | True | 0.026764 | True | 7.789910e-03 | True | Blenheim_spaniel |
| 121 | 668204964695683073 | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | 0.655180 | True | 0.107884 | True | 6.583470e-02 | True | Labrador_retriever |
| 122 | 668221241640230912 | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | 0.395101 | True | 0.372115 | True | 1.487850e-01 | True | chow |
| 124 | 668237644992782336 | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | 0.809320 | True | 0.071311 | False | 3.786960e-02 | True | chow |
| 125 | 668248472370458624 | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | 0.734547 | True | 0.068294 | True | 4.636710e-02 | True | Chihuahua |
| 127 | 668268907921326080 | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | 0.484830 | True | 0.425303 | True | 1.475350e-02 | True | Pembroke |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | 0.406374 | True | 0.263854 | True | 1.508440e-01 | True | soft-coated_wheaten_terrier |
| 129 | 668286279830867968 | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | 0.215944 | True | 0.189214 | True | 1.130100e-01 | True | golden_retriever |
| 134 | 668484198282485761 | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | 0.587372 | True | 0.182411 | True | 4.096800e-02 | True | standard_poodle |
| 135 | 668496999348633600 | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | 0.412879 | True | 0.161488 | True | 1.124950e-01 | True | Staffordshire_bullterrier |
| 136 | 668507509523615744 | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | 0.055379 | True | 0.054322 | True | 5.191340e-02 | True | basenji |
| 137 | 668528771708952576 | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | 0.195835 | True | 0.121607 | True | 8.146440e-02 | True | Labrador_retriever |
| 138 | 668537837512433665 | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | 0.372988 | True | 0.250445 | True | 1.897370e-01 | True | Lakeland_terrier |
| 139 | 668542336805281792 | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | 0.267695 | True | 0.254050 | True | 2.123810e-01 | True | American_Staffordshire_terrier |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | 0.985649 | True | 0.007078 | True | 3.053230e-03 | True | Shih-Tzu |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | 0.380772 | False | 0.100554 | False | 8.471350e-02 | False | bustard |
| 146 | 668627278264475648 | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | 0.965403 | True | 0.008604 | True | 8.003560e-03 | True | French_bulldog |
| 147 | 668631377374486528 | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | 0.904549 | True | 0.022529 | True | 1.524320e-02 | True | miniature_schnauzer |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | 0.589011 | True | 0.390987 | True | 3.310350e-03 | True | Pekinese |
| 149 | 668636665813057536 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | 0.999956 | True | 0.000043 | False | 2.160900e-07 | False | komondor |
| 153 | 668655139528511488 | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | 0.319110 | True | 0.103338 | True | 9.193000e-02 | True | beagle |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | 0.285508 | True | 0.146832 | True | 6.086480e-02 | False | Chesapeake_Bay_retriever |
| 156 | 668826086256599040 | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | 0.640185 | True | 0.153700 | True | 6.845650e-02 | True | malinois |
| 157 | 668852170888998912 | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | 0.903529 | True | 0.041497 | True | 2.250050e-02 | True | golden_retriever |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | 0.413379 | False | 0.325623 | False | 3.553660e-02 | True | teddy |
| 159 | 668892474547511297 | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | 0.421979 | True | 0.227060 | True | 1.682110e-01 | True | kelpie |
| 160 | 668902994700836864 | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | 0.828425 | True | 0.043082 | True | 2.800360e-02 | True | Brittany_spaniel |
| 161 | 668932921458302977 | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | 0.237638 | True | 0.195573 | True | 1.446580e-01 | True | standard_poodle |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | 0.367492 | True | 0.272621 | True | 6.700630e-02 | True | cocker_spaniel |
| 164 | 668975677807423489 | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | 0.605437 | True | 0.184783 | True | 1.162990e-01 | True | basset |
| 165 | 668979806671884288 | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | 0.608537 | True | 0.097078 | True | 7.602220e-02 | True | golden_retriever |
| 169 | 668989615043424256 | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | 0.917326 | True | 0.014918 | False | 1.352440e-02 | True | pug |
| 172 | 669000397445533696 | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | 0.822940 | True | 0.177035 | True | 2.335260e-05 | True | Pembroke |
| 173 | 669006782128353280 | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | 0.127178 | True | 0.054215 | True | 4.859160e-02 | False | Chihuahua |
| 175 | 669037058363662336 | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | 0.803528 | True | 0.053871 | True | 3.225740e-02 | True | Chihuahua |
| 176 | 669203728096960512 | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | 0.910452 | True | 0.055090 | True | 1.489660e-02 | True | pug |
| 178 | 669216679721873412 | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | 0.992758 | True | 0.003379 | True | 1.229630e-03 | True | golden_retriever |
| 180 | 669327207240699904 | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | 0.919584 | True | 0.049669 | True | 1.021610e-02 | True | golden_retriever |
| 181 | 669328503091937280 | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | 0.424202 | True | 0.237660 | True | 5.257170e-02 | True | Siberian_husky |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | 0.379656 | False | 0.212343 | True | 9.699530e-02 | True | teddy |
| 184 | 669354382627049472 | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | 0.973990 | True | 0.010832 | True | 2.098650e-03 | True | Chihuahua |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | 0.367818 | True | 0.280642 | True | 1.842460e-01 | True | Labrador_retriever |
| 186 | 669363888236994561 | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | 0.539004 | True | 0.406550 | True | 4.148440e-02 | True | golden_retriever |
| 187 | 669367896104181761 | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | 0.749394 | True | 0.133579 | True | 3.019840e-02 | True | basset |
| 188 | 669371483794317312 | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | 0.483268 | True | 0.307465 | True | 7.052380e-02 | True | Brabancon_griffon |
| 189 | 669375718304980992 | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | 0.168762 | True | 0.107479 | True | 9.784590e-02 | True | Airedale |
| 190 | 669393256313184256 | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | 0.359843 | True | 0.139519 | True | 1.327460e-01 | True | cocker_spaniel |
| 191 | 669564461267722241 | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | 0.623685 | True | 0.259920 | True | 8.252970e-02 | True | toy_poodle |
| 192 | 669567591774625800 | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | 0.980511 | True | 0.009166 | True | 2.658510e-03 | True | Chihuahua |
| 194 | 669573570759163904 | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | 0.946828 | True | 0.022344 | True | 9.461660e-03 | True | West_Highland_white_terrier |
| 196 | 669597912108789760 | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | 0.595665 | True | 0.214474 | True | 1.472350e-01 | False | Eskimo_dog |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | 0.659619 | True | 0.193539 | True | 3.932710e-02 | True | Maltese_dog |
| 200 | 669680153564442624 | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | 0.141257 | True | 0.137744 | True | 1.037920e-01 | True | dalmatian |
| 202 | 669683899023405056 | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | 0.998275 | True | 0.000605 | True | 5.156880e-04 | True | Pomeranian |
| 204 | 669753178989142016 | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | 0.858494 | True | 0.026319 | False | 2.240520e-02 | True | Pembroke |
| 206 | 669926384437997569 | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | 0.984231 | True | 0.010231 | True | 2.218970e-03 | True | Pomeranian |
| 207 | 669942763794931712 | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | 0.743216 | True | 0.217282 | True | 2.847350e-02 | True | vizsla |
| 208 | 669970042633789440 | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | 0.734744 | True | 0.131066 | True | 8.150940e-02 | True | miniature_pinscher |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | 0.953071 | False | 0.007027 | False | 5.368170e-03 | False | teddy |
| 211 | 670003130994700288 | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | 0.375313 | True | 0.174911 | True | 1.158880e-01 | True | beagle |
| 214 | 670046952931721218 | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | 0.998335 | True | 0.000647 | True | 3.918660e-04 | True | Blenheim_spaniel |
| 216 | 670061506722140161 | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | 0.329339 | True | 0.305294 | True | 1.116860e-01 | True | Italian_greyhound |
| 218 | 670073503555706880 | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | 0.601886 | True | 0.340106 | True | 5.004130e-02 | True | malamute |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | 0.273492 | True | 0.132944 | True | 1.245620e-01 | True | German_short-haired_pointer |
| 221 | 670093938074779648 | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | 0.383346 | True | 0.153678 | True | 1.385430e-01 | True | toy_poodle |
| 222 | 670290420111441920 | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | 0.368876 | True | 0.282102 | True | 1.787950e-01 | True | Chihuahua |
| 223 | 670303360680108032 | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | 0.380278 | True | 0.342806 | True | 1.562490e-01 | False | Shetland_sheepdog |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | 0.254856 | True | 0.227716 | True | 2.232630e-01 | True | Irish_terrier |
| 225 | 670338931251150849 | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | 0.245033 | True | 0.137709 | True | 8.917250e-02 | True | cairn |
| 227 | 670374371102445568 | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | 0.974936 | True | 0.011661 | True | 2.688990e-03 | True | English_springer |
| 228 | 670385711116361728 | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | 0.178027 | True | 0.105969 | True | 7.871970e-02 | True | whippet |
| 229 | 670403879788544000 | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | 0.802223 | True | 0.172557 | True | 7.162800e-03 | True | pug |
| 231 | 670411370698022913 | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | 0.584397 | True | 0.064201 | True | 6.086770e-02 | True | Maltese_dog |
| 234 | 670421925039075328 | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | 0.275793 | True | 0.073596 | False | 5.490510e-02 | False | Chihuahua |
| 236 | 670428280563085312 | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | 0.335269 | True | 0.305850 | True | 6.332530e-02 | True | chow |
| 240 | 670442337873600512 | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | 0.403552 | True | 0.256302 | True | 1.873150e-01 | True | Sussex_spaniel |
| 241 | 670444955656130560 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | 0.403698 | True | 0.347609 | True | 1.371860e-01 | True | English_springer |
| 248 | 670676092097810432 | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | 0.676102 | True | 0.040826 | True | 3.953330e-02 | True | Dandie_Dinmont |
| 249 | 670679630144274432 | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | 0.342734 | True | 0.229065 | True | 1.040290e-01 | True | Ibizan_hound |
| 250 | 670691627984359425 | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | 0.071124 | True | 0.068398 | False | 6.696390e-02 | True | Shetland_sheepdog |
| 251 | 670704688707301377 | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | 0.419838 | True | 0.351876 | True | 5.109370e-02 | True | Norwich_terrier |
| 252 | 670717338665226240 | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | 0.368161 | True | 0.350973 | True | 1.149020e-01 | True | Pomeranian |
| 255 | 670755717859713024 | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | 0.994065 | True | 0.001827 | True | 1.821310e-03 | True | keeshond |
| 256 | 670764103623966721 | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | 0.172850 | True | 0.072702 | True | 3.749420e-02 | False | Norfolk_terrier |
| 257 | 670778058496974848 | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | 0.776612 | True | 0.112032 | True | 3.905140e-02 | True | pug |
| 258 | 670780561024270336 | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | 0.244889 | True | 0.056993 | False | 5.399260e-02 | False | Labrador_retriever |
| 259 | 670782429121134593 | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | 0.952963 | True | 0.036575 | True | 1.977400e-03 | True | Chihuahua |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | 0.777124 | False | 0.127438 | True | 2.400660e-02 | True | dingo |
| 262 | 670789397210615808 | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | 0.295966 | True | 0.143527 | True | 1.389920e-01 | True | beagle |
| 264 | 670797304698376195 | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | 0.472197 | True | 0.090938 | True | 6.436600e-02 | True | Pembroke |
| 265 | 670803562457407488 | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | 0.344101 | True | 0.210282 | True | 1.962790e-01 | True | basenji |
| 266 | 670804601705242624 | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | 0.868560 | True | 0.090129 | True | 2.172210e-02 | True | Pomeranian |
| 267 | 670807719151067136 | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | 0.958035 | True | 0.013892 | True | 4.601140e-03 | True | Old_English_sheepdog |
| 268 | 670811965569282048 | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | 0.994090 | True | 0.003973 | True | 1.406190e-03 | True | basset |
| 269 | 670815497391357952 | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | 0.919714 | True | 0.073430 | True | 9.056790e-04 | True | American_Staffordshire_terrier |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | 0.947453 | True | 0.017001 | True | 1.543210e-02 | True | Labrador_retriever |
| 273 | 670832455012716544 | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | 0.317607 | True | 0.274901 | True | 1.146430e-01 | False | malinois |
| 274 | 670833812859932673 | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | 0.609853 | True | 0.265442 | False | 2.746040e-02 | True | Pekinese |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | 0.963622 | True | 0.016017 | True | 7.931920e-03 | False | Shih-Tzu |
| 279 | 671109016219725825 | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | 0.855959 | True | 0.036723 | True | 2.925780e-02 | True | basenji |
| 280 | 671115716440031232 | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | 0.406341 | True | 0.143366 | True | 1.298020e-01 | False | malinois |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | 0.180380 | True | 0.180194 | True | 1.736560e-01 | True | Shih-Tzu |
| 283 | 671138694582165504 | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | 0.587342 | True | 0.268952 | True | 9.052750e-02 | True | Samoyed |
| 285 | 671147085991960577 | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | 0.467202 | True | 0.440122 | True | 5.869010e-02 | True | Yorkshire_terrier |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | 0.781201 | True | 0.061206 | True | 4.885570e-02 | True | Rottweiler |
| 287 | 671154572044468225 | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | 0.495047 | True | 0.350188 | True | 1.424000e-01 | True | Labrador_retriever |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | 0.733025 | False | 0.119377 | False | 2.698290e-02 | True | African_hunting_dog |
| 291 | 671182547775299584 | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | 0.331179 | True | 0.218601 | True | 1.825200e-01 | True | Rottweiler |
| 292 | 671186162933985280 | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | 0.319106 | True | 0.169134 | True | 1.258150e-01 | True | Chihuahua |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | 0.382918 | False | 0.108809 | False | 3.887820e-02 | False | picket_fence |
| 294 | 671355857343524864 | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | 0.313811 | True | 0.165585 | True | 5.609410e-02 | True | miniature_poodle |
| 295 | 671357843010908160 | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | 0.831757 | True | 0.043306 | True | 3.677300e-02 | True | Italian_greyhound |
| 298 | 671485057807351808 | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | 0.627901 | True | 0.276421 | True | 5.787350e-02 | True | Samoyed |
| 299 | 671486386088865792 | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | 0.827035 | True | 0.087648 | True | 3.121790e-02 | False | German_shepherd |
| 302 | 671504605491109889 | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | 0.259115 | True | 0.177669 | False | 7.171250e-02 | True | toy_poodle |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | 0.428275 | True | 0.111472 | True | 1.050160e-01 | True | Lakeland_terrier |
| 305 | 671520732782923777 | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | 0.551031 | True | 0.135262 | True | 6.155740e-02 | False | Pomeranian |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | 0.782626 | True | 0.109678 | True | 5.211020e-02 | True | Doberman |
| 308 | 671536543010570240 | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | 0.537652 | True | 0.220617 | True | 6.829650e-02 | True | pug |
| 310 | 671542985629241344 | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | 0.980339 | True | 0.006693 | True | 6.157010e-03 | True | Shetland_sheepdog |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | 0.469373 | True | 0.270893 | True | 1.532330e-01 | True | Gordon_setter |
| 314 | 671729906628341761 | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | 0.431469 | True | 0.117122 | True | 9.006660e-02 | False | kuvasz |
| 316 | 671743150407421952 | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | 0.419427 | True | 0.237067 | True | 1.041930e-01 | False | toy_poodle |
| 319 | 671768281401958400 | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | 0.500373 | True | 0.112796 | True | 6.289270e-02 | True | Chihuahua |
| 320 | 671789708968640512 | https://pbs.twimg.com/tweet_video_thumb/CVKtH-4WIAAmiQ5.png | 1 | 0.114259 | True | 0.062275 | False | 4.970020e-02 | False | dalmatian |
| 322 | 671866342182637568 | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | 0.875614 | True | 0.032182 | True | 1.723250e-02 | True | Labrador_retriever |
| 326 | 671891728106971137 | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | 0.567933 | True | 0.349401 | True | 6.939620e-02 | False | Labrador_retriever |
| 327 | 671896809300709376 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | 0.243529 | True | 0.227150 | False | 5.605670e-02 | True | chow |
| 328 | 672068090318987265 | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | 0.863385 | True | 0.125746 | False | 2.972460e-03 | True | pug |
| 330 | 672095186491711488 | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | 0.794087 | True | 0.140796 | True | 4.468110e-02 | True | pug |
| 332 | 672139350159835138 | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | 0.290992 | True | 0.238120 | False | 1.155410e-01 | False | Rottweiler |
| 333 | 672160042234327040 | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | 0.561027 | True | 0.222114 | True | 6.545560e-02 | True | pug |
| 334 | 672169685991993344 | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | 0.991011 | True | 0.004032 | True | 1.275640e-03 | True | cocker_spaniel |
| 336 | 672222792075620352 | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | 0.958178 | True | 0.009117 | True | 7.731050e-03 | True | beagle |
| 338 | 672239279297454080 | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | 0.332536 | True | 0.258124 | True | 1.208730e-01 | True | pug |
| 339 | 672245253877968896 | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | 0.718944 | True | 0.178546 | False | 3.710310e-02 | True | Chihuahua |
| 340 | 672248013293752320 | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | 0.413173 | True | 0.335616 | True | 2.795230e-02 | True | Irish_terrier |
| 341 | 672254177670729728 | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | 0.979487 | True | 0.016850 | True | 1.617540e-03 | True | pug |
| 343 | 672264251789176834 | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | 0.609860 | True | 0.068134 | False | 5.922730e-02 | True | Chihuahua |
| 344 | 672267570918129665 | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | 0.716932 | True | 0.051234 | True | 4.438090e-02 | True | Irish_terrier |
| 345 | 672272411274932228 | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | 0.914685 | True | 0.014982 | True | 9.220550e-03 | False | pug |
| 346 | 672466075045466113 | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | 0.150424 | True | 0.088605 | True | 7.201430e-02 | True | cocker_spaniel |
| 348 | 672481316919734272 | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | 0.599454 | True | 0.106227 | True | 9.446490e-02 | True | Border_collie |
| 349 | 672482722825261057 | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | 0.586173 | True | 0.206620 | True | 6.065270e-02 | True | West_Highland_white_terrier |
| 350 | 672488522314567680 | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | 0.605358 | True | 0.108382 | True | 7.779770e-02 | True | Doberman |
| 351 | 672523490734551040 | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | 0.565981 | True | 0.081212 | True | 6.159600e-02 | True | golden_retriever |
| 354 | 672591762242805761 | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | 0.777659 | True | 0.112517 | True | 3.835090e-02 | True | kuvasz |
| 355 | 672594978741354496 | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | 0.755945 | True | 0.082337 | True | 2.703660e-02 | True | Great_Pyrenees |
| 356 | 672604026190569472 | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | 0.820158 | True | 0.178404 | True | 2.911580e-04 | False | toy_poodle |
| 359 | 672622327801233409 | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | 0.952773 | True | 0.010835 | True | 8.786010e-03 | True | golden_retriever |
| 360 | 672640509974827008 | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | 0.420155 | True | 0.266030 | True | 4.251450e-02 | True | Chesapeake_Bay_retriever |
| 362 | 672834301050937345 | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | 0.582560 | True | 0.258869 | True | 3.383450e-02 | False | Pembroke |
| 363 | 672877615439593473 | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | 0.412362 | True | 0.068066 | True | 4.507120e-02 | True | Chihuahua |
| 367 | 672964561327235073 | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | 0.292343 | True | 0.173364 | True | 4.550710e-02 | True | Chihuahua |
| 368 | 672968025906282496 | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | 0.678046 | True | 0.160273 | True | 6.564870e-02 | True | toy_poodle |
| 370 | 672975131468300288 | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | 0.836421 | True | 0.044668 | True | 3.657050e-02 | True | pug |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | 0.836632 | True | 0.073900 | True | 3.816010e-02 | True | Lakeland_terrier |
| 374 | 672995267319328768 | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | 0.719559 | True | 0.166927 | True | 1.013540e-01 | True | French_bulldog |
| 375 | 672997845381865473 | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | 0.517255 | True | 0.206053 | True | 1.270370e-01 | False | chow |
| 377 | 673213039743795200 | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | 0.888082 | True | 0.047727 | True | 4.139800e-02 | True | schipperke |
| 378 | 673240798075449344 | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | 0.443004 | True | 0.114162 | False | 9.463860e-02 | True | Airedale |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | 0.610453 | True | 0.166815 | True | 1.320150e-01 | True | Shih-Tzu |
| 380 | 673295268553605120 | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | 0.889241 | True | 0.064683 | True | 1.261260e-02 | True | golden_retriever |
| 381 | 673317986296586240 | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | 0.384099 | True | 0.079923 | True | 6.859410e-02 | True | miniature_pinscher |
| 382 | 673320132811366400 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | 0.978833 | True | 0.012763 | True | 1.853050e-03 | True | Samoyed |
| 384 | 673343217010679808 | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | 0.541408 | True | 0.156891 | True | 6.955580e-02 | True | Chihuahua |
| 386 | 673350198937153538 | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | 0.119188 | True | 0.104014 | False | 9.394400e-02 | True | West_Highland_white_terrier |
| 387 | 673352124999274496 | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | 0.672808 | True | 0.275885 | True | 2.225500e-02 | True | golden_retriever |
| 388 | 673355879178194945 | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | 0.529248 | True | 0.168296 | True | 1.004520e-01 | True | Rottweiler |
| 389 | 673359818736984064 | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | 0.696568 | True | 0.104046 | True | 3.483250e-02 | True | English_setter |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | 0.255210 | False | 0.098285 | False | 7.273510e-02 | False | teddy |
| 392 | 673580926094458881 | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | 0.985062 | True | 0.006418 | True | 3.532590e-03 | True | beagle |
| 394 | 673612854080196609 | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | 0.223101 | True | 0.111106 | True | 8.562630e-02 | False | Newfoundland |
| 396 | 673656262056419329 | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | 0.700625 | True | 0.094698 | True | 5.755940e-02 | True | bull_mastiff |
| 397 | 673662677122719744 | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | 0.957670 | True | 0.012413 | True | 5.689130e-03 | True | Labrador_retriever |
| 398 | 673680198160809984 | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | 0.989853 | True | 0.003344 | False | 2.801720e-03 | True | Samoyed |
| 399 | 673686845050527744 | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | 0.185903 | True | 0.172951 | False | 1.661830e-01 | True | Pekinese |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | 0.340806 | True | 0.234898 | True | 2.034950e-01 | True | soft-coated_wheaten_terrier |
| 401 | 673689733134946305 | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | 0.382220 | True | 0.350140 | True | 9.887390e-02 | False | Chesapeake_Bay_retriever |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | 0.165383 | True | 0.116977 | True | 6.389890e-02 | True | Shih-Tzu |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | 0.935771 | True | 0.022561 | True | 8.846650e-03 | True | German_short-haired_pointer |
| 406 | 673708611235921920 | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | 0.936333 | True | 0.024211 | True | 9.434850e-03 | True | golden_retriever |
| 407 | 673709992831262724 | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | 0.330171 | True | 0.181580 | False | 1.782270e-01 | True | Chihuahua |
| 408 | 673711475735838725 | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | 0.607401 | True | 0.143836 | True | 6.390700e-02 | True | Maltese_dog |
| 410 | 673887867907739649 | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | 0.216767 | True | 0.190958 | True | 1.632880e-01 | True | Brabancon_griffon |
| 413 | 673956914389192708 | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | 0.586161 | True | 0.082744 | True | 4.587770e-02 | True | pug |
| 415 | 674014384960745472 | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | 0.742320 | True | 0.084937 | True | 6.832090e-02 | True | Pembroke |
| 416 | 674019345211760640 | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | 0.992732 | True | 0.005043 | True | 1.724780e-03 | True | collie |
| 417 | 674024893172875264 | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | 0.648500 | True | 0.339835 | True | 6.448460e-03 | False | Pomeranian |
| 418 | 674036086168010753 | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | 0.685617 | True | 0.151936 | True | 4.553110e-02 | True | toy_poodle |
| 419 | 674038233588723717 | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | 0.358459 | True | 0.206963 | True | 1.482360e-01 | True | Eskimo_dog |
| 420 | 674042553264685056 | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | 0.927975 | True | 0.068946 | True | 1.315750e-03 | True | toy_poodle |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | 0.179777 | True | 0.160580 | False | 1.321540e-01 | False | Shih-Tzu |
| 423 | 674053186244734976 | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | 0.984725 | True | 0.008730 | True | 2.194770e-03 | True | Cardigan |
| 425 | 674075285688614912 | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | 0.305392 | True | 0.250014 | True | 1.886680e-01 | True | Airedale |
| 426 | 674082852460433408 | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | 0.666957 | True | 0.028019 | True | 2.068270e-02 | False | Pomeranian |
| 427 | 674255168825880576 | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | 0.615741 | True | 0.199544 | True | 1.791070e-01 | True | Eskimo_dog |
| 428 | 674262580978937856 | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | 0.519428 | True | 0.121500 | True | 1.144980e-01 | True | Greater_Swiss_Mountain_dog |
| 430 | 674269164442398721 | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | 0.622921 | True | 0.048659 | True | 1.696550e-02 | True | pug |
| 431 | 674271431610523648 | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | 0.991454 | True | 0.004150 | True | 3.019130e-03 | True | German_shepherd |
| 432 | 674291837063053312 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | 0.611525 | True | 0.368566 | True | 3.329570e-03 | True | Cardigan |
| 437 | 674416750885273600 | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | 0.287201 | True | 0.250920 | True | 1.410120e-01 | True | Chihuahua |
| 438 | 674422304705744896 | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | 0.964497 | True | 0.009006 | True | 7.138830e-03 | False | golden_retriever |
| 440 | 674447403907457024 | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | 0.409909 | True | 0.244649 | True | 7.481950e-02 | True | Brabancon_griffon |
| 441 | 674468880899788800 | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | 0.526230 | True | 0.283647 | True | 6.766540e-02 | True | chow |
| 443 | 674638615994089473 | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | 0.846986 | True | 0.142014 | True | 2.605040e-03 | True | Pomeranian |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | 0.837448 | True | 0.086166 | True | 1.605220e-02 | True | flat-coated_retriever |
| 447 | 674670581682434048 | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | 0.180079 | True | 0.178033 | True | 7.796610e-02 | True | malamute |
| 449 | 674737130913071104 | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | 0.948537 | True | 0.014310 | True | 8.120240e-03 | True | Pomeranian |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | 0.175915 | True | 0.096534 | False | 6.414470e-02 | True | Dandie_Dinmont |
| 451 | 674743008475090944 | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | 0.583054 | True | 0.065990 | True | 6.523620e-02 | True | Bernese_mountain_dog |
| 452 | 674752233200820224 | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | 0.665516 | True | 0.173366 | True | 1.347830e-01 | True | vizsla |
| 454 | 674764817387900928 | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | 0.634695 | True | 0.309853 | False | 1.964100e-02 | True | Samoyed |
| 456 | 674774481756377088 | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | 0.407016 | True | 0.309978 | True | 2.276770e-01 | False | Chihuahua |
| 458 | 674788554665512960 | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | 0.349561 | True | 0.154711 | True | 1.342290e-01 | True | miniature_poodle |
| 459 | 674790488185167872 | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | 0.801903 | True | 0.193575 | True | 1.193050e-03 | True | Labrador_retriever |
| 460 | 674793399141146624 | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | 0.119693 | True | 0.072763 | True | 6.378590e-02 | True | giant_schnauzer |
| 461 | 674800520222154752 | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | 0.876479 | True | 0.096911 | True | 9.195670e-03 | False | Pembroke |
| 462 | 674805413498527744 | https://pbs.twimg.com/ext_tw_video_thumb/674805331965399040/pu/img/-7bw8niVrgIkLKOW.jpg | 1 | 0.594467 | True | 0.389994 | True | 7.096110e-03 | True | English_springer |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | 0.591829 | True | 0.204544 | True | 7.860190e-02 | True | Rottweiler |
| 464 | 675003128568291329 | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | 0.655279 | True | 0.104164 | True | 5.281770e-02 | True | Pembroke |
| 465 | 675006312288268288 | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | 0.654697 | True | 0.043389 | False | 4.284760e-02 | True | boxer |
| 467 | 675047298674663426 | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | 0.978007 | True | 0.007121 | True | 6.397830e-03 | True | Samoyed |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | 0.989519 | True | 0.005258 | True | 1.442830e-03 | True | dalmatian |
| 469 | 675111688094527488 | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | 0.631501 | True | 0.101927 | True | 6.264980e-02 | True | Labrador_retriever |
| 472 | 675145476954566656 | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | 0.458746 | True | 0.235504 | True | 1.168640e-01 | True | Labrador_retriever |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | 0.288447 | False | 0.229944 | True | 1.904070e-01 | True | dingo |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | 0.949215 | True | 0.016765 | True | 1.063730e-02 | True | golden_retriever |
| 475 | 675149409102012420 | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | 0.999876 | True | 0.000059 | True | 2.877850e-05 | True | chow |
| 478 | 675334060156301312 | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | 0.773135 | True | 0.116810 | True | 3.903620e-02 | True | Pembroke |
| 479 | 675349384339542016 | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | 0.866367 | True | 0.122079 | True | 4.019720e-03 | True | borzoi |
| 481 | 675362609739206656 | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | 0.479008 | True | 0.218289 | False | 1.399110e-01 | True | Labrador_retriever |
| 482 | 675372240448454658 | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | 0.416385 | True | 0.102933 | True | 8.729950e-02 | True | Chihuahua |
| 483 | 675432746517426176 | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | 0.986548 | True | 0.008862 | True | 6.935280e-04 | True | Labrador_retriever |
| 485 | 675489971617296384 | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | 0.139613 | True | 0.118647 | False | 9.395220e-02 | True | West_Highland_white_terrier |
| 486 | 675497103322386432 | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | 0.519589 | True | 0.064771 | True | 6.149130e-02 | True | vizsla |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | 0.240591 | True | 0.156916 | True | 9.089940e-02 | True | Scottish_deerhound |
| 489 | 675522403582218240 | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | 0.299708 | True | 0.263665 | True | 8.032330e-02 | True | cocker_spaniel |
| 490 | 675531475945709568 | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | 0.918441 | True | 0.027339 | True | 2.022100e-02 | True | Pembroke |
| 491 | 675534494439489536 | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | 0.749368 | True | 0.133738 | True | 4.991380e-02 | True | chow |
| 492 | 675706639471788032 | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | 0.990300 | True | 0.002080 | True | 2.013780e-03 | True | English_springer |
| 494 | 675710890956750848 | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | 0.441427 | True | 0.248885 | True | 1.649670e-01 | True | standard_schnauzer |
| 495 | 675740360753160193 | https://pbs.twimg.com/ext_tw_video_thumb/675740268751138818/pu/img/dVaVeFAVT-lk_1ZV.jpg | 1 | 0.800495 | True | 0.097756 | True | 6.841460e-02 | True | golden_retriever |
| 496 | 675781562965868544 | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | 0.921968 | True | 0.017811 | True | 1.355540e-02 | True | Maltese_dog |
| 497 | 675798442703122432 | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | 0.681218 | True | 0.125121 | True | 8.039820e-02 | True | beagle |
| 498 | 675820929667219457 | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | 0.556373 | True | 0.201675 | True | 1.108480e-01 | True | basset |
| 499 | 675822767435051008 | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | 0.460710 | True | 0.202765 | True | 1.332660e-01 | True | Pomeranian |
| 500 | 675845657354215424 | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | 0.883952 | True | 0.011057 | True | 9.839810e-03 | True | pug |
| 501 | 675853064436391936 | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | 0.868367 | True | 0.043305 | True | 2.820720e-02 | True | Labrador_retriever |
| 502 | 675870721063669760 | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | 0.263892 | True | 0.184193 | True | 1.822410e-01 | True | golden_retriever |
| 504 | 675888385639251968 | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | 0.672117 | True | 0.146147 | True | 2.314140e-02 | True | West_Highland_white_terrier |
| 505 | 675891555769696257 | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | 0.305637 | True | 0.232057 | True | 1.178060e-01 | True | Italian_greyhound |
| 506 | 675898130735476737 | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | 0.407430 | True | 0.077037 | True | 7.459730e-02 | True | Labrador_retriever |
| 507 | 676089483918516224 | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | 0.743808 | True | 0.106697 | True | 4.233530e-02 | True | bull_mastiff |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | 0.225848 | True | 0.186873 | True | 1.069870e-01 | True | Shih-Tzu |
| 510 | 676146341966438401 | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | 0.388332 | True | 0.284121 | True | 3.486810e-02 | False | Irish_water_spaniel |
| 511 | 676191832485810177 | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | 0.376741 | True | 0.173114 | True | 7.148510e-02 | False | Chihuahua |
| 514 | 676237365392908289 | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | 0.961996 | True | 0.021793 | True | 6.916290e-03 | True | French_bulldog |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | 0.098283 | False | 0.098029 | True | 7.785210e-02 | False | teddy |
| 516 | 676430933382295552 | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | 0.583875 | True | 0.203671 | True | 3.612170e-02 | True | golden_retriever |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | 0.579472 | True | 0.133446 | True | 9.439660e-02 | True | Maltese_dog |
| 518 | 676470639084101634 | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | 0.790386 | True | 0.022885 | True | 1.534340e-02 | False | golden_retriever |
| 519 | 676496375194980353 | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | 0.985387 | True | 0.004417 | True | 3.892870e-03 | True | pug |
| 520 | 676533798876651520 | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | 0.265274 | True | 0.167614 | False | 1.175060e-01 | False | chow |
| 523 | 676588346097852417 | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | 0.976577 | True | 0.014324 | True | 2.301920e-03 | True | Boston_bull |
| 524 | 676603393314578432 | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | 0.877021 | True | 0.034182 | True | 2.840400e-02 | True | whippet |
| 527 | 676617503762681856 | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | 0.841084 | True | 0.120530 | True | 6.600340e-03 | True | Chihuahua |
| 529 | 676811746707918848 | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | 0.440916 | True | 0.345806 | True | 6.033120e-02 | True | Chihuahua |
| 531 | 676821958043033607 | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | 0.869804 | True | 0.079814 | True | 1.326300e-02 | True | Great_Pyrenees |
| 532 | 676864501615042560 | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | 0.371146 | True | 0.099596 | False | 4.896790e-02 | True | Chesapeake_Bay_retriever |
| 534 | 676936541936185344 | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | 0.545286 | True | 0.081482 | True | 4.739110e-02 | False | Chesapeake_Bay_retriever |
| 536 | 676946864479084545 | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | 0.752707 | True | 0.055655 | True | 4.101780e-02 | True | Pekinese |
| 538 | 676949632774234114 | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | 0.206479 | True | 0.139339 | True | 1.146060e-01 | True | Welsh_springer_spaniel |
| 539 | 676957860086095872 | https://pbs.twimg.com/ext_tw_video_thumb/676957802976419840/pu/img/dCj-qlXo73A5hf6Q.jpg | 1 | 0.772423 | True | 0.055902 | True | 3.115190e-02 | True | Labrador_retriever |
| 540 | 676975532580409345 | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | 0.363257 | True | 0.245862 | True | 1.255470e-01 | True | malamute |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | 0.282396 | True | 0.084112 | True | 5.953800e-02 | True | English_setter |
| 543 | 677269281705472000 | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | 0.656616 | True | 0.195405 | True | 1.310320e-02 | True | Shetland_sheepdog |
| 544 | 677301033169788928 | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | 0.661178 | True | 0.150119 | True | 1.197200e-01 | True | Japanese_spaniel |
| 545 | 677314812125323265 | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | 0.924127 | True | 0.054790 | True | 8.204040e-03 | True | Blenheim_spaniel |
| 547 | 677331501395156992 | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | 0.313464 | True | 0.218503 | True | 1.064620e-01 | True | beagle |
| 548 | 677334615166730240 | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | 0.859392 | True | 0.067292 | True | 4.953060e-02 | True | Lakeland_terrier |
| 549 | 677530072887205888 | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | 0.689259 | True | 0.026121 | True | 2.307470e-02 | True | Staffordshire_bullterrier |
| 550 | 677547928504967168 | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | 0.914978 | True | 0.084395 | True | 4.616630e-04 | True | American_Staffordshire_terrier |
| 552 | 677565715327688705 | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | 0.397295 | True | 0.199554 | True | 1.056410e-01 | False | basset |
| 554 | 677644091929329666 | https://pbs.twimg.com/ext_tw_video_thumb/677644010865999872/pu/img/zVHEMYnJKzq1SauT.jpg | 1 | 0.626236 | True | 0.128483 | True | 5.984040e-02 | False | Chihuahua |
| 556 | 677673981332312066 | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | 0.817908 | True | 0.077805 | False | 2.218420e-02 | True | Maltese_dog |
| 557 | 677687604918272002 | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | 0.573047 | True | 0.126758 | False | 1.080470e-01 | True | Pembroke |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | 0.916645 | True | 0.057883 | True | 2.012580e-02 | True | Shih-Tzu |
| 559 | 677700003327029250 | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | 0.120849 | True | 0.079206 | False | 6.308750e-02 | True | Siberian_husky |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | 0.662908 | False | 0.031891 | False | 2.543780e-02 | True | teddy |
| 561 | 677895101218201600 | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | 0.550702 | True | 0.060226 | True | 5.863100e-02 | True | dalmatian |
| 562 | 677918531514703872 | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | 0.199347 | True | 0.153225 | True | 1.077980e-01 | True | Eskimo_dog |
| 563 | 678021115718029313 | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | 0.822048 | True | 0.096085 | True | 3.270930e-02 | True | miniature_pinscher |
| 564 | 678255464182861824 | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | 0.613819 | True | 0.127931 | True | 6.212430e-02 | True | Chihuahua |
| 565 | 678278586130948096 | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | 0.897841 | True | 0.035717 | True | 1.710750e-02 | True | Maltese_dog |
| 566 | 678334497360859136 | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | 0.378643 | True | 0.095594 | True | 8.530920e-02 | True | Norfolk_terrier |
| 567 | 678341075375947776 | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | 0.853284 | True | 0.026230 | True | 2.412280e-02 | True | golden_retriever |
| 569 | 678389028614488064 | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | 0.516284 | True | 0.227402 | True | 1.032460e-01 | True | miniature_pinscher |
| 570 | 678396796259975168 | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | 0.956180 | True | 0.031803 | True | 6.276500e-03 | True | Pembroke |
| 572 | 678410210315247616 | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | 0.145877 | True | 0.098354 | True | 9.739340e-02 | True | schipperke |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | 0.759945 | True | 0.101194 | True | 5.603740e-02 | True | Maltese_dog |
| 574 | 678446151570427904 | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | 0.284492 | True | 0.189434 | True | 1.894300e-01 | True | Staffordshire_bullterrier |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | 0.338757 | True | 0.304470 | True | 9.339230e-02 | False | Labrador_retriever |
| 578 | 678755239630127104 | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | 0.606654 | True | 0.193831 | True | 4.837810e-02 | True | malamute |
| 579 | 678764513869611008 | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | 0.696646 | True | 0.074962 | True | 6.390120e-02 | True | Irish_terrier |
| 581 | 678774928607469569 | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | 0.194681 | True | 0.121821 | True | 9.684300e-02 | True | Pembroke |
| 582 | 678798276842360832 | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | 0.583122 | True | 0.129567 | True | 9.472660e-02 | True | Airedale |
| 583 | 678800283649069056 | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | 0.213673 | True | 0.146235 | True | 1.227010e-01 | True | Labrador_retriever |
| 584 | 678969228704284672 | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | 0.680251 | True | 0.201697 | True | 1.967590e-02 | True | Labrador_retriever |
| 585 | 678991772295516161 | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | 0.330216 | True | 0.187003 | True | 1.014200e-01 | True | Eskimo_dog |
| 588 | 679111216690831360 | https://pbs.twimg.com/ext_tw_video_thumb/679111114081370114/pu/img/hFca8BHjRopgD0cM.jpg | 1 | 0.189423 | True | 0.121988 | True | 1.211710e-01 | True | kelpie |
| 589 | 679132435750195208 | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | 0.194610 | True | 0.162855 | True | 1.598370e-01 | True | Scottish_deerhound |
| 590 | 679148763231985668 | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | 0.302685 | True | 0.124281 | False | 5.984600e-02 | True | Italian_greyhound |
| 591 | 679158373988876288 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | 0.272205 | True | 0.251530 | True | 1.168060e-01 | False | pug |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | 0.621780 | True | 0.197819 | True | 4.674500e-02 | True | toy_poodle |
| 593 | 679475951516934144 | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | 0.145742 | True | 0.139407 | True | 1.088210e-01 | True | Maltese_dog |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | 0.761972 | True | 0.150605 | False | 2.814790e-02 | False | Chihuahua |
| 597 | 679530280114372609 | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | 0.750256 | True | 0.169007 | False | 6.481490e-03 | False | dalmatian |
| 598 | 679722016581222400 | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | 0.459604 | True | 0.197913 | True | 8.702250e-02 | True | boxer |
| 600 | 679736210798047232 | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | 0.319139 | True | 0.154088 | True | 1.176880e-01 | True | French_bulldog |
| 601 | 679777920601223168 | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | 0.528819 | True | 0.420119 | True | 9.480590e-03 | True | bloodhound |
| 602 | 679828447187857408 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | 0.346545 | True | 0.166246 | True | 1.175020e-01 | True | Chihuahua |
| 603 | 679844490799091713 | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | 0.903832 | True | 0.034713 | True | 2.137800e-02 | True | Airedale |
| 605 | 679862121895714818 | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | 0.523206 | True | 0.431657 | True | 4.420790e-02 | True | EntleBucher |
| 607 | 680055455951884288 | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | 0.995466 | True | 0.001834 | True | 6.669490e-04 | True | Samoyed |
| 610 | 680100725817409536 | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | 0.698961 | True | 0.145971 | True | 3.488800e-02 | True | golden_retriever |
| 611 | 680115823365742593 | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | 0.999365 | True | 0.000544 | True | 2.815280e-05 | True | pug |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | 0.199121 | True | 0.197897 | True | 1.571300e-01 | True | Maltese_dog |
| 613 | 680145970311643136 | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | 0.457117 | True | 0.226481 | True | 6.768150e-02 | True | miniature_poodle |
| 614 | 680161097740095489 | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | 0.268681 | True | 0.125652 | True | 8.937270e-02 | True | bluetick |
| 616 | 680191257256136705 | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | 0.733253 | True | 0.251634 | True | 9.243210e-03 | True | Brittany_spaniel |
| 620 | 680473011644985345 | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | 0.796694 | True | 0.138709 | True | 1.625340e-02 | True | Lakeland_terrier |
| 621 | 680494726643068929 | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | 0.438627 | True | 0.111622 | True | 6.406080e-02 | True | kuvasz |
| 622 | 680497766108381184 | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | 0.538354 | True | 0.084289 | False | 7.669010e-02 | False | Chihuahua |
| 624 | 680609293079592961 | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | 0.700764 | True | 0.072390 | True | 3.961870e-02 | True | French_bulldog |
| 626 | 680801747103793152 | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | 0.996720 | True | 0.001439 | True | 5.176030e-04 | True | pug |
| 627 | 680836378243002368 | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | 0.427781 | True | 0.160669 | True | 1.112500e-01 | True | Pembroke |
| 628 | 680889648562991104 | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | 0.876337 | True | 0.078331 | True | 2.040750e-02 | True | Shetland_sheepdog |
| 629 | 680913438424612864 | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | 0.615678 | True | 0.126455 | True | 8.718360e-02 | True | Pomeranian |
| 630 | 680934982542561280 | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | 0.784398 | True | 0.055925 | True | 2.275010e-02 | True | Labrador_retriever |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | 0.289598 | True | 0.157195 | True | 7.443470e-02 | True | soft-coated_wheaten_terrier |
| 633 | 680970795137544192 | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | 0.713102 | True | 0.057426 | True | 5.601810e-02 | False | pug |
| 634 | 681193455364796417 | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | 0.992619 | True | 0.004356 | True | 8.140000e-04 | True | Pomeranian |
| 635 | 681231109724700672 | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | 0.406047 | True | 0.345646 | True | 1.479120e-01 | True | Irish_setter |
| 637 | 681261549936340994 | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | 0.382101 | True | 0.095429 | True | 6.573770e-02 | True | Tibetan_terrier |
| 638 | 681281657291280384 | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | 0.998830 | True | 0.000391 | True | 2.235820e-04 | True | Saint_Bernard |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | 0.482401 | True | 0.113672 | True | 9.622860e-02 | True | Lhasa |
| 641 | 681320187870711809 | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | 0.362596 | True | 0.245395 | True | 1.082320e-01 | True | Samoyed |
| 643 | 681523177663676416 | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | 0.205067 | True | 0.160439 | True | 1.562340e-01 | True | Norfolk_terrier |
| 644 | 681579835668455424 | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | 0.760671 | True | 0.096585 | True | 4.033260e-02 | True | Rottweiler |
| 645 | 681610798867845120 | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | 0.821704 | True | 0.116042 | True | 1.484720e-02 | True | toy_poodle |
| 646 | 681654059175129088 | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | 0.800538 | True | 0.146892 | True | 3.761250e-02 | True | Pomeranian |
| 648 | 681694085539872773 | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | 0.920992 | True | 0.060857 | True | 6.063720e-03 | True | toy_poodle |
| 649 | 681891461017812993 | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | 0.203570 | True | 0.134316 | False | 8.448230e-02 | True | Chihuahua |
| 650 | 681981167097122816 | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | 0.452577 | True | 0.403420 | True | 6.948570e-02 | True | Labrador_retriever |
| 652 | 682032003584274432 | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | 0.997953 | True | 0.000676 | True | 2.112460e-04 | True | schipperke |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | 0.364095 | False | 0.119243 | False | 3.512710e-02 | False | teddy |
| 656 | 682259524040966145 | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | 0.439670 | True | 0.340474 | True | 1.012530e-01 | True | Siberian_husky |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | 0.482288 | True | 0.315286 | True | 6.217890e-02 | True | curly-coated_retriever |
| 659 | 682393905736888321 | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | 0.657275 | True | 0.090286 | False | 4.822830e-02 | True | vizsla |
| 661 | 682429480204398592 | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | 0.594701 | True | 0.314091 | True | 3.777330e-02 | True | whippet |
| 662 | 682638830361513985 | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | 0.440781 | True | 0.411182 | True | 2.241220e-02 | True | English_springer |
| 663 | 682662431982772225 | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | 0.413824 | True | 0.263553 | True | 1.676180e-01 | True | beagle |
| 665 | 682750546109968385 | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | 0.947198 | True | 0.031128 | True | 5.512470e-03 | True | English_setter |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | 0.278600 | False | 0.155207 | True | 1.535980e-01 | False | dingo |
| 668 | 683030066213818368 | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | 0.722218 | True | 0.193804 | True | 5.519370e-02 | True | boxer |
| 670 | 683098815881154561 | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | 0.889848 | True | 0.053008 | True | 3.788120e-02 | True | golden_retriever |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | 0.901392 | True | 0.028605 | True | 1.780540e-02 | True | cocker_spaniel |
| 672 | 683142553609318400 | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | 0.605851 | True | 0.183470 | True | 7.966190e-02 | True | Leonberg |
| 673 | 683357973142474752 | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | 0.406509 | True | 0.154854 | True | 1.363660e-01 | True | Pembroke |
| 674 | 683391852557561860 | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | 0.992833 | True | 0.004749 | True | 1.391690e-03 | True | French_bulldog |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | 0.303512 | True | 0.211424 | True | 1.707250e-01 | True | Lakeland_terrier |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | 0.399560 | True | 0.267153 | True | 8.131910e-02 | True | Italian_greyhound |
| 677 | 683481228088049664 | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | 0.508951 | True | 0.442016 | True | 1.320600e-02 | True | keeshond |
| 678 | 683498322573824003 | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | 0.945362 | True | 0.026850 | True | 1.682640e-02 | True | Airedale |
| 679 | 683742671509258241 | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | 0.895279 | True | 0.022385 | True | 1.704520e-02 | True | Pembroke |
| 680 | 683773439333797890 | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | 0.072885 | True | 0.057866 | True | 5.325660e-02 | True | miniature_pinscher |
| 681 | 683828599284170753 | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | 0.577376 | True | 0.287131 | True | 1.175630e-01 | True | malamute |
| 682 | 683834909291606017 | https://pbs.twimg.com/ext_tw_video_thumb/683834825250320385/pu/img/yZdrqMlyky4KGOu6.jpg | 1 | 0.738449 | True | 0.102992 | True | 2.324720e-02 | True | Maltese_dog |
| 684 | 683852578183077888 | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | 0.551352 | True | 0.180678 | False | 1.640950e-01 | True | toy_poodle |
| 685 | 683857920510050305 | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | 0.174738 | True | 0.126101 | True | 1.228870e-01 | True | bluetick |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | 0.627856 | True | 0.173675 | True | 4.134170e-02 | True | Labrador_retriever |
| 688 | 684177701129875456 | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | 0.334783 | True | 0.162647 | True | 1.386120e-01 | True | chow |
| 689 | 684188786104872960 | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | 0.537782 | True | 0.082953 | True | 6.975990e-02 | True | kelpie |
| 690 | 684195085588783105 | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | 0.379365 | True | 0.121809 | True | 9.598090e-02 | True | Chihuahua |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | 0.791182 | True | 0.072444 | True | 7.148650e-02 | False | soft-coated_wheaten_terrier |
| 693 | 684225744407494656 | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | 0.203249 | True | 0.067958 | True | 6.532750e-02 | True | golden_retriever |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | 0.508498 | True | 0.115532 | False | 5.128010e-02 | False | Pembroke |
| 695 | 684460069371654144 | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | 0.673691 | True | 0.194897 | True | 5.947130e-02 | True | Labrador_retriever |
| 696 | 684481074559381504 | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | 0.937810 | True | 0.020307 | True | 1.735700e-02 | False | Chihuahua |
| 697 | 684538444857667585 | https://pbs.twimg.com/ext_tw_video_thumb/684538367950872576/pu/img/kTKOkSU45BS-fpq8.jpg | 1 | 0.702583 | True | 0.068218 | False | 4.332460e-02 | False | Chihuahua |
| 699 | 684594889858887680 | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | 0.948688 | True | 0.035352 | True | 3.878780e-03 | True | Weimaraner |
| 700 | 684800227459624960 | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | 0.294457 | True | 0.161885 | True | 1.209920e-01 | True | miniature_schnauzer |
| 702 | 684902183876321280 | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | 0.708034 | True | 0.291447 | True | 1.845610e-04 | False | Pembroke |
| 704 | 684926975086034944 | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | 0.769412 | True | 0.144893 | True | 2.143980e-02 | False | Labrador_retriever |
| 705 | 684940049151070208 | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | 0.665578 | True | 0.176846 | True | 6.517470e-02 | True | Border_collie |
| 707 | 685169283572338688 | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | 0.975096 | True | 0.014578 | True | 5.943480e-03 | True | Bernese_mountain_dog |
| 709 | 685268753634967552 | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | 0.999044 | True | 0.000547 | True | 2.351950e-04 | True | pug |
| 710 | 685307451701334016 | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | 0.963176 | True | 0.019468 | True | 8.604930e-03 | True | Pomeranian |
| 711 | 685315239903100929 | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | 0.470162 | True | 0.159677 | True | 1.050740e-01 | True | chow |
| 712 | 685321586178670592 | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | 0.972483 | True | 0.025469 | True | 4.575440e-04 | True | Boston_bull |
| 713 | 685325112850124800 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | 0.586937 | True | 0.398260 | True | 5.409690e-03 | True | golden_retriever |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | 0.253839 | True | 0.213349 | True | 8.383410e-02 | False | Lakeland_terrier |
| 717 | 685663452032069632 | https://pbs.twimg.com/ext_tw_video_thumb/685663358637486080/pu/img/3cXSHFZAgJQ_dDCf.jpg | 1 | 0.171174 | True | 0.090644 | False | 4.850770e-02 | False | Chesapeake_Bay_retriever |
| 719 | 685906723014619143 | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | 0.414963 | True | 0.063505 | True | 5.368220e-02 | True | Yorkshire_terrier |
| 720 | 685943807276412928 | https://pbs.twimg.com/ext_tw_video_thumb/685943751555051520/pu/img/rlBvQWaFPUMx1MTi.jpg | 1 | 0.200812 | True | 0.114512 | True | 9.451960e-02 | True | papillon |
| 721 | 685973236358713344 | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | 0.450678 | True | 0.430275 | True | 1.185900e-01 | True | Siberian_husky |
| 723 | 686007916130873345 | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | 0.885301 | True | 0.042335 | True | 1.049300e-02 | False | Rhodesian_ridgeback |
| 724 | 686034024800862208 | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | 0.236920 | True | 0.117608 | True | 1.039000e-01 | True | Great_Dane |
| 725 | 686050296934563840 | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | 0.985789 | True | 0.004083 | True | 3.333660e-03 | True | Pomeranian |
| 726 | 686358356425093120 | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | 0.985237 | True | 0.008841 | True | 2.321430e-03 | True | pug |
| 727 | 686377065986265092 | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | 0.830816 | True | 0.076325 | True | 3.744860e-02 | True | German_shepherd |
| 728 | 686386521809772549 | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | 0.477704 | True | 0.171673 | True | 8.833400e-02 | True | Yorkshire_terrier |
| 729 | 686606069955735556 | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | 0.320012 | True | 0.208172 | True | 7.897470e-02 | True | Labrador_retriever |
| 730 | 686618349602762752 | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | 0.441331 | True | 0.233180 | True | 9.358200e-02 | True | Rottweiler |
| 731 | 686683045143953408 | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | 0.100499 | True | 0.080671 | True | 7.940620e-02 | True | Norwich_terrier |
| 732 | 686730991906516992 | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | 0.338812 | True | 0.180925 | True | 1.800230e-01 | True | Tibetan_mastiff |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | 0.417107 | True | 0.341730 | True | 1.777020e-01 | True | Labrador_retriever |
| 737 | 687109925361856513 | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | 0.883086 | True | 0.022934 | True | 2.160560e-02 | True | borzoi |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | 0.178205 | True | 0.149164 | True | 1.205050e-01 | True | pug |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | 0.747208 | True | 0.091025 | True | 3.578780e-02 | True | Shih-Tzu |
| 742 | 687460506001633280 | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | 0.223366 | True | 0.183596 | True | 1.769160e-01 | True | Boston_bull |
| 744 | 687480748861947905 | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | 0.472273 | True | 0.166862 | True | 1.634110e-01 | True | English_springer |
| 745 | 687494652870668288 | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | 0.391471 | True | 0.273595 | True | 4.169190e-02 | True | Rottweiler |
| 746 | 687664829264453632 | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | 0.957365 | True | 0.038559 | True | 6.673610e-04 | True | pug |
| 747 | 687704180304273409 | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | 0.956063 | True | 0.012231 | True | 5.397480e-03 | True | miniature_pinscher |
| 748 | 687807801670897665 | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | 0.151113 | True | 0.135697 | True | 8.659120e-02 | True | Staffordshire_bullterrier |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | 0.873029 | True | 0.060924 | True | 1.703090e-02 | True | Lakeland_terrier |
| 750 | 687826841265172480 | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | 0.997210 | True | 0.000803 | True | 3.725150e-04 | True | Pomeranian |
| 751 | 688064179421470721 | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | 0.240602 | True | 0.180369 | True | 9.073880e-02 | True | Eskimo_dog |
| 752 | 688116655151435777 | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | 0.973819 | True | 0.010891 | True | 6.863890e-03 | True | pug |
| 755 | 688385280030670848 | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | 0.900437 | True | 0.022292 | True | 1.499680e-02 | False | golden_retriever |
| 756 | 688519176466644993 | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | 0.696372 | True | 0.121052 | True | 5.059200e-02 | True | Pembroke |
| 757 | 688547210804498433 | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | 0.531279 | True | 0.214197 | True | 5.383990e-02 | True | papillon |
| 758 | 688789766343622656 | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | 0.599660 | True | 0.380976 | True | 3.889020e-03 | True | American_Staffordshire_terrier |
| 759 | 688804835492233216 | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | 0.199512 | True | 0.096797 | True | 8.284820e-02 | True | malinois |
| 760 | 688828561667567616 | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | 0.614231 | True | 0.139392 | False | 3.115820e-02 | False | Cardigan |
| 762 | 688898160958271489 | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | 0.853170 | True | 0.039897 | True | 3.521960e-02 | True | Ibizan_hound |
| 764 | 688916208532455424 | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | 0.430544 | True | 0.206576 | False | 1.543520e-01 | True | Pembroke |
| 765 | 689143371370250240 | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | 0.303781 | True | 0.165132 | True | 1.490510e-01 | True | English_springer |
| 766 | 689154315265683456 | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | 0.816044 | True | 0.054135 | True | 3.064810e-02 | True | cocker_spaniel |
| 767 | 689275259254616065 | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | 0.215161 | True | 0.079051 | True | 7.022590e-02 | True | American_Staffordshire_terrier |
| 768 | 689280876073582592 | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | 0.637546 | True | 0.150694 | True | 1.039530e-01 | True | Chihuahua |
| 769 | 689283819090870273 | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | 0.267979 | True | 0.199619 | True | 1.274690e-01 | True | Scotch_terrier |
| 771 | 689517482558820352 | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | 0.799319 | True | 0.189537 | True | 3.386190e-03 | True | Pembroke |
| 772 | 689557536375177216 | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | 0.169482 | True | 0.161655 | True | 1.544140e-01 | False | Eskimo_dog |
| 774 | 689623661272240129 | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | 0.279604 | True | 0.208564 | False | 7.748090e-02 | True | toy_poodle |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | 0.225221 | False | 0.057625 | False | 5.356890e-02 | False | bustard |
| 776 | 689661964914655233 | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | 0.322818 | True | 0.246966 | True | 1.225410e-01 | True | Italian_greyhound |
| 777 | 689835978131935233 | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | 0.600186 | True | 0.298939 | True | 2.261560e-02 | True | collie |
| 778 | 689877686181715968 | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | 0.269155 | True | 0.111496 | True | 1.049390e-01 | True | Old_English_sheepdog |
| 781 | 689999384604450816 | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | 0.444499 | True | 0.129830 | True | 7.380570e-02 | True | standard_poodle |
| 782 | 690005060500217858 | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | 0.270287 | True | 0.114027 | True | 7.247480e-02 | False | Samoyed |
| 783 | 690015576308211712 | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | 0.949609 | True | 0.033084 | True | 1.666270e-02 | True | malamute |
| 786 | 690360449368465409 | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | 0.686933 | True | 0.076359 | True | 3.500700e-02 | True | pug |
| 787 | 690374419777196032 | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | 0.286345 | True | 0.107144 | True | 8.508580e-02 | False | kuvasz |
| 788 | 690400367696297985 | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | 0.426459 | True | 0.317368 | True | 7.761600e-02 | True | Pembroke |
| 789 | 690597161306841088 | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | 0.097500 | True | 0.091934 | False | 9.150480e-02 | False | Lhasa |
| 792 | 690728923253055490 | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | 0.422806 | True | 0.291586 | True | 7.618920e-02 | True | kuvasz |
| 793 | 690735892932222976 | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | 0.883229 | True | 0.109635 | True | 2.795070e-03 | True | golden_retriever |
| 796 | 690959652130045952 | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | 0.862964 | True | 0.044865 | True | 1.246780e-02 | True | golden_retriever |
| 798 | 691096613310316544 | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | 0.441269 | True | 0.278270 | False | 6.350350e-02 | False | borzoi |
| 799 | 691321916024623104 | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | 0.508981 | True | 0.207897 | True | 9.435330e-02 | True | Rottweiler |
| 800 | 691416866452082688 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | 0.530104 | True | 0.197314 | True | 8.251460e-02 | True | Lakeland_terrier |
| 801 | 691444869282295808 | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | 0.767563 | True | 0.085805 | True | 4.376930e-02 | True | Bernese_mountain_dog |
| 802 | 691459709405118465 | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | 0.551206 | True | 0.232544 | True | 9.521820e-02 | True | Shetland_sheepdog |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | 0.886232 | True | 0.077420 | True | 9.826430e-03 | True | bloodhound |
| 804 | 691675652215414786 | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | 0.182898 | True | 0.128077 | False | 9.787480e-02 | True | Chihuahua |
| 805 | 691756958957883396 | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | 0.342571 | True | 0.289096 | True | 7.646340e-02 | True | Saint_Bernard |
| 807 | 692017291282812928 | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | 0.247565 | True | 0.121377 | True | 9.936250e-02 | False | Tibetan_terrier |
| 808 | 692142790915014657 | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | 0.670068 | True | 0.190898 | False | 3.217790e-02 | True | toy_poodle |
| 809 | 692158366030913536 | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | 0.956565 | True | 0.018907 | False | 1.354440e-02 | True | pug |
| 810 | 692187005137076224 | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | 0.810592 | True | 0.119745 | True | 2.926480e-02 | True | Siberian_husky |
| 812 | 692530551048294401 | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | 0.486428 | True | 0.448518 | True | 4.150610e-02 | False | Siberian_husky |
| 813 | 692535307825213440 | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | 0.413090 | True | 0.199865 | True | 8.199060e-02 | True | pug |
| 814 | 692568918515392513 | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | 0.636845 | True | 0.163362 | True | 4.555400e-02 | True | golden_retriever |
| 815 | 692752401762250755 | https://pbs.twimg.com/tweet_video_thumb/CZ0mhduWkAICSGe.png | 1 | 0.471276 | True | 0.158850 | True | 1.386720e-01 | True | Samoyed |
| 816 | 692828166163931137 | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | 0.985857 | True | 0.007852 | False | 3.277700e-03 | False | Samoyed |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | 0.876977 | True | 0.036615 | True | 1.784770e-02 | True | German_short-haired_pointer |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | 0.403496 | True | 0.135164 | True | 8.871870e-02 | True | soft-coated_wheaten_terrier |
| 819 | 692905862751522816 | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | 0.162638 | True | 0.156287 | True | 8.147780e-02 | True | Mexican_hairless |
| 820 | 692919143163629568 | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | 0.612635 | True | 0.269744 | True | 4.866550e-02 | True | Saint_Bernard |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | 0.660099 | False | 0.039563 | False | 3.348780e-02 | True | ice_lolly |
| 822 | 693109034023534592 | https://pbs.twimg.com/ext_tw_video_thumb/693108992730632192/pu/img/ncJQQZf3eroMSF12.jpg | 1 | 0.740013 | True | 0.088739 | True | 4.746980e-02 | True | cocker_spaniel |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | 0.697480 | True | 0.200151 | True | 9.097040e-02 | True | Shih-Tzu |
| 824 | 693231807727280129 | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | 0.876413 | True | 0.078400 | True | 3.219410e-02 | True | vizsla |
| 825 | 693262851218264065 | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | 0.989333 | True | 0.007946 | True | 7.489320e-04 | True | golden_retriever |
| 826 | 693280720173801472 | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | 0.340008 | True | 0.175316 | True | 1.643370e-01 | False | Labrador_retriever |
| 829 | 693622659251335168 | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | 0.449298 | True | 0.385075 | True | 1.634850e-01 | True | malamute |
| 830 | 693629975228977152 | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | 0.841987 | True | 0.069791 | True | 3.871990e-02 | True | pug |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | 0.111893 | True | 0.074302 | True | 6.700040e-02 | True | Scottish_deerhound |
| 833 | 693942351086120961 | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | 0.550796 | True | 0.154770 | True | 8.080190e-02 | True | groenendael |
| 834 | 694001791655137281 | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | 0.769999 | True | 0.229228 | True | 2.468370e-04 | True | Pembroke |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | 0.441499 | False | 0.080870 | True | 7.209880e-02 | True | teddy |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | 0.352547 | True | 0.155720 | True | 1.166570e-01 | True | Shih-Tzu |
| 837 | 694329668942569472 | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | 0.990060 | True | 0.007436 | True | 1.617290e-03 | True | boxer |
| 838 | 694352839993344000 | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | 0.407886 | True | 0.328173 | True | 1.084040e-01 | True | Australian_terrier |
| 842 | 695051054296211456 | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | 0.761454 | True | 0.075395 | True | 4.159780e-02 | True | Boston_bull |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | 0.510106 | True | 0.071981 | True | 6.923100e-02 | True | Shih-Tzu |
| 845 | 695095422348574720 | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | 0.227784 | True | 0.218128 | True | 9.345740e-02 | True | papillon |
| 846 | 695314793360662529 | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | 0.678547 | True | 0.125046 | True | 4.899880e-02 | True | Maltese_dog |
| 847 | 695409464418041856 | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | 0.997445 | True | 0.001749 | True | 3.044040e-04 | True | pug |
| 848 | 695446424020918272 | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | 0.748904 | True | 0.121102 | True | 1.117670e-01 | True | basenji |
| 849 | 695629776980148225 | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | 0.693857 | True | 0.232117 | True | 1.286670e-02 | True | Old_English_sheepdog |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | 0.805139 | True | 0.121662 | True | 2.330250e-02 | True | soft-coated_wheaten_terrier |
| 851 | 695794761660297217 | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | 0.962139 | True | 0.030553 | False | 1.482340e-03 | False | Samoyed |
| 852 | 695816827381944320 | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | 0.382234 | True | 0.208302 | True | 1.313280e-01 | False | Pomeranian |
| 853 | 696405997980676096 | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | 0.132845 | True | 0.086005 | True | 6.558230e-02 | True | borzoi |
| 854 | 696488710901260288 | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | 0.369063 | True | 0.168204 | True | 1.205530e-01 | True | briard |
| 858 | 696886256886657024 | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | 0.383941 | True | 0.289085 | True | 5.654810e-02 | False | kuvasz |
| 859 | 696894894812565505 | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | 0.665628 | True | 0.104795 | True | 6.786800e-02 | True | Appenzeller |
| 860 | 696900204696625153 | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | 0.297735 | True | 0.266953 | True | 1.368140e-01 | True | Chihuahua |
| 862 | 697255105972801536 | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | 0.173989 | True | 0.165888 | True | 1.198900e-01 | True | Great_Dane |
| 863 | 697259378236399616 | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | 0.999223 | True | 0.000187 | True | 1.510710e-04 | True | Great_Dane |
| 864 | 697270446429966336 | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | 0.880014 | True | 0.100136 | True | 7.027060e-03 | True | toy_poodle |
| 865 | 697463031882764288 | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | 0.999885 | True | 0.000098 | True | 8.267760e-06 | True | Labrador_retriever |
| 868 | 697596423848730625 | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | 0.621668 | True | 0.366578 | True | 7.698190e-03 | True | Shetland_sheepdog |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | 0.521931 | True | 0.403451 | True | 3.991220e-02 | True | Lhasa |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | 0.126924 | True | 0.110037 | True | 9.081600e-02 | True | Great_Dane |
| 872 | 697990423684476929 | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | 0.984783 | True | 0.015018 | True | 7.358600e-05 | True | Pembroke |
| 873 | 697995514407682048 | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | 0.280222 | True | 0.161478 | True | 1.268840e-01 | True | Staffordshire_bullterrier |
| 874 | 698178924120031232 | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | 0.351868 | True | 0.207753 | True | 1.546060e-01 | True | Chesapeake_Bay_retriever |
| 875 | 698195409219559425 | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | 0.643690 | True | 0.102684 | True | 5.000780e-02 | True | Labrador_retriever |
| 876 | 698262614669991936 | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | 0.107948 | True | 0.075230 | True | 6.943610e-02 | True | Italian_greyhound |
| 877 | 698342080612007937 | https://pbs.twimg.com/ext_tw_video_thumb/698341973569245184/pu/img/Sj3A2vSfbKWSv61T.jpg | 1 | 0.883048 | True | 0.030579 | True | 1.299410e-02 | True | boxer |
| 878 | 698355670425473025 | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | 0.990191 | True | 0.002799 | True | 1.309520e-03 | False | pug |
| 879 | 698549713696649216 | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | 0.998544 | True | 0.001404 | True | 2.322000e-05 | True | French_bulldog |
| 880 | 698635131305795584 | https://pbs.twimg.com/ext_tw_video_thumb/698635005506015234/pu/img/wQ4yFXTZ-2QLt68b.jpg | 1 | 0.158464 | True | 0.089402 | True | 2.503730e-02 | True | Samoyed |
| 881 | 698703483621523456 | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | 0.931963 | True | 0.030695 | True | 1.289610e-02 | True | Brittany_spaniel |
| 882 | 698710712454139905 | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | 0.329895 | True | 0.165772 | False | 1.035960e-01 | False | Samoyed |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | 0.983131 | True | 0.005558 | True | 3.322210e-03 | True | German_short-haired_pointer |
| 884 | 698953797952008193 | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | 0.382378 | True | 0.102255 | True | 7.683370e-02 | False | Italian_greyhound |
| 885 | 698989035503689728 | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | 0.246340 | True | 0.243349 | True | 8.587100e-02 | True | Norfolk_terrier |
| 886 | 699036661657767936 | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | 0.222943 | True | 0.179938 | False | 1.630330e-01 | True | Chihuahua |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/699072391083880449/pu/img/fMp1-dvLMeio1Kzk.jpg | 1 | 0.599587 | True | 0.213069 | True | 1.542930e-01 | True | Shih-Tzu |
| 888 | 699079609774645248 | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | 0.667324 | True | 0.119550 | True | 9.759950e-02 | True | schipperke |
| 890 | 699323444782047232 | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | 0.309696 | True | 0.303700 | False | 7.726600e-02 | False | Labrador_retriever |
| 891 | 699370870310113280 | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | 0.337557 | True | 0.209130 | True | 1.369460e-01 | True | cairn |
| 892 | 699413908797464576 | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | 0.517479 | True | 0.155935 | True | 9.500090e-02 | True | Samoyed |
| 893 | 699423671849451520 | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | 0.997860 | True | 0.001825 | True | 2.989400e-04 | True | pug |
| 894 | 699434518667751424 | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | 0.836572 | True | 0.105946 | True | 2.514390e-02 | True | golden_retriever |
| 895 | 699446877801091073 | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | 0.969400 | True | 0.026059 | True | 3.505470e-03 | True | Pembroke |
| 897 | 699775878809702401 | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | 0.271683 | True | 0.164931 | True | 1.059180e-01 | True | Dandie_Dinmont |
| 898 | 699779630832685056 | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | 0.706038 | True | 0.165655 | True | 5.904750e-02 | True | malinois |
| 899 | 699788877217865730 | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | 0.355060 | True | 0.169736 | True | 9.988370e-02 | True | Border_terrier |
| 900 | 699801817392291840 | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | 0.808978 | True | 0.042428 | True | 2.353640e-02 | True | golden_retriever |
| 901 | 700002074055016451 | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | 0.369488 | True | 0.243367 | True | 1.616140e-01 | True | Chihuahua |
| 902 | 700029284593901568 | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | 0.726571 | True | 0.176828 | True | 7.013380e-02 | True | West_Highland_white_terrier |
| 904 | 700143752053182464 | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | 0.532460 | True | 0.103796 | False | 1.003710e-01 | False | golden_retriever |
| 906 | 700167517596164096 | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | 0.162585 | True | 0.120481 | True | 1.102840e-01 | True | beagle |
| 909 | 700518061187723268 | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | 0.569501 | True | 0.211308 | True | 1.218390e-01 | True | American_Staffordshire_terrier |
| 910 | 700747788515020802 | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | 0.481333 | True | 0.311769 | True | 7.496210e-02 | True | Great_Pyrenees |
| 912 | 700847567345688576 | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | 0.252514 | True | 0.153005 | True | 1.351990e-01 | True | Rhodesian_ridgeback |
| 913 | 700864154249383937 | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | 0.805857 | True | 0.187272 | True | 3.490900e-03 | True | kuvasz |
| 915 | 701214700881756160 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | 0.615163 | True | 0.159509 | True | 8.446570e-02 | True | Chihuahua |
| 916 | 701545186879471618 | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | 0.280893 | True | 0.112550 | True | 5.331720e-02 | True | Border_collie |
| 917 | 701570477911896070 | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | 0.907990 | True | 0.076883 | True | 8.472760e-03 | True | Yorkshire_terrier |
| 918 | 701601587219795968 | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | 0.993661 | True | 0.001505 | True | 8.666070e-04 | True | Chihuahua |
| 919 | 701889187134500865 | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | 0.902856 | True | 0.022634 | True | 1.197320e-02 | False | French_bulldog |
| 920 | 701952816642965504 | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | 0.331707 | True | 0.272485 | True | 1.694150e-01 | True | toy_poodle |
| 921 | 701981390485725185 | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | 0.491022 | True | 0.130879 | False | 9.924100e-02 | True | Pomeranian |
| 922 | 702217446468493312 | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | 0.242419 | True | 0.226800 | True | 1.940860e-01 | True | golden_retriever |
| 923 | 702276748847800320 | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | 0.697303 | True | 0.239015 | True | 1.983810e-02 | True | Boston_bull |
| 924 | 702321140488925184 | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | 0.769159 | True | 0.064369 | True | 4.376340e-02 | True | West_Highland_white_terrier |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | 0.714367 | True | 0.040574 | True | 3.251050e-02 | True | Pomeranian |
| 926 | 702598099714314240 | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | 0.219179 | True | 0.133584 | False | 7.444000e-02 | False | kelpie |
| 927 | 702671118226825216 | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | 0.381227 | True | 0.212017 | True | 1.286220e-01 | True | bloodhound |
| 928 | 702684942141153280 | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | 0.514085 | True | 0.173224 | True | 1.183840e-01 | True | golden_retriever |
| 931 | 703079050210877440 | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | 0.778503 | True | 0.093834 | True | 6.029640e-02 | True | Pembroke |
| 933 | 703356393781329922 | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | 0.894842 | True | 0.097364 | True | 3.036740e-03 | True | Border_collie |
| 934 | 703382836347330562 | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | 0.945664 | True | 0.014392 | True | 1.202170e-02 | True | golden_retriever |
| 936 | 703425003149250560 | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | 0.292866 | True | 0.142122 | False | 7.084900e-02 | True | miniature_pinscher |
| 937 | 703611486317502464 | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | 0.756441 | True | 0.126621 | True | 8.011670e-02 | True | Pembroke |
| 939 | 703769065844768768 | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | 0.838994 | True | 0.088800 | True | 3.168390e-02 | True | boxer |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | 0.990119 | True | 0.008026 | True | 1.242290e-03 | True | Labrador_retriever |
| 941 | 704054845121142784 | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | 0.667939 | True | 0.228764 | True | 4.388540e-02 | True | Great_Pyrenees |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | 0.233378 | False | 0.088474 | False | 8.291730e-02 | True | teddy |
| 944 | 704364645503647744 | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | 0.980695 | True | 0.018504 | True | 2.152930e-04 | True | Pembroke |
| 945 | 704480331685040129 | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | 0.979206 | True | 0.007185 | True | 6.438090e-03 | False | Samoyed |
| 946 | 704499785726889984 | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | 0.376541 | True | 0.098057 | False | 8.521090e-02 | True | Chihuahua |
| 949 | 704847917308362754 | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | 0.857240 | True | 0.135460 | True | 1.903320e-03 | True | golden_retriever |
| 950 | 704859558691414016 | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | 0.284428 | True | 0.156339 | False | 1.389150e-01 | False | pug |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | 0.689504 | True | 0.101480 | True | 5.577850e-02 | True | Norfolk_terrier |
| 952 | 705066031337840642 | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | 0.868658 | True | 0.027587 | True | 2.532360e-02 | True | Airedale |
| 953 | 705102439679201280 | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | 0.457672 | True | 0.279101 | True | 7.692230e-02 | True | collie |
| 955 | 705239209544720384 | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | 0.157950 | True | 0.089920 | True | 6.322450e-02 | True | Chihuahua |
| 956 | 705428427625635840 | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | 0.774792 | True | 0.073079 | False | 2.236510e-02 | True | Chihuahua |
| 957 | 705442520700944385 | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | 0.309106 | True | 0.224556 | True | 2.021000e-01 | False | Great_Pyrenees |
| 958 | 705475953783398401 | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | 0.908784 | True | 0.030361 | True | 4.995620e-03 | False | golden_retriever |
| 959 | 705591895322394625 | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | 0.877207 | True | 0.047854 | True | 3.563810e-02 | True | basenji |
| 961 | 705898680587526145 | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | 0.808276 | True | 0.059437 | True | 2.672030e-02 | True | collie |
| 962 | 705970349788291072 | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | 0.776346 | True | 0.112413 | True | 3.695290e-02 | True | golden_retriever |
| 963 | 705975130514706432 | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | 0.587764 | True | 0.281429 | True | 9.479810e-02 | True | Staffordshire_bullterrier |
| 964 | 706166467411222528 | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | 0.430418 | True | 0.279600 | True | 1.174800e-01 | True | Samoyed |
| 965 | 706265994973601792 | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | 0.743715 | True | 0.114042 | True | 4.771520e-02 | True | papillon |
| 966 | 706291001778950144 | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | 0.587101 | True | 0.164087 | True | 1.050110e-01 | True | Border_terrier |
| 967 | 706310011488698368 | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | 0.698165 | True | 0.105834 | True | 6.203040e-02 | True | Pembroke |
| 968 | 706346369204748288 | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | 0.956462 | True | 0.025381 | True | 8.679210e-03 | True | Tibetan_mastiff |
| 969 | 706516534877929472 | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | 0.772685 | True | 0.071665 | True | 2.099310e-02 | False | golden_retriever |
| 970 | 706538006853918722 | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | 0.541794 | True | 0.094918 | True | 8.543940e-02 | True | chow |
| 973 | 706681918348251136 | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | 0.717584 | True | 0.151433 | True | 4.708700e-02 | True | toy_poodle |
| 975 | 707014260413456384 | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | 0.583780 | True | 0.129683 | True | 8.915270e-02 | True | Chihuahua |
| 976 | 707021089608753152 | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | 0.559658 | True | 0.314673 | True | 6.667170e-02 | True | cocker_spaniel |
| 977 | 707038192327901184 | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | 0.642426 | True | 0.057306 | False | 5.418650e-02 | True | pug |
| 978 | 707059547140169728 | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | 0.897312 | True | 0.039180 | True | 1.951600e-02 | True | Samoyed |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | 0.370717 | True | 0.201566 | True | 1.015590e-01 | False | Blenheim_spaniel |
| 980 | 707315916783140866 | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | 0.979235 | True | 0.011037 | True | 3.971110e-03 | True | Bernese_mountain_dog |
| 981 | 707377100785885184 | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | 0.637225 | True | 0.094542 | True | 6.979710e-02 | True | golden_retriever |
| 982 | 707387676719185920 | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | 0.888468 | True | 0.088635 | True | 1.593830e-02 | True | Chihuahua |
| 983 | 707411934438625280 | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | 0.738277 | True | 0.028515 | True | 2.487630e-02 | True | Lakeland_terrier |
| 985 | 707610948723478529 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | 0.383223 | True | 0.165930 | True | 1.181990e-01 | True | golden_retriever |
| 987 | 707741517457260545 | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | 0.738371 | True | 0.191789 | True | 2.012570e-02 | True | whippet |
| 988 | 707776935007539200 | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | 0.890426 | True | 0.051335 | True | 1.801530e-02 | True | miniature_pinscher |
| 989 | 707969809498152960 | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | 0.908491 | True | 0.082652 | True | 5.786130e-03 | False | toy_poodle |
| 991 | 708026248782585858 | https://pbs.twimg.com/ext_tw_video_thumb/708026062568087553/pu/img/rNhylAwIfb6YthGu.jpg | 1 | 0.786468 | True | 0.068979 | True | 2.930440e-02 | False | malinois |
| 992 | 708109389455101952 | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | 0.516106 | True | 0.236075 | True | 6.974950e-02 | True | Staffordshire_bullterrier |
| 993 | 708119489313951744 | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | 0.264483 | True | 0.258786 | True | 9.689870e-02 | True | Norwich_terrier |
| 994 | 708130923141795840 | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | 0.710354 | True | 0.262302 | True | 6.903820e-03 | True | French_bulldog |
| 995 | 708149363256774660 | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | 0.350993 | True | 0.164555 | True | 8.048360e-02 | True | Cardigan |
| 997 | 708356463048204288 | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | 0.871283 | True | 0.041820 | True | 1.522800e-02 | False | pug |
| 998 | 708469915515297792 | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | 0.748163 | True | 0.127717 | True | 4.214100e-02 | True | Chihuahua |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | 0.218479 | True | 0.201966 | True | 1.652250e-01 | True | Shih-Tzu |
| 1001 | 708738143638450176 | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | 0.933457 | True | 0.057221 | True | 9.041510e-04 | True | Pomeranian |
| 1002 | 708810915978854401 | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | 0.976139 | True | 0.016301 | True | 1.871370e-03 | True | golden_retriever |
| 1003 | 708834316713893888 | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | 0.283945 | True | 0.218252 | False | 1.804010e-01 | True | Eskimo_dog |
| 1004 | 708845821941387268 | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | 0.745640 | True | 0.167853 | True | 1.476290e-02 | True | schipperke |
| 1006 | 709158332880297985 | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | 0.212957 | True | 0.178887 | True | 1.742180e-01 | True | Siberian_husky |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | 0.490783 | True | 0.083513 | True | 8.318430e-02 | True | borzoi |
| 1008 | 709207347839836162 | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | 0.948323 | True | 0.017730 | True | 1.668790e-02 | False | Chihuahua |
| 1009 | 709225125749587968 | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | 0.271109 | True | 0.150487 | True | 1.455780e-01 | True | Labrador_retriever |
| 1010 | 709409458133323776 | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | 0.797450 | True | 0.054055 | True | 3.167330e-02 | True | Shetland_sheepdog |
| 1011 | 709449600415961088 | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | 0.780187 | True | 0.074429 | True | 3.377620e-02 | True | Maltese_dog |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | 0.414982 | True | 0.225482 | True | 1.967890e-01 | True | cocker_spaniel |
| 1013 | 709556954897764353 | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | 0.790026 | True | 0.105031 | True | 8.705120e-02 | True | golden_retriever |
| 1014 | 709566166965075968 | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | 0.999837 | True | 0.000117 | True | 1.133840e-05 | True | chow |
| 1015 | 709852847387627521 | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | 0.945629 | True | 0.019204 | True | 1.013420e-02 | True | Chihuahua |
| 1017 | 709918798883774466 | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | 0.956222 | True | 0.020727 | True | 7.912180e-03 | True | Pembroke |
| 1018 | 710117014656950272 | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | 0.802092 | True | 0.111647 | True | 6.286620e-02 | True | toy_poodle |
| 1019 | 710140971284037632 | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | 0.953170 | True | 0.019517 | True | 5.820510e-03 | True | Pekinese |
| 1021 | 710269109699739648 | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | 0.415495 | True | 0.178157 | True | 1.002020e-01 | True | pug |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | 0.586307 | True | 0.118622 | True | 1.068060e-01 | True | Old_English_sheepdog |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | 0.932401 | True | 0.030806 | True | 8.974280e-03 | True | Shih-Tzu |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | 0.948617 | True | 0.018664 | True | 1.594270e-02 | True | soft-coated_wheaten_terrier |
| 1026 | 710833117892898816 | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | 0.803742 | True | 0.189712 | True | 1.746090e-03 | True | Pembroke |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | 0.536593 | False | 0.200407 | True | 6.073450e-02 | True | dingo |
| 1028 | 710997087345876993 | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | 0.281260 | True | 0.232641 | True | 9.160200e-02 | True | malamute |
| 1029 | 711008018775851008 | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | 0.731405 | True | 0.150672 | True | 2.181090e-02 | True | French_bulldog |
| 1031 | 711363825979756544 | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | 0.750906 | True | 0.241152 | True | 2.639620e-03 | True | Pembroke |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | 0.366875 | False | 0.334929 | True | 7.387620e-02 | True | dingo |
| 1035 | 711743778164514816 | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | 0.459515 | True | 0.219661 | True | 1.301890e-01 | True | Lakeland_terrier |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | 0.625129 | True | 0.126897 | True | 1.196630e-01 | True | Shih-Tzu |
| 1041 | 712097430750289920 | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | 0.720481 | True | 0.048032 | True | 4.504640e-02 | True | Labrador_retriever |
| 1043 | 712668654853337088 | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | 0.829058 | True | 0.038664 | True | 2.622140e-02 | True | Labrador_retriever |
| 1044 | 712717840512598017 | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | 0.732043 | True | 0.121375 | True | 4.952370e-02 | True | Great_Pyrenees |
| 1045 | 712809025985978368 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | 0.868671 | True | 0.095095 | False | 7.651370e-03 | True | Labrador_retriever |
| 1047 | 713177543487135744 | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | 0.734244 | True | 0.025948 | True | 2.587430e-02 | True | whippet |
| 1048 | 713411074226274305 | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | 0.720337 | True | 0.129542 | True | 1.224510e-01 | True | Great_Pyrenees |
| 1049 | 713761197720473600 | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | 0.797936 | True | 0.044718 | True | 3.791070e-02 | True | Brittany_spaniel |
| 1050 | 713900603437621249 | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | 0.371816 | True | 0.177413 | True | 9.272520e-02 | True | golden_retriever |
| 1051 | 713919462244790272 | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | 0.463223 | True | 0.389959 | True | 9.796270e-02 | True | Siberian_husky |
| 1052 | 714141408463036416 | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | 0.586951 | True | 0.378812 | True | 3.604890e-03 | True | Labrador_retriever |
| 1053 | 714214115368108032 | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | 0.533967 | True | 0.164826 | True | 4.652400e-02 | True | pug |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | 0.751962 | True | 0.175652 | True | 1.145240e-02 | True | soft-coated_wheaten_terrier |
| 1055 | 714258258790387713 | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | 0.176758 | True | 0.101834 | True | 1.012940e-01 | True | collie |
| 1056 | 714606013974974464 | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | 0.293007 | True | 0.256198 | True | 1.296430e-01 | True | Norfolk_terrier |
| 1058 | 714957620017307648 | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | 0.251516 | True | 0.139346 | True | 1.290050e-01 | True | Great_Pyrenees |
| 1059 | 714982300363173890 | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | 0.944376 | True | 0.025435 | True | 9.962040e-03 | True | Brittany_spaniel |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | 0.310903 | False | 0.142288 | True | 1.039450e-01 | True | dingo |
| 1061 | 715200624753819648 | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | 0.956787 | True | 0.008383 | True | 8.344090e-03 | True | Chihuahua |
| 1062 | 715220193576927233 | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | 0.584026 | True | 0.377077 | True | 1.740040e-02 | True | Chihuahua |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | 0.597111 | True | 0.142993 | True | 1.367120e-01 | True | West_Highland_white_terrier |
| 1065 | 715680795826982913 | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | 0.990715 | True | 0.002228 | True | 1.197150e-03 | True | golden_retriever |
| 1066 | 715696743237730304 | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | 0.427836 | True | 0.221409 | True | 1.321350e-01 | True | Staffordshire_bullterrier |
| 1067 | 715733265223708672 | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | 0.740229 | True | 0.081915 | True | 6.374850e-02 | True | Dandie_Dinmont |
| 1068 | 715928423106027520 | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | 0.976685 | True | 0.019663 | True | 2.278190e-03 | True | pug |
| 1069 | 716080869887381504 | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | 0.638625 | True | 0.254717 | True | 7.173170e-02 | True | golden_retriever |
| 1070 | 716285507865542656 | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | 0.430420 | True | 0.196769 | True | 7.267610e-02 | True | Yorkshire_terrier |
| 1071 | 716439118184652801 | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | 0.396495 | True | 0.317053 | True | 2.734190e-01 | True | Siberian_husky |
| 1072 | 716791146589110272 | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | 0.468751 | True | 0.154652 | False | 1.250170e-01 | True | Pomeranian |
| 1073 | 716802964044845056 | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | 0.619577 | True | 0.118089 | True | 6.650780e-02 | True | malinois |
| 1074 | 717009362452090881 | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | 0.506154 | True | 0.269656 | True | 6.065850e-02 | True | Siberian_husky |
| 1075 | 717047459982213120 | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | 0.983548 | True | 0.012185 | True | 2.412030e-03 | True | golden_retriever |
| 1076 | 717421804990701568 | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | 0.286479 | True | 0.084134 | True | 6.469700e-02 | True | miniature_pinscher |
| 1077 | 717537687239008257 | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | 0.779356 | True | 0.052511 | True | 4.981050e-02 | True | golden_retriever |
| 1079 | 717841801130979328 | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | 0.922876 | True | 0.070113 | True | 2.560790e-03 | False | Brittany_spaniel |
| 1080 | 718234618122661888 | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | 0.370152 | True | 0.356398 | True | 2.710420e-01 | True | malamute |
| 1081 | 718246886998687744 | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | 0.354488 | True | 0.159672 | False | 5.749830e-02 | True | Chihuahua |
| 1084 | 718540630683709445 | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | 0.632289 | True | 0.187055 | True | 4.441290e-02 | True | Maltese_dog |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | 0.584580 | True | 0.340657 | True | 3.197510e-02 | True | Labrador_retriever |
| 1086 | 718631497683582976 | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | 0.993718 | True | 0.003611 | True | 5.248230e-04 | False | Pomeranian |
| 1087 | 718939241951195136 | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | 0.766327 | True | 0.222126 | True | 6.757230e-03 | False | Pembroke |
| 1088 | 718971898235854848 | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | 0.140394 | True | 0.118769 | True | 7.549170e-02 | True | golden_retriever |
| 1089 | 719332531645071360 | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | 0.224415 | True | 0.204882 | True | 9.063290e-02 | True | Dandie_Dinmont |
| 1090 | 719339463458033665 | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | 0.765778 | True | 0.071148 | True | 7.037050e-02 | True | golden_retriever |
| 1092 | 719551379208073216 | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | 0.873233 | True | 0.076435 | True | 3.574500e-02 | True | malamute |
| 1094 | 719991154352222208 | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | 0.605304 | True | 0.130948 | True | 9.469160e-02 | True | golden_retriever |
| 1095 | 720043174954147842 | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | 0.954517 | True | 0.029130 | True | 4.462030e-03 | False | Samoyed |
| 1096 | 720059472081784833 | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | 0.451852 | True | 0.254884 | True | 9.481810e-02 | True | Mexican_hairless |
| 1098 | 720389942216527872 | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | 0.873977 | True | 0.043339 | True | 1.919710e-02 | True | Pembroke |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | 0.990312 | True | 0.002495 | True | 1.733120e-03 | False | Rottweiler |
| 1100 | 720775346191278080 | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | 0.489970 | True | 0.174497 | True | 7.906670e-02 | True | Newfoundland |
| 1101 | 720785406564900865 | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | 0.896422 | True | 0.027929 | False | 1.791580e-02 | True | Chihuahua |
| 1102 | 721001180231503872 | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | 0.950053 | True | 0.006321 | False | 6.243350e-03 | False | Samoyed |
| 1103 | 721503162398597120 | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | 0.997750 | True | 0.001248 | True | 7.750020e-04 | True | Pomeranian |
| 1104 | 722613351520608256 | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | 0.530915 | True | 0.288230 | True | 4.485370e-02 | True | Labrador_retriever |
| 1105 | 722974582966214656 | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | 0.246762 | True | 0.126131 | True | 8.529690e-02 | True | Great_Dane |
| 1107 | 723673163800948736 | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | 0.839390 | True | 0.065706 | True | 1.294100e-02 | False | golden_retriever |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | 0.263256 | False | 0.089010 | True | 6.530570e-02 | True | teddy |
| 1109 | 723912936180330496 | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | 0.991772 | True | 0.003626 | True | 2.231830e-03 | True | Samoyed |
| 1111 | 724046343203856385 | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | 0.826272 | True | 0.158595 | True | 1.185860e-02 | True | boxer |
| 1112 | 724049859469295616 | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | 0.581835 | True | 0.344588 | True | 4.358420e-02 | True | Border_collie |
| 1113 | 724405726123311104 | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | 0.240695 | True | 0.202444 | True | 1.593480e-01 | False | golden_retriever |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | 0.835491 | True | 0.058788 | True | 3.720830e-02 | True | German_short-haired_pointer |
| 1115 | 724983749226668032 | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | 0.675750 | True | 0.095168 | True | 7.604290e-02 | True | golden_retriever |
| 1116 | 725729321944506368 | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | 0.599076 | True | 0.177318 | True | 1.414610e-01 | True | boxer |
| 1117 | 725786712245440512 | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | 0.335761 | True | 0.167173 | True | 1.457150e-01 | True | chow |
| 1118 | 725842289046749185 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | 0.420463 | True | 0.132640 | True | 1.215230e-01 | True | toy_poodle |
| 1119 | 726224900189511680 | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | 0.261112 | True | 0.094785 | True | 6.994640e-02 | False | standard_poodle |
| 1120 | 726828223124897792 | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | 0.255327 | True | 0.181279 | True | 1.251850e-01 | True | miniature_pinscher |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | 0.515919 | True | 0.162655 | True | 1.251820e-01 | True | soft-coated_wheaten_terrier |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | 0.821615 | False | 0.083749 | True | 3.331800e-02 | True | teddy |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | 0.656463 | True | 0.084766 | True | 5.890850e-02 | True | flat-coated_retriever |
| 1125 | 727314416056803329 | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | 0.827469 | True | 0.160760 | True | 1.730750e-03 | True | toy_poodle |
| 1126 | 727524757080539137 | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | 0.958834 | True | 0.024099 | True | 3.941050e-03 | True | Pomeranian |
| 1127 | 727644517743104000 | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | 0.457164 | True | 0.391710 | True | 9.452260e-02 | True | Great_Pyrenees |
| 1128 | 727685679342333952 | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | 0.462408 | True | 0.214556 | True | 3.560360e-02 | True | Border_collie |
| 1129 | 728015554473250816 | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | 0.384559 | True | 0.091661 | True | 8.179890e-02 | False | cocker_spaniel |
| 1131 | 728046963732717569 | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | 0.255971 | True | 0.175583 | True | 1.641350e-01 | True | Newfoundland |
| 1132 | 728387165835677696 | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | 0.266414 | True | 0.138546 | True | 1.090140e-01 | True | collie |
| 1135 | 728751179681943552 | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | 0.482050 | True | 0.202740 | True | 3.797580e-02 | True | Saint_Bernard |
| 1136 | 728760639972315136 | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | 0.939134 | True | 0.054336 | True | 5.590290e-03 | True | Pembroke |
| 1137 | 728986383096946689 | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | 0.952070 | True | 0.027271 | True | 4.874360e-03 | True | Maltese_dog |
| 1139 | 729463711119904772 | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | 0.829307 | True | 0.022500 | True | 2.119010e-02 | True | German_shepherd |
| 1140 | 729823566028484608 | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | 0.218408 | True | 0.114368 | False | 9.640930e-02 | False | kelpie |
| 1144 | 730211855403241472 | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | 0.341663 | True | 0.171222 | True | 1.246870e-01 | True | pug |
| 1145 | 730427201120833536 | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | 0.682082 | True | 0.289288 | True | 8.770690e-03 | True | Eskimo_dog |
| 1146 | 730573383004487680 | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | 0.810158 | True | 0.058205 | True | 2.792950e-02 | True | American_Staffordshire_terrier |
| 1149 | 731285275100512256 | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | 0.967103 | True | 0.021126 | True | 2.231070e-03 | True | Pembroke |
| 1150 | 732005617171337216 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | 0.677408 | True | 0.052724 | True | 4.857190e-02 | True | English_setter |
| 1152 | 732585889486888962 | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | 0.843359 | True | 0.028290 | True | 1.679290e-02 | True | Staffordshire_bullterrier |
| 1153 | 732726085725589504 | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | 0.961902 | True | 0.024289 | True | 5.771780e-03 | True | Pomeranian |
| 1155 | 733109485275860992 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | 0.945523 | True | 0.042319 | True | 3.956260e-03 | False | golden_retriever |
| 1156 | 733460102733135873 | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | 0.931275 | True | 0.028831 | False | 1.737900e-02 | False | chow |
| 1157 | 733482008106668032 | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | 0.619382 | True | 0.142274 | False | 5.850470e-02 | False | French_bulldog |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | 0.457356 | True | 0.371282 | True | 4.835900e-02 | True | Lhasa |
| 1159 | 733828123016450049 | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | 0.472324 | True | 0.121779 | True | 1.146400e-01 | True | beagle |
| 1160 | 734776360183431168 | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | 0.304902 | True | 0.155147 | True | 5.094240e-02 | True | Siberian_husky |
| 1162 | 734912297295085568 | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | 0.847292 | True | 0.059379 | False | 5.275800e-02 | True | Maltese_dog |
| 1163 | 735137028879360001 | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | 0.413535 | True | 0.233891 | True | 1.649430e-01 | True | Walker_hound |
| 1164 | 735256018284875776 | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | 0.523191 | True | 0.351104 | True | 2.807530e-02 | False | Staffordshire_bullterrier |
| 1166 | 735635087207878657 | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | 0.891871 | True | 0.014377 | False | 8.451430e-03 | False | pug |
| 1167 | 735648611367784448 | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | 0.462594 | True | 0.261854 | False | 1.516980e-01 | True | Pembroke |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | 0.961643 | True | 0.011547 | True | 4.903330e-03 | True | cocker_spaniel |
| 1169 | 736010884653420544 | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | 0.553901 | True | 0.119475 | True | 7.747500e-02 | True | golden_retriever |
| 1170 | 736225175608430592 | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | 0.399217 | True | 0.137710 | True | 6.203270e-02 | True | Labrador_retriever |
| 1172 | 736736130620620800 | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | 0.545502 | True | 0.298622 | True | 3.098640e-02 | True | schipperke |
| 1175 | 737445876994609152 | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | 0.400568 | True | 0.331268 | True | 4.542610e-02 | True | Samoyed |
| 1176 | 737678689543020544 | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | 0.935307 | True | 0.049874 | True | 1.160320e-02 | True | Pembroke |
| 1177 | 737800304142471168 | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | 0.374682 | True | 0.334853 | True | 6.817320e-02 | False | malamute |
| 1178 | 737826014890496000 | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | 0.990391 | True | 0.005605 | True | 2.869360e-03 | True | vizsla |
| 1179 | 738156290900254721 | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | 0.751758 | True | 0.110748 | False | 1.041320e-01 | False | pug |
| 1180 | 738166403467907072 | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | 0.878886 | True | 0.086659 | True | 2.128030e-02 | True | keeshond |
| 1181 | 738184450748633089 | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | 0.289471 | True | 0.173685 | True | 1.570810e-01 | True | Bedlington_terrier |
| 1182 | 738402415918125056 | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | 0.346695 | True | 0.193905 | True | 7.800000e-02 | True | cocker_spaniel |
| 1183 | 738537504001953792 | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | 0.808737 | True | 0.028942 | False | 2.649790e-02 | True | chow |
| 1184 | 738883359779196928 | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | 0.691137 | True | 0.195558 | True | 1.958490e-02 | True | Labrador_retriever |
| 1186 | 739238157791694849 | https://pbs.twimg.com/ext_tw_video_thumb/739238016737267712/pu/img/-tLpyiuIzD5zR1et.jpg | 1 | 0.503372 | True | 0.390413 | True | 8.090120e-02 | True | Eskimo_dog |
| 1187 | 739485634323156992 | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | 0.640256 | True | 0.229799 | True | 3.775400e-02 | True | Walker_hound |
| 1188 | 739544079319588864 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | 0.967397 | True | 0.016641 | True | 1.485760e-02 | False | Labrador_retriever |
| 1189 | 739606147276148736 | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | 0.933755 | True | 0.041719 | True | 6.712560e-03 | True | Blenheim_spaniel |
| 1190 | 739844404073074688 | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | 0.342397 | True | 0.104451 | False | 7.987100e-02 | True | toy_poodle |
| 1192 | 739979191639244800 | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | 0.285800 | True | 0.240653 | False | 7.491390e-02 | True | Irish_water_spaniel |
| 1193 | 740214038584557568 | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | 0.586414 | True | 0.189782 | True | 6.760720e-02 | True | Chesapeake_Bay_retriever |
| 1194 | 740359016048689152 | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | 0.863687 | True | 0.048590 | True | 4.739660e-02 | True | golden_retriever |
| 1196 | 740373189193256964 | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | 0.807644 | True | 0.101286 | True | 2.378530e-02 | True | golden_retriever |
| 1199 | 740711788199743490 | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | 0.388277 | True | 0.180264 | False | 4.965610e-02 | False | toy_poodle |
| 1200 | 740995100998766593 | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | 0.454363 | True | 0.215967 | True | 7.750030e-02 | True | malamute |
| 1201 | 741067306818797568 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | 0.843799 | True | 0.052956 | True | 3.571110e-02 | True | golden_retriever |
| 1202 | 741303864243200000 | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | 0.768156 | True | 0.014902 | True | 1.281580e-02 | True | Chihuahua |
| 1203 | 741438259667034112 | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | 0.292675 | True | 0.197858 | True | 1.503120e-01 | True | Chesapeake_Bay_retriever |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | 0.786089 | True | 0.048652 | True | 3.469330e-02 | True | Labrador_retriever |
| 1205 | 741793263812808706 | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | 0.311325 | True | 0.115349 | True | 6.853350e-02 | True | kuvasz |
| 1208 | 742385895052087300 | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | 0.566911 | True | 0.117566 | True | 4.766400e-02 | True | Cardigan |
| 1209 | 742423170473463808 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | 0.997310 | True | 0.001186 | True | 4.279890e-04 | True | pug |
| 1212 | 743210557239623680 | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | 0.930705 | True | 0.025934 | True | 7.535360e-03 | True | golden_retriever |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | 0.350629 | True | 0.182782 | True | 8.766240e-02 | True | kuvasz |
| 1214 | 743253157753532416 | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | 0.442612 | True | 0.368137 | True | 1.778220e-01 | True | malamute |
| 1218 | 743609206067040256 | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | 0.982794 | True | 0.004766 | True | 3.432010e-03 | True | Weimaraner |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | 0.562315 | True | 0.416478 | True | 8.552360e-03 | True | dalmatian |
| 1220 | 743980027717509120 | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | 0.975730 | True | 0.008073 | True | 5.570870e-03 | True | bull_mastiff |
| 1221 | 744234799360020481 | https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg | 1 | 0.825333 | True | 0.044681 | False | 1.844220e-02 | True | Labrador_retriever |
| 1222 | 744334592493166593 | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | 0.960543 | True | 0.012192 | True | 4.752990e-03 | False | Samoyed |
| 1223 | 744709971296780288 | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | 0.234431 | True | 0.114876 | True | 8.661370e-02 | True | Shetland_sheepdog |
| 1224 | 744971049620602880 | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | 0.497755 | True | 0.282017 | True | 9.003240e-02 | True | toy_poodle |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | 0.427481 | True | 0.146336 | True | 1.342690e-01 | True | Old_English_sheepdog |
| 1226 | 745057283344719872 | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | 0.963985 | True | 0.026206 | True | 4.543650e-03 | True | Shetland_sheepdog |
| 1228 | 745422732645535745 | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | 0.663800 | True | 0.308261 | True | 4.269210e-03 | False | Labrador_retriever |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | 0.984267 | True | 0.008942 | True | 1.928260e-03 | True | Pekinese |
| 1232 | 746056683365994496 | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | 0.433320 | True | 0.335997 | True | 1.771790e-01 | True | Shetland_sheepdog |
| 1233 | 746131877086527488 | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | 0.575637 | True | 0.195950 | True | 1.412240e-01 | True | chow |
| 1234 | 746369468511756288 | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | 0.622957 | True | 0.338884 | True | 2.416150e-02 | False | German_shepherd |
| 1235 | 746507379341139972 | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | 0.508292 | True | 0.234458 | True | 8.456280e-02 | True | toy_poodle |
| 1236 | 746726898085036033 | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | 0.256505 | True | 0.252417 | True | 2.031630e-01 | False | golden_retriever |
| 1237 | 746790600704425984 | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | 0.936183 | True | 0.010084 | False | 1.007700e-02 | True | Boston_bull |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | 0.175518 | False | 0.133647 | False | 1.015370e-01 | True | dingo |
| 1239 | 746872823977771008 | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | 0.540201 | True | 0.207835 | True | 4.356490e-02 | True | Pembroke |
| 1241 | 747103485104099331 | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | 0.991954 | True | 0.002228 | True | 1.404020e-03 | False | Labrador_retriever |
| 1243 | 747219827526344708 | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | 0.548018 | True | 0.165503 | False | 4.300260e-02 | True | Shetland_sheepdog |
| 1245 | 747512671126323200 | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | 0.111493 | True | 0.095089 | True | 8.014560e-02 | True | Cardigan |
| 1246 | 747594051852075008 | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | 0.389136 | True | 0.270226 | False | 9.893880e-02 | True | basenji |
| 1247 | 747600769478692864 | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | 0.804363 | True | 0.054431 | True | 4.326760e-02 | True | Chesapeake_Bay_retriever |
| 1248 | 747816857231626240 | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | 0.768923 | True | 0.029053 | True | 2.903540e-02 | True | Pembroke |
| 1249 | 747844099428986880 | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | 0.360428 | True | 0.263134 | True | 1.312460e-01 | True | Pembroke |
| 1250 | 747885874273214464 | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | 0.408450 | True | 0.141330 | True | 8.301840e-02 | True | kuvasz |
| 1251 | 747933425676525569 | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | 0.998201 | True | 0.000793 | True | 2.957500e-04 | True | Samoyed |
| 1252 | 747963614829678593 | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | 0.307672 | True | 0.197486 | True | 1.054750e-01 | False | kelpie |
| 1254 | 748324050481647620 | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | 0.880499 | True | 0.107901 | True | 3.606670e-03 | True | Shetland_sheepdog |
| 1255 | 748346686624440324 | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | 0.596455 | True | 0.231428 | True | 5.826140e-02 | True | borzoi |
| 1256 | 748568946752774144 | https://pbs.twimg.com/ext_tw_video_thumb/748568890477789184/pu/img/1MzP7FuodJdHw8zA.jpg | 1 | 0.328161 | True | 0.304836 | True | 7.087840e-02 | True | Tibetan_terrier |
| 1259 | 748699167502000129 | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | 0.849029 | True | 0.083629 | True | 2.439450e-02 | True | Pembroke |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | 0.742912 | True | 0.204082 | True | 2.103230e-02 | True | borzoi |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | 0.742216 | True | 0.152810 | True | 5.183470e-02 | True | German_short-haired_pointer |
| 1264 | 749064354620928000 | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | 0.985222 | True | 0.003314 | True | 2.988880e-03 | True | pug |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/749316899712950272/pu/img/nvZI9mkoAxt89sul.jpg | 1 | 0.155144 | True | 0.108382 | True | 7.461670e-02 | False | wire-haired_fox_terrier |
| 1266 | 749395845976588288 | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | 0.973715 | True | 0.020758 | True | 3.784360e-03 | True | Pomeranian |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | 0.694541 | True | 0.076335 | True | 4.854950e-02 | True | Chesapeake_Bay_retriever |
| 1268 | 749417653287129088 | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | 0.772894 | True | 0.042408 | True | 4.231310e-02 | True | papillon |
| 1269 | 749774190421639168 | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | 0.879012 | True | 0.054855 | True | 2.104100e-02 | True | Pekinese |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | 0.515319 | True | 0.151040 | True | 5.642000e-02 | True | Old_English_sheepdog |
| 1273 | 750026558547456000 | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | 0.258732 | True | 0.130760 | False | 7.172630e-02 | True | standard_poodle |
| 1274 | 750041628174217216 | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | 0.252031 | True | 0.188090 | True | 1.330170e-01 | True | Labrador_retriever |
| 1275 | 750056684286914561 | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | 0.484428 | True | 0.263550 | True | 7.700380e-02 | True | Saluki |
| 1277 | 750086836815486976 | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | 0.978277 | True | 0.003134 | False | 3.061490e-03 | True | pug |
| 1278 | 750101899009982464 | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | 0.316704 | True | 0.174269 | False | 1.473640e-01 | True | golden_retriever |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | 0.814405 | True | 0.175220 | True | 8.072300e-03 | True | Shih-Tzu |
| 1280 | 750132105863102464 | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | 0.478018 | True | 0.207458 | True | 8.587890e-02 | False | toy_poodle |
| 1281 | 750147208377409536 | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | 0.977765 | True | 0.004794 | True | 4.572840e-03 | True | pug |
| 1282 | 750383411068534784 | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | 0.672791 | True | 0.270188 | True | 3.450390e-02 | True | Border_collie |
| 1283 | 750429297815552001 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | 0.964929 | True | 0.011584 | True | 7.498620e-03 | False | golden_retriever |
| 1285 | 750719632563142656 | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | 0.972587 | True | 0.014772 | True | 5.798030e-03 | True | Pembroke |
| 1287 | 751132876104687617 | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | 0.929390 | True | 0.038254 | True | 7.610200e-03 | True | Labrador_retriever |
| 1288 | 751205363882532864 | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | 0.947164 | True | 0.020597 | True | 1.657920e-02 | True | Labrador_retriever |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/751250895690731520/pu/img/eziHbU1KbgZg-ijN.jpg | 1 | 0.178852 | True | 0.115752 | True | 1.137960e-01 | True | Walker_hound |
| 1290 | 751456908746354688 | https://pbs.twimg.com/ext_tw_video_thumb/751456786360725504/pu/img/hWqfIQ29A0cBv6f_.jpg | 1 | 0.714409 | True | 0.066163 | True | 2.841260e-02 | True | golden_retriever |
| 1291 | 751538714308972544 | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | 0.516257 | True | 0.210839 | True | 1.620220e-01 | False | Labrador_retriever |
| 1292 | 751583847268179968 | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | 0.868304 | True | 0.059623 | False | 1.387630e-02 | False | dalmatian |
| 1293 | 751598357617971201 | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | 0.757756 | True | 0.035150 | True | 2.769820e-02 | True | toy_poodle |
| 1294 | 751830394383790080 | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | 0.703569 | True | 0.076637 | True | 4.595910e-02 | False | chow |
| 1295 | 751937170840121344 | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | 0.424168 | True | 0.260562 | False | 1.274320e-01 | True | Lakeland_terrier |
| 1296 | 752173152931807232 | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | 0.527659 | True | 0.174765 | True | 4.552540e-02 | True | Labrador_retriever |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/752334354492362752/pu/img/uWISPc0YRmhUi9Ju.jpg | 1 | 0.399163 | True | 0.086425 | True | 7.523110e-02 | True | Bedlington_terrier |
| 1301 | 752682090207055872 | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | 0.299966 | True | 0.278355 | True | 1.785200e-01 | True | German_shepherd |
| 1302 | 752917284578922496 | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | 0.609283 | True | 0.352460 | True | 1.610520e-02 | True | German_shepherd |
| 1303 | 753026973505581056 | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | 0.868511 | True | 0.103708 | True | 1.814160e-02 | True | Pembroke |
| 1304 | 753294487569522689 | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | 0.194773 | True | 0.102305 | False | 8.685470e-02 | True | chow |
| 1305 | 753375668877008896 | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | 0.360071 | True | 0.134816 | False | 9.820660e-02 | False | bluetick |
| 1306 | 753398408988139520 | https://pbs.twimg.com/ext_tw_video_thumb/753398183879991296/pu/img/bqFy5Zc_PEk6Mx-B.jpg | 1 | 0.163794 | True | 0.157192 | True | 1.429950e-01 | True | whippet |
| 1308 | 753655901052166144 | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | 0.456092 | True | 0.153126 | True | 1.441470e-01 | True | miniature_pinscher |
| 1309 | 754011816964026368 | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | 0.600985 | True | 0.273176 | True | 5.677150e-02 | True | French_bulldog |
| 1310 | 754120377874386944 | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | 0.168909 | True | 0.129114 | True | 1.208220e-01 | True | chow |
| 1311 | 754449512966619136 | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | 0.858513 | True | 0.076012 | True | 1.624560e-02 | True | beagle |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | 0.471493 | False | 0.250837 | False | 1.178720e-01 | False | rotisserie |
| 1314 | 754856583969079297 | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | 0.872385 | True | 0.099963 | True | 6.050830e-03 | True | golden_retriever |
| 1316 | 755110668769038337 | https://pbs.twimg.com/ext_tw_video_thumb/755110610942169088/pu/img/3-INz45pSRMkzOEF.jpg | 1 | 0.708974 | True | 0.114314 | True | 6.581340e-02 | True | Labrador_retriever |
| 1318 | 755955933503782912 | https://pbs.twimg.com/ext_tw_video_thumb/755955658164465664/pu/img/YcjfthN7C3z61GUj.jpg | 1 | 0.596882 | True | 0.176478 | True | 2.677530e-02 | True | Pekinese |
| 1319 | 756275833623502848 | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | 0.602957 | True | 0.086981 | True | 8.627650e-02 | True | Airedale |
| 1321 | 756303284449767430 | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | 0.981652 | True | 0.006790 | True | 4.324510e-03 | True | golden_retriever |
| 1323 | 756651752796094464 | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | 0.294808 | True | 0.282301 | True | 1.126010e-01 | True | Pembroke |
| 1324 | 756939218950160384 | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | 0.790371 | True | 0.130268 | True | 6.462870e-02 | True | golden_retriever |
| 1326 | 757354760399941633 | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | 0.914667 | True | 0.047774 | True | 1.547680e-02 | False | Italian_greyhound |
| 1327 | 757393109802180609 | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | 0.787125 | True | 0.112676 | True | 4.803860e-02 | True | Labrador_retriever |
| 1331 | 757611664640446465 | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | 0.829259 | True | 0.145358 | True | 1.959530e-02 | True | bluetick |
| 1336 | 758355060040593408 | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | 0.987643 | True | 0.012112 | True | 1.174770e-04 | False | Pembroke |
| 1338 | 758467244762497024 | https://pbs.twimg.com/ext_tw_video_thumb/758467147756691456/pu/img/YTNzjRFDSPNXukmM.jpg | 1 | 0.436377 | True | 0.113956 | True | 9.968910e-02 | True | Labrador_retriever |
| 1339 | 758474966123810816 | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | 0.546145 | True | 0.244200 | True | 1.004290e-01 | True | Pembroke |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | 0.848514 | True | 0.110054 | True | 2.520140e-02 | True | Chesapeake_Bay_retriever |
| 1341 | 758828659922702336 | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | 0.480048 | True | 0.264522 | True | 1.218400e-01 | True | Chesapeake_Bay_retriever |
| 1343 | 759047813560868866 | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | 0.778546 | True | 0.154254 | False | 2.497160e-02 | True | Labrador_retriever |
| 1344 | 759099523532779520 | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | 0.129034 | True | 0.117508 | True | 1.067080e-01 | True | Shetland_sheepdog |
| 1346 | 759197388317847553 | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | 0.511341 | True | 0.076899 | True | 6.326940e-02 | False | kuvasz |
| 1347 | 759447681597108224 | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | 0.223148 | True | 0.220731 | True | 1.813030e-01 | False | kuvasz |
| 1348 | 759557299618865152 | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | 0.763333 | True | 0.194251 | True | 1.222540e-02 | True | golden_retriever |
| 1350 | 759793422261743616 | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | 0.985876 | True | 0.001948 | True | 1.751740e-03 | True | golden_retriever |
| 1351 | 759846353224826880 | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | 0.355395 | True | 0.141094 | True | 9.219820e-02 | True | Sussex_spaniel |
| 1352 | 759923798737051648 | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | 0.324579 | True | 0.109168 | False | 1.024660e-01 | True | Labrador_retriever |
| 1355 | 760290219849637889 | https://pbs.twimg.com/ext_tw_video_thumb/760289324994879489/pu/img/3ItvBEoo4aebPfvr.jpg | 1 | 0.302200 | True | 0.258803 | True | 1.792000e-01 | True | Old_English_sheepdog |
| 1356 | 760539183865880579 | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | 0.988013 | True | 0.004518 | True | 1.189250e-03 | True | Samoyed |
| 1358 | 760656994973933572 | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | 0.760546 | True | 0.232079 | True | 2.874170e-03 | True | golden_retriever |
| 1359 | 760893934457552897 | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | 0.113992 | True | 0.105780 | True | 7.393450e-02 | True | Blenheim_spaniel |
| 1360 | 761004547850530816 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | 0.735163 | True | 0.064897 | True | 4.770370e-02 | True | golden_retriever |
| 1362 | 761292947749015552 | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | 0.660893 | True | 0.314886 | True | 8.833830e-03 | True | standard_poodle |
| 1363 | 761334018830917632 | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | 0.822936 | True | 0.086152 | True | 6.333290e-02 | True | Norwegian_elkhound |
| 1365 | 761599872357261312 | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | 0.240427 | True | 0.224269 | True | 1.297300e-01 | True | Gordon_setter |
| 1369 | 761976711479193600 | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | 0.475552 | True | 0.082898 | True | 4.846400e-02 | True | Labrador_retriever |
| 1373 | 762471784394268675 | https://pbs.twimg.com/ext_tw_video_thumb/762471745303355393/pu/img/RKcEUz7-VDipoGKJ.jpg | 1 | 0.540276 | True | 0.279802 | True | 1.020580e-01 | True | Samoyed |
| 1374 | 762699858130116608 | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | 0.519047 | True | 0.296069 | True | 6.100530e-02 | False | kelpie |
| 1376 | 763183847194451968 | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | 0.354674 | True | 0.338642 | True | 1.558280e-01 | False | miniature_poodle |
| 1377 | 763837565564780549 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | 0.375098 | True | 0.069362 | False | 5.052760e-02 | True | malamute |
| 1378 | 764259802650378240 | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | 0.973677 | True | 0.025950 | True | 1.915680e-04 | True | German_shepherd |
| 1379 | 764857477905154048 | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | 0.792059 | True | 0.155034 | True | 3.837380e-02 | True | Bernese_mountain_dog |
| 1380 | 765222098633691136 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | 0.556595 | True | 0.151047 | True | 9.643550e-02 | True | dalmatian |
| 1381 | 765371061932261376 | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | 0.829456 | True | 0.089371 | True | 1.702750e-02 | True | golden_retriever |
| 1382 | 765395769549590528 | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | 0.509491 | True | 0.330401 | True | 3.887490e-02 | True | Pembroke |
| 1383 | 765669560888528897 | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | 0.993333 | True | 0.002902 | True | 2.415180e-03 | True | beagle |
| 1384 | 765719909049503744 | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | 0.969518 | True | 0.021696 | True | 2.074550e-03 | True | golden_retriever |
| 1385 | 766008592277377025 | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | 0.728153 | True | 0.103842 | True | 6.241430e-02 | True | Welsh_springer_spaniel |
| 1388 | 766313316352462849 | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | 0.966896 | True | 0.016424 | True | 1.022710e-02 | True | toy_poodle |
| 1389 | 766423258543644672 | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | 0.995823 | True | 0.003897 | True | 2.531090e-04 | True | keeshond |
| 1390 | 766693177336135680 | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | 0.948355 | True | 0.015032 | True | 9.630840e-03 | True | Doberman |
| 1391 | 766793450729734144 | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | 0.451697 | True | 0.197513 | True | 7.269860e-02 | True | beagle |
| 1392 | 767122157629476866 | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | 0.873841 | True | 0.059192 | True | 3.530600e-02 | True | toy_poodle |
| 1394 | 767500508068192258 | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | 0.483228 | True | 0.165063 | True | 6.017290e-02 | True | chow |
| 1395 | 767754930266464257 | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | 0.307794 | True | 0.142185 | False | 1.139030e-01 | True | vizsla |
| 1398 | 768473857036525572 | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | 0.739170 | True | 0.246488 | True | 6.892340e-03 | True | Labrador_retriever |
| 1399 | 768596291618299904 | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | 0.729745 | True | 0.237961 | True | 2.090330e-02 | True | Great_Pyrenees |
| 1400 | 768609597686943744 | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | 0.183283 | True | 0.136012 | True | 6.012990e-02 | True | basenji |
| 1401 | 768855141948723200 | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | 0.720219 | True | 0.058365 | True | 5.511350e-02 | True | chow |
| 1402 | 768970937022709760 | https://pbs.twimg.com/ext_tw_video_thumb/768967618174877700/pu/img/4wfsrs0ZnQ5pstXm.jpg | 1 | 0.182358 | True | 0.110658 | True | 8.639890e-02 | False | Pomeranian |
| 1403 | 769212283578875904 | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | 0.166538 | True | 0.148215 | True | 8.273510e-02 | True | golden_retriever |
| 1404 | 769695466921623552 | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | 0.407117 | True | 0.165638 | False | 4.583720e-02 | True | pug |
| 1405 | 769940425801170949 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | 0.796313 | True | 0.155413 | True | 3.094330e-02 | True | miniature_pinscher |
| 1406 | 770069151037685760 | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | 0.414965 | True | 0.286985 | True | 1.149700e-01 | True | Boston_bull |
| 1408 | 770293558247038976 | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | 0.931668 | True | 0.038896 | True | 1.315140e-02 | True | Italian_greyhound |
| 1411 | 770772759874076672 | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | 0.979515 | True | 0.010219 | True | 4.606040e-03 | True | chow |
| 1412 | 770787852854652928 | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | 0.787812 | True | 0.163946 | True | 2.029340e-02 | True | Bernese_mountain_dog |
| 1415 | 771102124360998913 | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | 0.568789 | True | 0.179918 | True | 3.443740e-02 | True | Labrador_retriever |
| 1418 | 771380798096281600 | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | 0.503728 | True | 0.450944 | True | 1.269280e-02 | True | collie |
| 1419 | 771500966810099713 | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | 0.833952 | True | 0.103223 | True | 1.209390e-02 | False | Labrador_retriever |
| 1420 | 771770456517009408 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | 0.533180 | True | 0.192031 | True | 1.216260e-01 | True | papillon |
| 1421 | 772102971039580160 | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | 0.541780 | True | 0.260504 | True | 6.370310e-02 | True | Pembroke |
| 1422 | 772114945936949249 | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | 0.803293 | True | 0.052980 | True | 3.723880e-02 | True | Chihuahua |
| 1423 | 772117678702071809 | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | 0.217821 | True | 0.157677 | True | 1.277260e-01 | True | Labrador_retriever |
| 1424 | 772152991789019136 | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | 0.275318 | True | 0.100988 | True | 7.352490e-02 | True | golden_retriever |
| 1425 | 772193107915964416 | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | 0.367945 | True | 0.223522 | True | 1.648710e-01 | True | Pembroke |
| 1426 | 772581559778025472 | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | 0.574345 | True | 0.128352 | True | 5.947550e-02 | True | Newfoundland |
| 1428 | 772826264096874500 | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | 0.915351 | True | 0.072416 | True | 8.228940e-03 | True | basset |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | 0.427766 | True | 0.219256 | True | 1.446140e-01 | True | Blenheim_spaniel |
| 1433 | 773547596996571136 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | 0.372202 | True | 0.137187 | True | 7.143620e-02 | True | Norwegian_elkhound |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | 0.969311 | True | 0.013243 | True | 4.857310e-03 | True | Old_English_sheepdog |
| 1435 | 773704687002451968 | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | 0.324251 | True | 0.181210 | True | 1.334360e-01 | True | silky_terrier |
| 1436 | 773922284943896577 | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | 0.554331 | True | 0.432158 | True | 3.199420e-03 | True | Pomeranian |
| 1438 | 774314403806253056 | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | 0.596045 | True | 0.223067 | True | 3.632470e-02 | True | Eskimo_dog |
| 1439 | 774639387460112384 | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | 0.627593 | True | 0.128705 | True | 1.262820e-01 | True | Walker_hound |
| 1440 | 774757898236878852 | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | 0.719941 | True | 0.251546 | True | 7.008380e-03 | True | toy_poodle |
| 1441 | 775085132600442880 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | 0.316565 | True | 0.241929 | True | 1.575240e-01 | True | chow |
| 1442 | 775364825476165632 | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | 0.571229 | True | 0.175257 | True | 3.430630e-02 | True | beagle |
| 1445 | 775842724423557120 | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | 0.520022 | True | 0.028775 | False | 2.599010e-02 | True | chow |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | 0.502228 | True | 0.154594 | True | 1.351760e-01 | True | Rottweiler |
| 1450 | 776218204058357768 | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | 0.940326 | True | 0.055527 | True | 2.226350e-03 | True | Samoyed |
| 1451 | 776477788987613185 | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | 0.884839 | True | 0.057565 | True | 5.766080e-03 | False | Labrador_retriever |
| 1452 | 776813020089548800 | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | 0.516610 | True | 0.255033 | True | 1.689890e-01 | True | toy_poodle |
| 1454 | 777189768882946048 | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | 0.988412 | True | 0.004177 | True | 1.506580e-03 | False | Chihuahua |
| 1455 | 777621514455814149 | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | 0.999823 | True | 0.000056 | True | 2.768060e-05 | True | chow |
| 1457 | 777684233540206592 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | 0.253442 | True | 0.162850 | True | 1.109210e-01 | True | cocker_spaniel |
| 1458 | 777885040357281792 | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | 0.123529 | True | 0.119682 | True | 1.087090e-01 | True | Afghan_hound |
| 1460 | 778039087836069888 | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | 0.717776 | True | 0.111175 | True | 5.880240e-02 | True | German_shepherd |
| 1461 | 778286810187399168 | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | 0.322070 | True | 0.229903 | True | 1.014200e-01 | False | Boston_bull |
| 1462 | 778383385161035776 | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | 0.345266 | True | 0.312823 | True | 2.130110e-01 | True | collie |
| 1464 | 778408200802557953 | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | 0.848362 | True | 0.108124 | True | 1.194170e-02 | True | Pembroke |
| 1465 | 778624900596654080 | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | 0.786089 | True | 0.121488 | True | 1.460310e-02 | True | Airedale |
| 1466 | 778650543019483137 | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | 0.515699 | True | 0.300292 | True | 8.702230e-02 | True | German_shepherd |
| 1467 | 778748913645780993 | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | 0.351434 | True | 0.201478 | True | 1.428380e-01 | True | Staffordshire_bullterrier |
| 1468 | 778990705243029504 | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | 0.715351 | True | 0.207056 | True | 2.851940e-02 | True | cocker_spaniel |
| 1469 | 779056095788752897 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | 0.721188 | True | 0.112943 | True | 5.336450e-02 | True | Chihuahua |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | 0.431080 | True | 0.060365 | True | 5.984540e-02 | True | toy_poodle |
| 1472 | 779834332596887552 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | 0.993830 | True | 0.003143 | True | 9.174140e-04 | True | golden_retriever |
| 1473 | 780192070812196864 | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | 0.144012 | True | 0.091474 | False | 7.354470e-02 | False | vizsla |
| 1474 | 780459368902959104 | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | 0.382491 | True | 0.312026 | True | 3.327190e-02 | True | Great_Dane |
| 1475 | 780476555013349377 | https://pbs.twimg.com/tweet_video_thumb/CtTFZZfUsAE5hgp.jpg | 1 | 0.919255 | True | 0.032350 | True | 2.846790e-02 | True | pug |
| 1477 | 780543529827336192 | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | 0.628312 | True | 0.317365 | True | 1.226010e-02 | True | golden_retriever |
| 1478 | 780601303617732608 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | 0.995143 | True | 0.003044 | True | 1.049550e-03 | True | Saint_Bernard |
| 1479 | 780800785462489090 | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | 0.951963 | True | 0.035346 | True | 8.861940e-03 | True | Siberian_husky |
| 1480 | 780858289093574656 | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | 0.488555 | True | 0.271655 | True | 1.069130e-01 | True | Chesapeake_Bay_retriever |
| 1482 | 781163403222056960 | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | 0.973841 | True | 0.025188 | True | 2.973110e-04 | True | Shetland_sheepdog |
| 1483 | 781251288990355457 | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | 0.887771 | True | 0.030666 | True | 2.672980e-02 | False | Mexican_hairless |
| 1485 | 781661882474196992 | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | 0.438087 | True | 0.226954 | True | 7.065160e-02 | True | Pembroke |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | 0.504427 | True | 0.390678 | True | 3.459550e-02 | True | briard |
| 1489 | 782598640137187329 | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | 0.840871 | True | 0.140516 | True | 1.201160e-02 | True | malamute |
| 1490 | 782722598790725632 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | 0.574557 | True | 0.339251 | True | 4.610820e-02 | False | Irish_setter |
| 1491 | 782747134529531904 | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | 0.560699 | True | 0.199482 | True | 4.068180e-02 | True | golden_retriever |
| 1493 | 783085703974514689 | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | 0.240602 | True | 0.164088 | True | 1.345060e-01 | True | Chesapeake_Bay_retriever |
| 1494 | 783334639985389568 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | 0.593858 | True | 0.130611 | True | 1.008420e-01 | True | Cardigan |
| 1497 | 783466772167098368 | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | 0.789000 | True | 0.115916 | True | 3.629390e-02 | True | Chihuahua |
| 1498 | 783695101801398276 | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | 0.314265 | True | 0.300435 | True | 4.948690e-02 | True | chow |
| 1499 | 783821107061198850 | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | 0.265659 | True | 0.196414 | True | 1.335340e-01 | True | Lakeland_terrier |
| 1501 | 784431430411685888 | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | 0.744819 | True | 0.243192 | True | 1.092020e-02 | True | miniature_poodle |
| 1502 | 784517518371221505 | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | 0.757764 | True | 0.151248 | True | 8.484020e-02 | True | malamute |
| 1503 | 784826020293709826 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | 0.090341 | True | 0.083499 | False | 7.745560e-02 | True | chow |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | 0.674893 | False | 0.056740 | False | 5.613700e-02 | True | teddy |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | 0.436023 | True | 0.258049 | True | 1.452310e-01 | True | miniature_pinscher |
| 1508 | 785872687017132033 | https://pbs.twimg.com/ext_tw_video_thumb/785872596088811520/pu/img/5O-_BgqdFQu_2Bt7.jpg | 1 | 0.392108 | True | 0.198358 | True | 1.433280e-01 | True | Great_Pyrenees |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | 0.972070 | False | 0.008493 | True | 2.882710e-03 | True | teddy |
| 1511 | 786233965241827333 | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | 0.478193 | True | 0.224817 | True | 7.739560e-02 | True | Labrador_retriever |
| 1512 | 786363235746385920 | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | 0.929266 | True | 0.062867 | True | 2.156690e-03 | True | golden_retriever |
| 1513 | 786595970293370880 | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | 0.709512 | True | 0.287178 | True | 5.701760e-04 | True | Pembroke |
| 1514 | 786664955043049472 | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | 0.512034 | True | 0.464816 | True | 7.812490e-03 | True | Leonberg |
| 1515 | 786709082849828864 | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | 0.467321 | True | 0.122978 | False | 1.026540e-01 | True | Pomeranian |
| 1516 | 786963064373534720 | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | 0.915303 | True | 0.046213 | True | 3.750410e-02 | True | golden_retriever |
| 1518 | 787397959788929025 | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | 0.900483 | True | 0.021084 | True | 1.948400e-02 | True | Chihuahua |
| 1519 | 787717603741622272 | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | 0.992339 | True | 0.004920 | True | 8.528020e-04 | True | German_shepherd |
| 1520 | 787810552592695296 | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | 0.362835 | True | 0.221864 | True | 8.041830e-02 | True | pug |
| 1523 | 788150585577050112 | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | 0.814145 | True | 0.112704 | True | 1.588320e-02 | True | chow |
| 1524 | 788178268662984705 | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | 0.735480 | True | 0.075101 | True | 3.607190e-02 | False | Samoyed |
| 1525 | 788412144018661376 | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | 0.805238 | True | 0.113798 | True | 3.855870e-02 | True | golden_retriever |
| 1526 | 788765914992902144 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | 0.500509 | True | 0.272734 | True | 4.147580e-02 | False | cocker_spaniel |
| 1528 | 789137962068021249 | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | 0.746135 | True | 0.070383 | True | 4.923690e-02 | True | Chihuahua |
| 1529 | 789268448748703744 | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | 0.812860 | True | 0.120853 | True | 2.426930e-02 | True | malamute |
| 1530 | 789530877013393408 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | 0.363272 | True | 0.197021 | True | 1.510240e-01 | True | schipperke |
| 1531 | 789599242079838210 | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | 0.878822 | True | 0.018570 | True | 1.749850e-02 | True | Chesapeake_Bay_retriever |
| 1532 | 789628658055020548 | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | 0.260702 | True | 0.088143 | False | 7.988310e-02 | True | chow |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | 0.427742 | True | 0.190503 | True | 1.464270e-01 | True | Labrador_retriever |
| 1535 | 790337589677002753 | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | 0.658808 | True | 0.153096 | True | 1.022990e-01 | True | Pembroke |
| 1537 | 790698755171364864 | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | 0.996541 | True | 0.001057 | True | 9.979070e-04 | True | Bernese_mountain_dog |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | 0.349195 | True | 0.309535 | True | 1.047680e-01 | True | cocker_spaniel |
| 1544 | 791672322847637504 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | 0.705092 | True | 0.219721 | True | 1.596500e-02 | True | golden_retriever |
| 1545 | 792050063153438720 | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | 0.942856 | True | 0.052715 | False | 2.743000e-03 | True | komondor |
| 1546 | 792394556390137856 | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | 0.746387 | True | 0.091615 | True | 6.107820e-02 | True | cocker_spaniel |
| 1547 | 792773781206999040 | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | 0.912804 | True | 0.067822 | True | 4.450690e-03 | True | Yorkshire_terrier |
| 1550 | 793120401413079041 | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | 0.724944 | True | 0.169744 | True | 3.550230e-02 | True | Labrador_retriever |
| 1552 | 793150605191548928 | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | 0.193869 | True | 0.160380 | True | 1.259820e-01 | True | Italian_greyhound |
| 1553 | 793165685325201412 | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | 0.946224 | True | 0.036477 | True | 2.352850e-03 | False | golden_retriever |
| 1554 | 793180763617361921 | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | 0.266824 | True | 0.218783 | True | 1.329600e-01 | True | Lakeland_terrier |
| 1555 | 793195938047070209 | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | 0.654762 | True | 0.074100 | True | 4.233930e-02 | True | Labrador_retriever |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | 0.456047 | True | 0.273428 | True | 8.364330e-02 | True | wire-haired_fox_terrier |
| 1558 | 793241302385262592 | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | 0.559308 | True | 0.390222 | True | 3.631570e-02 | True | golden_retriever |
| 1559 | 793256262322548741 | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | 0.207622 | True | 0.060574 | True | 4.122050e-02 | True | basset |
| 1560 | 793271401113350145 | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | 0.231695 | True | 0.206749 | True | 7.011950e-02 | True | Siberian_husky |
| 1561 | 793286476301799424 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | 0.274637 | True | 0.142204 | True | 1.096770e-01 | False | Afghan_hound |
| 1562 | 793500921481273345 | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | 0.326122 | True | 0.219904 | True | 1.633660e-01 | True | golden_retriever |
| 1563 | 793601777308463104 | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | 0.538981 | True | 0.217830 | True | 8.914870e-02 | True | miniature_pinscher |
| 1565 | 793845145112371200 | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | 0.765277 | True | 0.112753 | True | 4.766170e-02 | True | Old_English_sheepdog |
| 1566 | 793962221541933056 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | 0.861651 | True | 0.044462 | True | 1.649670e-02 | True | Labrador_retriever |
| 1568 | 794332329137291264 | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | 0.988307 | True | 0.004906 | True | 2.901290e-03 | True | Samoyed |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | 0.569566 | False | 0.173745 | False | 3.766180e-02 | True | teddy |
| 1573 | 795400264262053889 | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | 0.925494 | True | 0.059241 | True | 4.495340e-03 | False | golden_retriever |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/795464066940764160/pu/img/jPkMMQXdydb7CqFX.jpg | 1 | 0.193082 | True | 0.157927 | True | 1.246840e-01 | True | golden_retriever |
| 1575 | 796031486298386433 | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | 0.893775 | True | 0.070140 | True | 8.418530e-03 | False | golden_retriever |
| 1576 | 796080075804475393 | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | 0.973846 | True | 0.014110 | True | 2.358320e-03 | False | chow |
| 1577 | 796116448414461957 | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | 0.700182 | True | 0.260738 | True | 1.710990e-02 | True | Cardigan |
| 1578 | 796149749086875649 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | 0.600276 | True | 0.140798 | True | 8.735480e-02 | False | golden_retriever |
| 1580 | 796387464403357696 | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | 0.461164 | True | 0.288650 | True | 5.242300e-02 | False | Pekinese |
| 1581 | 796484825502875648 | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | 0.116924 | True | 0.107511 | False | 9.984340e-02 | True | cocker_spaniel |
| 1582 | 796759840936919040 | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | 0.463996 | True | 0.155566 | True | 1.375870e-01 | True | American_Staffordshire_terrier |
| 1583 | 796865951799083009 | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | 0.839129 | True | 0.080699 | True | 3.450500e-02 | True | Cardigan |
| 1584 | 797236660651966464 | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | 0.767005 | True | 0.100844 | True | 4.836810e-02 | True | collie |
| 1585 | 797545162159308800 | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | 0.954089 | True | 0.033644 | True | 9.735660e-03 | True | Pembroke |
| 1586 | 797971864723324932 | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | 0.489845 | True | 0.305760 | True | 7.279910e-02 | True | American_Staffordshire_terrier |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | 0.524583 | True | 0.102931 | True | 9.789310e-02 | True | Pekinese |
| 1595 | 798925684722855936 | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | 0.539463 | True | 0.184897 | True | 1.630240e-01 | True | West_Highland_white_terrier |
| 1596 | 798933969379225600 | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | 0.703224 | True | 0.229351 | True | 4.435080e-02 | True | Siberian_husky |
| 1597 | 799063482566066176 | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | 0.334436 | True | 0.231573 | True | 2.142030e-01 | True | Norfolk_terrier |
| 1598 | 799297110730567681 | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | 0.985028 | True | 0.005834 | True | 5.442810e-03 | True | malamute |
| 1599 | 799422933579902976 | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | 0.583630 | True | 0.276095 | True | 1.855010e-02 | True | miniature_pinscher |
| 1600 | 799757965289017345 | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | 0.442534 | True | 0.288684 | True | 1.963990e-01 | True | Border_collie |
| 1603 | 800141422401830912 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | 0.938048 | True | 0.025119 | True | 2.297730e-02 | True | golden_retriever |
| 1604 | 800388270626521089 | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | 0.359860 | True | 0.194207 | True | 1.546030e-01 | True | golden_retriever |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | 0.311928 | False | 0.184657 | False | 1.732290e-01 | False | teddy |
| 1607 | 800513324630806528 | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | 0.828904 | True | 0.167373 | True | 7.659340e-04 | True | Pembroke |
| 1608 | 800751577355128832 | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | 0.771984 | True | 0.076653 | True | 3.961830e-02 | True | cocker_spaniel |
| 1609 | 801115127852503040 | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | 0.823356 | True | 0.094602 | True | 2.195340e-02 | True | dalmatian |
| 1610 | 801167903437357056 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | 0.740220 | True | 0.061604 | True | 4.133140e-02 | True | cocker_spaniel |
| 1612 | 801538201127157760 | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | 0.550506 | True | 0.306612 | True | 5.423000e-02 | True | Pembroke |
| 1613 | 801958328846974976 | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | 0.327887 | True | 0.271916 | True | 2.476190e-01 | True | Staffordshire_bullterrier |
| 1614 | 802239329049477120 | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | 0.482498 | True | 0.335774 | True | 1.345890e-01 | True | Eskimo_dog |
| 1616 | 802265048156610565 | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | 0.897162 | True | 0.016895 | True | 1.206060e-02 | True | Labrador_retriever |
| 1618 | 802572683846291456 | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | 0.610171 | True | 0.173252 | True | 1.632570e-01 | True | golden_retriever |
| 1620 | 802952499103731712 | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | 0.944032 | True | 0.017240 | True | 1.208480e-02 | True | chow |
| 1621 | 803276597545603072 | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | 0.457086 | True | 0.307801 | True | 4.998820e-02 | True | Pembroke |
| 1623 | 803638050916102144 | https://pbs.twimg.com/ext_tw_video_thumb/803638023904559104/pu/img/vxm0Htm5iIV7EOAQ.jpg | 1 | 0.372776 | True | 0.343666 | True | 6.724230e-02 | True | Labrador_retriever |
| 1625 | 803773340896923648 | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | 0.817066 | True | 0.059707 | True | 3.419520e-02 | True | miniature_pinscher |
| 1628 | 804738756058218496 | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | 0.915790 | True | 0.062480 | True | 8.297490e-03 | True | Tibetan_mastiff |
| 1629 | 805207613751304193 | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | 0.244705 | True | 0.180461 | True | 9.466370e-02 | True | Pembroke |
| 1631 | 805520635690676224 | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | 0.643147 | True | 0.186642 | True | 1.093450e-01 | True | malinois |
| 1632 | 805826884734976000 | https://pbs.twimg.com/ext_tw_video_thumb/805826823359631360/pu/img/yr_fF0TZCR-B70p2.jpg | 1 | 0.248926 | True | 0.098313 | True | 8.018850e-02 | True | Siberian_husky |
| 1633 | 805932879469572096 | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | 0.657967 | True | 0.319136 | True | 7.946740e-03 | True | Norwegian_elkhound |
| 1635 | 806219024703037440 | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | 0.835102 | True | 0.040783 | True | 2.127450e-02 | True | chow |
| 1637 | 806542213899489280 | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | 0.938617 | True | 0.036739 | True | 3.971490e-03 | True | vizsla |
| 1639 | 807010152071229440 | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | 0.610807 | True | 0.213642 | True | 3.188660e-02 | True | golden_retriever |
| 1641 | 807106840509214720 | https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg | 1 | 0.505370 | True | 0.120358 | True | 7.700810e-02 | True | Chihuahua |
| 1642 | 807621403335917568 | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | 0.873233 | True | 0.033693 | True | 2.040840e-02 | True | golden_retriever |
| 1643 | 808001312164028416 | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | 0.730959 | True | 0.130726 | True | 2.885260e-02 | True | Labrador_retriever |
| 1644 | 808106460588765185 | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | 0.426183 | True | 0.257447 | True | 1.264820e-01 | True | golden_retriever |
| 1646 | 808501579447930884 | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | 0.454239 | True | 0.219323 | True | 9.319300e-02 | True | Airedale |
| 1648 | 808838249661788160 | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | 0.369530 | True | 0.194867 | True | 1.601040e-01 | True | Rottweiler |
| 1649 | 809084759137812480 | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | 0.911412 | True | 0.017134 | True | 1.176100e-02 | True | vizsla |
| 1650 | 809220051211603969 | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | 0.819511 | True | 0.141241 | True | 1.345520e-02 | True | Pomeranian |
| 1651 | 809448704142938112 | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | 0.375415 | True | 0.134317 | True | 7.369710e-02 | True | Greater_Swiss_Mountain_dog |
| 1653 | 809920764300447744 | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | 0.397163 | True | 0.274540 | True | 1.346670e-01 | True | Norwich_terrier |
| 1654 | 810254108431155201 | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | 0.292556 | True | 0.261233 | True | 6.237540e-02 | True | Staffordshire_bullterrier |
| 1655 | 810284430598270976 | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | 0.620768 | True | 0.158395 | True | 2.896170e-02 | True | malamute |
| 1656 | 810657578271330305 | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | 0.753521 | True | 0.166151 | True | 6.981080e-02 | True | malamute |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | 0.820804 | True | 0.082318 | True | 6.746050e-02 | True | flat-coated_retriever |
| 1658 | 810984652412424192 | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | 0.871342 | True | 0.036708 | True | 2.582320e-02 | True | golden_retriever |
| 1659 | 811386762094317568 | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | 0.804177 | True | 0.189890 | True | 1.964750e-03 | True | Pembroke |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | 0.396280 | True | 0.049562 | True | 4.634920e-02 | True | beagle |
| 1661 | 811744202451197953 | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | 0.386082 | True | 0.202862 | True | 1.704870e-01 | True | Pekinese |
| 1662 | 811985624773361665 | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | 0.610573 | True | 0.159935 | True | 5.867210e-02 | False | Staffordshire_bullterrier |
| 1663 | 812372279581671427 | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | 0.784873 | True | 0.087788 | True | 8.327470e-02 | True | golden_retriever |
| 1666 | 812709060537683968 | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | 0.326873 | True | 0.182610 | True | 1.569120e-01 | True | Irish_setter |
| 1667 | 812781120811126785 | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | 0.989316 | True | 0.007043 | True | 1.739610e-03 | True | bull_mastiff |
| 1668 | 813051746834595840 | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | 0.914804 | True | 0.083550 | True | 4.532240e-04 | True | golden_retriever |
| 1669 | 813066809284972545 | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | 0.776400 | True | 0.115034 | True | 4.887300e-02 | True | toy_terrier |
| 1670 | 813081950185472002 | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | 0.909951 | True | 0.042649 | True | 2.300410e-02 | True | Doberman |
| 1671 | 813096984823349248 | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | 0.128056 | True | 0.117003 | True | 8.696430e-02 | True | Great_Dane |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | 0.287369 | False | 0.140682 | True | 9.081890e-02 | True | dingo |
| 1673 | 813127251579564032 | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | 0.432416 | True | 0.374223 | True | 3.246260e-02 | True | Norwegian_elkhound |
| 1674 | 813142292504645637 | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | 0.848735 | True | 0.044602 | True | 1.861080e-02 | True | beagle |
| 1677 | 813187593374461952 | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | 0.888181 | True | 0.042312 | True | 9.701730e-03 | True | golden_retriever |
| 1678 | 813202720496779264 | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | 0.701852 | True | 0.120345 | True | 3.632020e-02 | True | cocker_spaniel |
| 1679 | 813217897535406080 | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | 0.905972 | True | 0.048038 | True | 3.566710e-02 | True | Samoyed |
| 1680 | 813800681631023104 | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | 0.501159 | True | 0.228792 | True | 2.003880e-01 | True | malamute |
| 1681 | 813812741911748608 | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | 0.709146 | True | 0.247621 | True | 1.885510e-02 | True | French_bulldog |
| 1682 | 813910438903693312 | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | 0.699355 | True | 0.256433 | True | 1.318880e-02 | True | Siberian_husky |
| 1684 | 814153002265309185 | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | 0.490068 | True | 0.291956 | True | 7.247470e-02 | True | golden_retriever |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | 0.626913 | True | 0.265582 | True | 4.161420e-02 | True | miniature_poodle |
| 1686 | 814638523311648768 | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | 0.650814 | True | 0.053281 | True | 3.543960e-02 | True | golden_retriever |
| 1687 | 814986499976527872 | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | 0.999828 | True | 0.000068 | True | 3.424360e-05 | True | dalmatian |
| 1689 | 815639385530101762 | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | 0.817953 | True | 0.140007 | True | 2.482090e-02 | True | German_shepherd |
| 1690 | 815736392542261248 | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | 0.548907 | True | 0.178523 | True | 1.463510e-01 | True | Border_collie |
| 1691 | 815966073409433600 | https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg | 1 | 0.506312 | True | 0.295690 | True | 3.625070e-02 | True | Tibetan_mastiff |
| 1692 | 815990720817401858 | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | 0.428756 | True | 0.103912 | True | 8.895870e-02 | True | Chihuahua |
| 1694 | 816091915477250048 | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | 0.967345 | True | 0.007397 | True | 6.016500e-03 | True | Pomeranian |
| 1695 | 816336735214911488 | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | 0.919330 | True | 0.049480 | True | 1.193420e-02 | True | Labrador_retriever |
| 1697 | 816697700272001025 | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | 0.756992 | True | 0.052850 | True | 4.760780e-02 | True | Chihuahua |
| 1698 | 816816676327063552 | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | 0.668164 | True | 0.105033 | True | 7.787500e-02 | True | malamute |
| 1700 | 817056546584727552 | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | 0.864415 | True | 0.097456 | True | 8.525870e-03 | True | kelpie |
| 1701 | 817120970343411712 | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | 0.568809 | True | 0.229352 | True | 1.571300e-01 | True | Saluki |
| 1702 | 817171292965273600 | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | 0.295483 | True | 0.144431 | True | 7.787900e-02 | True | golden_retriever |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | 0.806163 | True | 0.097386 | True | 8.599280e-02 | True | Doberman |
| 1706 | 817536400337801217 | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | 0.971358 | True | 0.028518 | True | 8.596980e-05 | True | pug |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg | 1 | 0.733256 | True | 0.214145 | True | 2.976900e-02 | True | curly-coated_retriever |
| 1708 | 817827839487737858 | https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg | 1 | 0.387608 | True | 0.264844 | True | 1.221230e-01 | True | cocker_spaniel |
| 1709 | 818145370475810820 | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | 0.621931 | True | 0.364997 | True | 3.971480e-03 | True | golden_retriever |
| 1710 | 818259473185828864 | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | 0.367368 | True | 0.112479 | True | 9.543400e-02 | True | miniature_schnauzer |
| 1714 | 818627210458333184 | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | 0.384188 | True | 0.255917 | True | 7.979950e-02 | False | Labrador_retriever |
| 1715 | 819004803107983360 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | 0.351308 | True | 0.271929 | True | 9.475920e-02 | True | standard_poodle |
| 1719 | 819227688460238848 | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | 0.482452 | True | 0.181082 | True | 6.525660e-02 | True | Border_terrier |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | 0.909106 | True | 0.044120 | True | 3.183490e-02 | True | Rottweiler |
| 1721 | 819588359383371776 | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | 0.547935 | True | 0.116442 | True | 1.016810e-01 | True | Cardigan |
| 1724 | 819952236453363712 | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | 0.925505 | True | 0.036221 | True | 2.041190e-02 | True | American_Staffordshire_terrier |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | 0.940724 | True | 0.042041 | True | 9.417430e-03 | True | Gordon_setter |
| 1728 | 820690176645140481 | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | 0.872064 | True | 0.059526 | True | 3.739960e-02 | True | West_Highland_white_terrier |
| 1729 | 820749716845686786 | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | 0.838012 | True | 0.056733 | True | 2.394360e-02 | True | golden_retriever |
| 1730 | 821044531881721856 | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | 0.148020 | True | 0.133534 | True | 1.209030e-01 | True | Old_English_sheepdog |
| 1731 | 821107785811234820 | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | 0.856590 | True | 0.038537 | True | 3.314580e-02 | True | Pomeranian |
| 1732 | 821149554670182400 | https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg | 1 | 0.515933 | True | 0.203651 | True | 9.105510e-02 | True | German_shepherd |
| 1733 | 821407182352777218 | https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg | 1 | 0.505496 | True | 0.168747 | True | 1.113110e-01 | True | Irish_setter |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | 0.763539 | True | 0.136602 | True | 8.765390e-02 | True | Doberman |
| 1735 | 821765923262631936 | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | 0.980071 | True | 0.008758 | True | 1.805950e-03 | True | golden_retriever |
| 1737 | 821886076407029760 | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | 0.266238 | True | 0.223325 | True | 1.516310e-01 | True | golden_retriever |
| 1738 | 822244816520155136 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | 0.585441 | True | 0.193654 | True | 7.164760e-02 | False | Samoyed |
| 1739 | 822462944365645825 | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | 0.960199 | True | 0.023056 | True | 8.944880e-03 | True | Pomeranian |
| 1740 | 822489057087389700 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | 0.416769 | True | 0.252706 | True | 1.570280e-01 | True | Samoyed |
| 1741 | 822610361945911296 | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | 0.664487 | True | 0.075089 | True | 5.964390e-02 | True | cocker_spaniel |
| 1743 | 822859134160621569 | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | 0.332897 | True | 0.104116 | True | 4.774500e-02 | True | malinois |
| 1744 | 822872901745569793 | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | 0.196015 | True | 0.160329 | True | 6.912620e-02 | True | Lakeland_terrier |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | 0.280949 | False | 0.194044 | True | 1.200510e-01 | True | dingo |
| 1749 | 823699002998870016 | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | 0.203999 | True | 0.171893 | False | 1.075430e-01 | True | cairn |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | 0.234076 | True | 0.193093 | True | 9.519660e-02 | True | schipperke |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | 0.588230 | False | 0.028910 | False | 2.225070e-02 | False | teddy |
| 1752 | 824325613288833024 | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | 0.990793 | True | 0.008919 | True | 2.622640e-04 | True | Pembroke |
| 1753 | 824663926340194305 | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | 0.526488 | True | 0.402815 | True | 3.441780e-02 | True | English_setter |
| 1754 | 824775126675836928 | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | 0.610499 | True | 0.090291 | True | 6.862470e-02 | True | Border_terrier |
| 1756 | 825026590719483904 | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | 0.524454 | True | 0.467678 | True | 4.975840e-03 | True | Eskimo_dog |
| 1757 | 825147591692263424 | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | 0.354823 | True | 0.245390 | True | 1.365450e-01 | True | Pekinese |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | 0.681495 | True | 0.147940 | True | 2.452520e-02 | True | Rottweiler |
| 1759 | 825829644528148480 | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | 0.853407 | True | 0.053531 | True | 4.582990e-02 | True | Great_Pyrenees |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | 0.782058 | True | 0.156581 | True | 7.275120e-03 | True | Labrador_retriever |
| 1763 | 826240494070030336 | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | 0.903048 | True | 0.096242 | True | 2.343640e-04 | True | French_bulldog |
| 1764 | 826476773533745153 | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | 0.741860 | True | 0.122812 | True | 1.004600e-01 | True | German_shepherd |
| 1765 | 826598365270007810 | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | 0.628119 | True | 0.117397 | False | 8.276490e-02 | False | French_bulldog |
| 1767 | 826958653328592898 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | 0.617389 | True | 0.337053 | True | 8.554420e-03 | False | golden_retriever |
| 1769 | 827324948884643840 | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | 0.352486 | True | 0.178884 | True | 8.416440e-02 | True | golden_retriever |
| 1770 | 827600520311402496 | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | 0.325638 | True | 0.317235 | True | 1.160870e-01 | True | Pembroke |
| 1771 | 827653905312006145 | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | 0.285555 | True | 0.217306 | True | 1.432450e-01 | True | collie |
| 1772 | 827933404142436356 | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | 0.806115 | True | 0.104831 | True | 3.814820e-02 | True | German_shepherd |
| 1773 | 828011680017821696 | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | 0.936662 | True | 0.032999 | True | 1.718340e-02 | True | American_Staffordshire_terrier |
| 1775 | 828372645993398273 | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | 0.663047 | True | 0.207779 | True | 4.094880e-02 | True | malamute |
| 1776 | 828376505180889089 | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | 0.523086 | True | 0.186168 | True | 4.208940e-02 | True | American_Staffordshire_terrier |
| 1777 | 828381636999917570 | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | 0.392535 | True | 0.089022 | True | 8.179980e-02 | True | Bedlington_terrier |
| 1778 | 828408677031882754 | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | 0.133033 | True | 0.092227 | True | 6.509450e-02 | True | Weimaraner |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | 0.908457 | False | 0.018040 | True | 1.266710e-02 | True | teddy |
| 1780 | 828650029636317184 | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | 0.649209 | True | 0.198560 | True | 5.619990e-02 | True | golden_retriever |
| 1783 | 829011960981237760 | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | 0.312221 | True | 0.244040 | True | 1.302730e-01 | False | boxer |
| 1784 | 829141528400556032 | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | 0.573140 | True | 0.111159 | True | 9.412690e-02 | False | golden_retriever |
| 1785 | 829374341691346946 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | 0.757547 | True | 0.149950 | True | 4.752270e-02 | True | Staffordshire_bullterrier |
| 1786 | 829449946868879360 | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | 0.315163 | True | 0.153210 | True | 1.327910e-01 | True | Labrador_retriever |
| 1787 | 829501995190984704 | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | 0.950851 | True | 0.015200 | True | 1.109360e-02 | True | French_bulldog |
| 1788 | 829861396166877184 | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | 0.394486 | True | 0.376574 | True | 3.129160e-02 | True | Border_terrier |
| 1791 | 830583320585068544 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | 0.908703 | True | 0.057091 | False | 1.193350e-02 | True | Labrador_retriever |
| 1792 | 830956169170665475 | https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg | 1 | 0.451516 | True | 0.317196 | True | 1.327590e-01 | True | kuvasz |
| 1793 | 831262627380748289 | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | 0.263323 | True | 0.200550 | True | 1.934140e-01 | False | cocker_spaniel |
| 1794 | 831309418084069378 | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | 0.369389 | True | 0.132449 | True | 7.472730e-02 | True | Doberman |
| 1796 | 831322785565769729 | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | 0.999715 | True | 0.000046 | True | 4.118430e-05 | False | Old_English_sheepdog |
| 1797 | 831552930092285952 | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | 0.257415 | True | 0.161442 | True | 9.214290e-02 | True | Chihuahua |
| 1798 | 831650051525054464 | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | 0.530416 | True | 0.180335 | True | 1.043140e-01 | True | Eskimo_dog |
| 1799 | 831670449226514432 | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | 0.624802 | True | 0.362861 | True | 3.926210e-03 | True | Pembroke |
| 1801 | 831939777352105988 | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | 0.153862 | True | 0.091234 | False | 9.064410e-02 | False | Pomeranian |
| 1802 | 832032802820481025 | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | 0.601712 | True | 0.152662 | True | 1.350550e-01 | True | whippet |
| 1805 | 832273440279240704 | https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg | 1 | 0.134081 | True | 0.051928 | False | 4.431090e-02 | True | Pembroke |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | 0.504690 | True | 0.105208 | True | 5.433850e-02 | True | kelpie |
| 1807 | 832397543355072512 | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | 0.988916 | True | 0.001677 | True | 1.125890e-03 | False | Pekinese |
| 1808 | 832636094638288896 | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | 0.525032 | True | 0.252238 | True | 2.168390e-01 | True | Eskimo_dog |
| 1809 | 832757312314028032 | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | 0.160888 | True | 0.159441 | True | 1.543680e-01 | True | Cardigan |
| 1811 | 832998151111966721 | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | 0.539036 | True | 0.317617 | True | 9.392850e-02 | True | boxer |
| 1812 | 833124694597443584 | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | 0.710523 | True | 0.106102 | True | 5.547550e-02 | False | Cardigan |
| 1813 | 833479644947025920 | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | 0.727039 | True | 0.071140 | True | 4.869420e-02 | True | golden_retriever |
| 1814 | 833722901757046785 | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | 0.918144 | True | 0.025721 | True | 2.021110e-02 | True | West_Highland_white_terrier |
| 1815 | 833826103416520705 | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | 0.438054 | True | 0.149706 | True | 9.648050e-02 | True | Chihuahua |
| 1816 | 833863086058651648 | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | 0.494969 | True | 0.312632 | True | 1.417360e-01 | True | kuvasz |
| 1819 | 834209720923721728 | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | 0.754799 | True | 0.197861 | True | 8.654040e-03 | True | golden_retriever |
| 1820 | 834458053273591808 | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | 0.468619 | True | 0.177531 | True | 1.065520e-01 | True | Rhodesian_ridgeback |
| 1822 | 834786237630337024 | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | 0.156276 | True | 0.125912 | True | 9.662390e-02 | True | Border_terrier |
| 1825 | 835172783151792128 | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | 0.663138 | True | 0.152494 | True | 3.547060e-02 | True | Border_collie |
| 1827 | 835297930240217089 | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | 0.341276 | True | 0.336220 | True | 4.544830e-02 | True | Rottweiler |
| 1828 | 835574547218894849 | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | 0.610655 | True | 0.132138 | False | 1.095440e-01 | True | Staffordshire_bullterrier |
| 1830 | 836260088725786625 | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | 0.564688 | True | 0.078267 | False | 5.791620e-02 | True | borzoi |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | 0.936882 | False | 0.020815 | False | 1.156350e-02 | True | mortarboard |
| 1836 | 837110210464448512 | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | 0.767696 | True | 0.217079 | True | 1.165680e-02 | True | Siberian_husky |
| 1837 | 837366284874571778 | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | 0.660085 | True | 0.334947 | True | 2.697160e-03 | True | American_Staffordshire_terrier |
| 1838 | 837471256429613056 | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | 0.976255 | True | 0.013990 | True | 2.110540e-03 | False | Norwegian_elkhound |
| 1840 | 837820167694528512 | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | 0.887625 | True | 0.068718 | True | 3.038680e-02 | True | golden_retriever |
| 1841 | 838083903487373313 | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | 0.800975 | True | 0.164133 | False | 1.798100e-02 | True | chow |
| 1842 | 838476387338051585 | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | 0.997692 | True | 0.001001 | True | 4.045560e-04 | True | Great_Pyrenees |
| 1843 | 838561493054533637 | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | 0.216562 | True | 0.139994 | False | 1.328200e-01 | True | kelpie |
| 1845 | 838921590096166913 | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | 0.664538 | True | 0.170451 | True | 8.782360e-02 | True | Border_terrier |
| 1846 | 839239871831150596 | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | 0.927021 | True | 0.050009 | True | 1.072780e-02 | True | Leonberg |
| 1849 | 839990271299457024 | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | 0.604938 | True | 0.311540 | True | 3.715910e-02 | True | Staffordshire_bullterrier |
| 1850 | 840268004936019968 | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | 0.863987 | True | 0.052632 | True | 3.257360e-02 | True | Chesapeake_Bay_retriever |
| 1852 | 840632337062862849 | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | 0.711148 | True | 0.157929 | True | 5.958190e-02 | True | golden_retriever |
| 1854 | 841077006473256960 | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | 0.962985 | True | 0.014820 | True | 9.557110e-03 | True | Brittany_spaniel |
| 1855 | 841314665196081154 | https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg | 1 | 0.903712 | True | 0.035215 | True | 2.656550e-02 | True | Afghan_hound |
| 1857 | 841680585030541313 | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | 0.547401 | True | 0.198361 | False | 5.849250e-02 | True | Chihuahua |
| 1859 | 842115215311396866 | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | 0.293493 | True | 0.181336 | True | 1.251520e-01 | True | chow |
| 1860 | 842163532590374912 | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | 0.891227 | True | 0.022811 | False | 1.285200e-02 | True | French_bulldog |
| 1861 | 842535590457499648 | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | 0.685084 | True | 0.314608 | True | 1.598240e-04 | True | Pembroke |
| 1863 | 842846295480000512 | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | 0.461076 | True | 0.154946 | True | 1.102490e-01 | True | Labrador_retriever |
| 1865 | 843235543001513987 | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | 0.958452 | True | 0.023770 | True | 5.269360e-03 | True | Pembroke |
| 1866 | 843604394117681152 | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | 0.430583 | True | 0.263581 | True | 1.793850e-01 | True | Labrador_retriever |
| 1867 | 843856843873095681 | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | 0.922540 | True | 0.074358 | True | 2.324950e-03 | True | Labrador_retriever |
| 1868 | 844223788422217728 | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | 0.719510 | True | 0.122019 | True | 3.882760e-02 | True | Labrador_retriever |
| 1870 | 844704788403113984 | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | 0.980213 | True | 0.007012 | True | 3.146970e-03 | True | Labrador_retriever |
| 1871 | 844973813909606400 | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | 0.742421 | True | 0.195218 | True | 1.732010e-02 | True | Labrador_retriever |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | 0.567475 | True | 0.169496 | True | 1.015180e-01 | True | Irish_water_spaniel |
| 1874 | 845397057150107648 | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | 0.394404 | True | 0.186537 | True | 1.819850e-01 | True | Dandie_Dinmont |
| 1875 | 845677943972139009 | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | 0.808681 | True | 0.123141 | True | 2.214320e-02 | True | chow |
| 1876 | 845812042753855489 | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | 0.979803 | True | 0.015923 | True | 1.302790e-03 | False | Samoyed |
| 1877 | 846042936437604353 | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | 0.961110 | True | 0.016695 | True | 9.081530e-03 | True | golden_retriever |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | 0.346468 | True | 0.218451 | True | 1.080200e-01 | True | giant_schnauzer |
| 1879 | 846514051647705089 | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | 0.650003 | True | 0.065199 | True | 5.295530e-02 | True | golden_retriever |
| 1880 | 846874817362120707 | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | 0.450539 | True | 0.187928 | True | 1.400680e-01 | True | Shetland_sheepdog |
| 1882 | 847157206088847362 | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | 0.219609 | True | 0.178671 | True | 1.232710e-01 | True | Staffordshire_bullterrier |
| 1883 | 847251039262605312 | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | 0.495380 | True | 0.316456 | True | 1.585330e-01 | True | Airedale |
| 1884 | 847606175596138505 | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | 0.413688 | True | 0.381836 | True | 6.586780e-02 | False | Cardigan |
| 1885 | 847842811428974592 | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | 0.951337 | True | 0.016849 | True | 1.084920e-02 | True | Bernese_mountain_dog |
| 1888 | 848212111729840128 | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | 0.333486 | True | 0.245797 | True | 1.316470e-01 | False | Bedlington_terrier |
| 1889 | 848324959059550208 | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | 0.544576 | True | 0.290268 | True | 1.544210e-01 | True | malamute |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | 0.823648 | True | 0.100571 | True | 3.830970e-02 | True | flat-coated_retriever |
| 1894 | 849776966551130114 | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | 0.292092 | True | 0.136852 | True | 1.031110e-01 | False | Chihuahua |
| 1895 | 850019790995546112 | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | 0.759907 | True | 0.107405 | True | 5.233530e-02 | True | Shetland_sheepdog |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg | 1 | 0.249012 | True | 0.166364 | True | 1.422540e-01 | True | Yorkshire_terrier |
| 1898 | 850753642995093505 | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | 0.996952 | True | 0.000996 | True | 8.833800e-04 | True | pug |
| 1901 | 851591660324737024 | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | 0.394507 | True | 0.077254 | True | 7.655880e-02 | True | Cardigan |
| 1907 | 852553447878664193 | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | 0.186498 | True | 0.139028 | True | 1.259400e-01 | True | bloodhound |
| 1908 | 852672615818899456 | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | 0.711235 | True | 0.068235 | True | 4.656170e-02 | True | golden_retriever |
| 1909 | 852912242202992640 | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | 0.783765 | True | 0.114147 | True | 4.643950e-02 | True | Great_Dane |
| 1911 | 853639147608842240 | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | 0.509879 | True | 0.237311 | True | 4.691620e-02 | True | German_shepherd |
| 1912 | 853760880890318849 | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | 0.292519 | True | 0.120946 | True | 1.194900e-01 | True | miniature_pinscher |
| 1913 | 854010172552949760 | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | 0.354733 | True | 0.177538 | True | 1.317060e-01 | True | English_springer |
| 1915 | 854365224396361728 | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | 0.907080 | True | 0.086272 | True | 1.413230e-03 | True | Pembroke |
| 1916 | 854482394044301312 | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | 0.260242 | True | 0.189158 | True | 1.441950e-01 | True | Chihuahua |
| 1917 | 854732716440526848 | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | 0.695548 | True | 0.058902 | True | 2.841060e-02 | True | Pembroke |
| 1918 | 855459453768019968 | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | 0.389513 | True | 0.188220 | True | 8.262820e-02 | True | Blenheim_spaniel |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | 0.321676 | True | 0.115138 | True | 9.609970e-02 | True | flat-coated_retriever |
| 1921 | 856526610513747968 | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | 0.798481 | True | 0.060602 | True | 4.072190e-02 | True | Old_English_sheepdog |
| 1922 | 856543823941562368 | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | 0.306910 | True | 0.191218 | False | 1.892880e-01 | True | Boston_bull |
| 1923 | 857029823797047296 | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | 0.968623 | True | 0.010325 | True | 4.148420e-03 | True | golden_retriever |
| 1924 | 857263160327368704 | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | 0.998021 | True | 0.000922 | True | 3.112610e-04 | True | Samoyed |
| 1925 | 857393404942143489 | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | 0.841597 | True | 0.073644 | True | 7.212860e-02 | True | malamute |
| 1926 | 857746408056729600 | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | 0.919832 | True | 0.043513 | True | 2.335880e-02 | True | Labrador_retriever |
| 1927 | 857989990357356544 | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | 0.432580 | True | 0.325898 | True | 4.261790e-02 | True | French_bulldog |
| 1928 | 858107933456039936 | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | 0.863874 | True | 0.015920 | True | 1.061530e-02 | False | golden_retriever |
| 1929 | 858471635011153920 | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | 0.987407 | True | 0.008723 | True | 3.423730e-03 | True | Pembroke |
| 1930 | 858843525470990336 | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | 0.578120 | True | 0.286059 | True | 2.691730e-02 | True | golden_retriever |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg | 1 | 0.224218 | False | 0.216163 | True | 1.283830e-01 | False | Angora |
| 1933 | 859607811541651456 | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | 0.895529 | True | 0.024099 | True | 1.928540e-02 | True | golden_retriever |
| 1935 | 859924526012018688 | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | 0.254587 | True | 0.192558 | True | 1.002700e-01 | False | French_bulldog |
| 1938 | 860524505164394496 | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | 0.286558 | True | 0.235193 | True | 8.795070e-02 | True | Bedlington_terrier |
| 1939 | 860563773140209665 | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | 0.583936 | True | 0.055979 | True | 4.589570e-02 | True | Cardigan |
| 1941 | 861005113778896900 | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | 0.507951 | True | 0.136113 | True | 7.576420e-02 | False | German_shepherd |
| 1943 | 861383897657036800 | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | 0.771008 | True | 0.137174 | True | 6.330860e-02 | True | Cardigan |
| 1945 | 862096992088072192 | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | 0.677589 | True | 0.270648 | True | 3.810990e-02 | True | chow |
| 1947 | 862722525377298433 | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | 0.393330 | True | 0.242034 | True | 7.769250e-02 | True | basset |
| 1948 | 862831371563274240 | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | 0.207281 | True | 0.156296 | True | 1.235360e-01 | True | Australian_terrier |
| 1949 | 863062471531167744 | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | 0.935804 | True | 0.059576 | True | 1.412180e-03 | True | French_bulldog |
| 1950 | 863079547188785154 | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | 0.275242 | True | 0.190569 | True | 1.025950e-01 | False | Lakeland_terrier |
| 1951 | 863432100342583297 | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | 0.690517 | True | 0.103360 | True | 7.948940e-02 | True | Staffordshire_bullterrier |
| 1952 | 863553081350529029 | https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg | 1 | 0.413330 | True | 0.347646 | True | 1.495360e-01 | True | Eskimo_dog |
| 1955 | 864279568663928832 | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | 0.668613 | True | 0.180562 | True | 5.223740e-02 | True | bull_mastiff |
| 1957 | 865006731092295680 | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | 0.989882 | True | 0.009906 | True | 1.349520e-04 | True | Pembroke |
| 1958 | 865359393868664832 | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | 0.832435 | True | 0.163551 | True | 2.770250e-03 | True | Chesapeake_Bay_retriever |
| 1959 | 865718153858494464 | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | 0.673664 | True | 0.157523 | True | 1.260730e-01 | True | golden_retriever |
| 1960 | 866334964761202691 | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | 0.984086 | True | 0.007919 | True | 3.328130e-03 | True | Samoyed |
| 1961 | 866450705531457537 | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | 0.905334 | True | 0.078060 | True | 1.770920e-03 | True | French_bulldog |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | 0.514730 | True | 0.306407 | True | 6.131410e-02 | True | flat-coated_retriever |
| 1963 | 867051520902168576 | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | 0.471403 | True | 0.302219 | True | 1.566060e-01 | True | Samoyed |
| 1964 | 867072653475098625 | https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg | 1 | 0.352946 | True | 0.211766 | True | 1.129520e-01 | True | Blenheim_spaniel |
| 1965 | 867421006826221569 | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | 0.616457 | True | 0.381330 | True | 1.670220e-03 | True | Eskimo_dog |
| 1966 | 867774946302451713 | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | 0.661953 | True | 0.175718 | True | 8.714240e-02 | True | Border_collie |
| 1967 | 867900495410671616 | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | 0.522644 | True | 0.332461 | True | 3.200810e-02 | True | Labrador_retriever |
| 1968 | 868552278524837888 | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | 0.378151 | True | 0.275935 | True | 9.499060e-02 | True | whippet |
| 1969 | 868622495443632128 | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | 0.868107 | True | 0.060973 | True | 3.348890e-02 | True | Labrador_retriever |
| 1971 | 869227993411051520 | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | 0.664181 | True | 0.169234 | True | 1.327000e-01 | True | Pembroke |
| 1972 | 869596645499047938 | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | 0.955156 | True | 0.008054 | True | 6.295630e-03 | False | Chihuahua |
| 1973 | 869702957897576449 | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | 0.993449 | True | 0.006325 | True | 1.775980e-04 | True | Pembroke |
| 1974 | 869772420881756160 | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | 0.980148 | True | 0.019271 | True | 1.362600e-04 | True | Pembroke |
| 1976 | 870308999962521604 | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | 0.622752 | True | 0.158463 | True | 1.481150e-01 | True | Greater_Swiss_Mountain_dog |
| 1977 | 870374049280663552 | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | 0.841001 | True | 0.099278 | True | 3.262130e-02 | True | golden_retriever |
| 1980 | 871032628920680449 | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | 0.398053 | True | 0.068955 | False | 5.060180e-02 | False | kelpie |
| 1981 | 871515927908634625 | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | 0.974781 | True | 0.020041 | True | 3.228240e-03 | False | komondor |
| 1982 | 871762521631449091 | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | 0.921393 | True | 0.064608 | True | 3.383370e-03 | True | Labrador_retriever |
| 1983 | 871879754684805121 | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | 0.969171 | True | 0.018261 | True | 8.515340e-03 | True | Shetland_sheepdog |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | 0.972019 | True | 0.008178 | True | 7.359270e-03 | True | Labrador_retriever |
| 1986 | 872486979161796608 | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | 0.931861 | True | 0.037721 | True | 1.196670e-02 | True | Pembroke |
| 1987 | 872620804844003328 | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | 0.513191 | True | 0.159088 | True | 1.495090e-01 | True | cocker_spaniel |
| 1988 | 872820683541237760 | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | 0.999120 | True | 0.000552 | True | 7.289040e-05 | True | pug |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | 0.476913 | True | 0.174145 | True | 9.286140e-02 | True | Labrador_retriever |
| 1990 | 873213775632977920 | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | 0.619782 | True | 0.338069 | True | 1.267630e-02 | True | vizsla |
| 1991 | 873580283840344065 | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | 0.678537 | True | 0.244022 | True | 4.852950e-02 | True | Newfoundland |
| 1993 | 874012996292530176 | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | 0.806674 | True | 0.116622 | True | 4.918190e-02 | True | Cardigan |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | 0.832177 | True | 0.040437 | True | 2.822830e-02 | True | flat-coated_retriever |
| 1995 | 874296783580663808 | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | 0.437216 | True | 0.277191 | True | 1.574020e-01 | True | cocker_spaniel |
| 1996 | 874680097055178752 | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | 0.836052 | True | 0.047069 | True | 3.600710e-02 | True | Labrador_retriever |
| 1997 | 875021211251597312 | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | 0.714319 | True | 0.091913 | True | 4.603820e-02 | True | West_Highland_white_terrier |
| 1998 | 875144289856114688 | https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg | 1 | 0.245048 | True | 0.223716 | True | 1.607530e-01 | False | Siberian_husky |
| 1999 | 875747767867523072 | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | 0.799551 | True | 0.179975 | True | 4.617600e-03 | True | Labrador_retriever |
| 2000 | 876120275196170240 | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | 0.534327 | True | 0.346312 | True | 9.493270e-02 | True | Bernese_mountain_dog |
| 2001 | 876484053909872640 | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | 0.874566 | True | 0.037354 | True | 1.672360e-02 | True | golden_retriever |
| 2002 | 876838120628539392 | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | 0.575751 | True | 0.240970 | True | 8.893480e-02 | True | bloodhound |
| 2003 | 877201837425926144 | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | 0.931120 | True | 0.068698 | True | 8.173790e-05 | True | Pembroke |
| 2004 | 877316821321428993 | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | 0.509967 | True | 0.090497 | True | 7.940580e-02 | True | Saluki |
| 2005 | 877556246731214848 | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | 0.995368 | True | 0.001936 | True | 4.679190e-04 | False | basset |
| 2006 | 877611172832227328 | https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg | 1 | 0.364729 | True | 0.202907 | True | 1.074730e-01 | True | Irish_setter |
| 2007 | 877736472329191424 | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | 0.837956 | True | 0.062034 | True | 4.059910e-02 | True | Chesapeake_Bay_retriever |
| 2008 | 878057613040115712 | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | 0.839097 | True | 0.078799 | True | 1.524340e-02 | True | French_bulldog |
| 2009 | 878281511006478336 | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | 0.320420 | True | 0.215975 | True | 1.285070e-01 | True | basset |
| 2010 | 878776093423087618 | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | 0.734684 | True | 0.150487 | True | 3.972460e-02 | True | Italian_greyhound |
| 2011 | 879008229531029506 | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | 0.960513 | True | 0.009431 | True | 8.711300e-03 | True | vizsla |
| 2014 | 879415818425184262 | https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg | 1 | 0.383404 | True | 0.134967 | True | 1.104810e-01 | True | English_springer |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | 0.479896 | True | 0.124353 | True | 7.332020e-02 | False | German_short-haired_pointer |
| 2016 | 879862464715927552 | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | 0.813507 | True | 0.146654 | True | 9.485020e-03 | True | basset |
| 2017 | 880095782870896641 | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | 0.120298 | True | 0.106395 | True | 1.060730e-01 | True | miniature_pinscher |
| 2018 | 880221127280381952 | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | 0.238525 | True | 0.104256 | False | 5.258030e-02 | True | Chihuahua |
| 2019 | 880465832366813184 | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | 0.913255 | True | 0.026329 | True | 9.370820e-03 | True | golden_retriever |
| 2020 | 880872448815771648 | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | 0.791416 | True | 0.061393 | True | 3.372570e-02 | True | Pembroke |
| 2023 | 881536004380872706 | https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg | 1 | 0.281463 | True | 0.272066 | False | 1.148540e-01 | False | Samoyed |
| 2024 | 881666595344535552 | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | 0.529012 | True | 0.250003 | True | 1.607390e-01 | True | Saluki |
| 2025 | 881906580714921986 | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | 0.291539 | True | 0.278966 | True | 1.270170e-01 | False | Weimaraner |
| 2027 | 882268110199369728 | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | 0.762211 | True | 0.098985 | True | 1.719950e-02 | True | golden_retriever |
| 2028 | 882627270321602560 | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | 0.542982 | True | 0.251988 | True | 1.076990e-01 | True | Pembroke |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | 0.850050 | True | 0.074257 | True | 1.557940e-02 | True | Labrador_retriever |
| 2030 | 882992080364220416 | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | 0.466778 | True | 0.406044 | True | 7.341440e-02 | False | Eskimo_dog |
| 2031 | 883117836046086144 | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | 0.949562 | True | 0.045948 | True | 2.470940e-03 | True | golden_retriever |
| 2032 | 883360690899218434 | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | 0.987997 | True | 0.007099 | True | 2.140330e-03 | True | chow |
| 2033 | 883482846933004288 | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | 0.943082 | True | 0.032409 | True | 5.500720e-03 | True | golden_retriever |
| 2034 | 883838122936631299 | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | 0.610946 | True | 0.299603 | True | 6.302030e-02 | True | Doberman |
| 2035 | 884162670584377345 | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | 0.707046 | True | 0.199396 | True | 4.914760e-02 | True | German_shepherd |
| 2036 | 884441805382717440 | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | 0.993225 | True | 0.003216 | True | 2.080890e-03 | True | Pembroke |
| 2037 | 884562892145688576 | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | 0.546406 | True | 0.404291 | True | 4.400190e-02 | True | pug |
| 2038 | 884876753390489601 | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | 0.822103 | True | 0.106075 | True | 3.734850e-02 | True | chow |
| 2039 | 884925521741709313 | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | 0.259916 | True | 0.198451 | True | 1.277250e-01 | True | Italian_greyhound |
| 2042 | 885528943205470208 | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | 0.369275 | True | 0.265835 | True | 1.346970e-01 | True | pug |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | 0.972494 | True | 0.006630 | True | 6.239150e-03 | True | Blenheim_spaniel |
| 2044 | 886258384151887873 | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | 0.943575 | True | 0.025286 | False | 2.848920e-03 | False | pug |
| 2045 | 886366144734445568 | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | 0.999201 | True | 0.000361 | True | 7.556160e-05 | True | French_bulldog |
| 2047 | 886736880519319552 | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | 0.309706 | True | 0.186136 | True | 8.634630e-02 | True | kuvasz |
| 2048 | 886983233522544640 | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | 0.793469 | True | 0.143528 | True | 3.225290e-02 | False | Chihuahua |
| 2049 | 887101392804085760 | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | 0.733942 | True | 0.035029 | True | 2.970470e-02 | True | Samoyed |
| 2050 | 887343217045368832 | https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg | 1 | 0.330741 | True | 0.275645 | False | 1.342030e-01 | True | Mexican_hairless |
| 2051 | 887473957103951883 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | 0.809197 | True | 0.054950 | True | 3.891480e-02 | True | Pembroke |
| 2053 | 887705289381826560 | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | 0.821664 | True | 0.087582 | True | 2.623640e-02 | True | basset |
| 2054 | 888078434458587136 | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | 0.995026 | True | 0.000932 | True | 9.032110e-04 | True | French_bulldog |
| 2056 | 888554962724278272 | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | 0.700377 | True | 0.166511 | True | 1.114110e-01 | True | Siberian_husky |
| 2057 | 888804989199671297 | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | 0.469760 | True | 0.184172 | True | 7.348170e-02 | True | golden_retriever |
| 2058 | 888917238123831296 | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | 0.714719 | True | 0.120184 | True | 1.055060e-01 | True | golden_retriever |
| 2059 | 889278841981685760 | https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg | 1 | 0.626152 | True | 0.194742 | True | 2.735070e-02 | True | whippet |
| 2060 | 889531135344209921 | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | 0.953442 | True | 0.013834 | True | 7.957750e-03 | True | golden_retriever |
| 2061 | 889638837579907072 | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | 0.991650 | True | 0.002129 | True | 1.498180e-03 | True | French_bulldog |
| 2062 | 889665388333682689 | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | 0.966327 | True | 0.027356 | True | 4.633230e-03 | True | Pembroke |
| 2063 | 889880896479866881 | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | 0.377417 | True | 0.151317 | True | 8.298110e-02 | False | French_bulldog |
| 2064 | 890006608113172480 | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | 0.957979 | True | 0.013884 | True | 8.167480e-03 | True | Samoyed |
| 2065 | 890240255349198849 | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | 0.511319 | True | 0.451038 | True | 2.924820e-02 | True | Pembroke |
| 2066 | 890609185150312448 | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | 0.487574 | True | 0.193054 | True | 1.181840e-01 | True | Irish_terrier |
| 2067 | 890729181411237888 | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | 0.566142 | True | 0.178406 | True | 7.650690e-02 | True | Pomeranian |
| 2068 | 890971913173991426 | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | 0.341703 | True | 0.199287 | True | 1.935480e-01 | False | Appenzeller |
| 2069 | 891087950875897856 | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | 0.425595 | True | 0.116317 | True | 7.690220e-02 | False | Chesapeake_Bay_retriever |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | 0.555712 | True | 0.225770 | True | 1.752190e-01 | True | basset |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | 0.716012 | True | 0.078253 | True | 3.137890e-02 | True | Chihuahua |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | 0.323581 | True | 0.090647 | True | 6.895690e-02 | True | Chihuahua |
The str.capitalize funtion will be used to capitalize the first letters of the columns
clean_images.dog_breed = clean_images.dog_breed.str.capitalize()
clean_images.dog_breed.head()
0 Welsh_springer_spaniel 2 German_shepherd 3 Rhodesian_ridgeback 4 Miniature_pinscher 5 Bernese_mountain_dog Name: dog_breed, dtype: object
The code worked. The first letter of every word in the column is now capitalized as seen from the snippet of the column above
clean_images= pd.melt(clean_images,
id_vars = ['tweet_id','jpg_url','img_num','p1_dog','p2_dog','p3_dog','dog_breed'],
value_vars =['p1_conf','p2_conf','p3_conf'],
var_name ='p-configs',
value_name ='confidence_levels')
## testing if the melt function worked.
clean_images.columns
Index(['tweet_id', 'jpg_url', 'img_num', 'p1_dog', 'p2_dog', 'p3_dog',
'dog_breed', 'p-configs', 'confidence_levels'],
dtype='object')
#dropping the var_name (P-configs)
clean_images.drop('p-configs',axis = 1, inplace = True)
#testing if the drop worked
clean_images.columns
Index(['tweet_id', 'jpg_url', 'img_num', 'p1_dog', 'p2_dog', 'p3_dog',
'dog_breed', 'confidence_levels'],
dtype='object')
#checking for duplicates
clean_images.tweet_id.duplicated().sum()
2968
#dropping the duplicates
clean_images.drop_duplicates('tweet_id',inplace= True)
#testing the drop
clean_images.tweet_id.duplicated().sum()
0
clean_images.columns
clean_images.head()
| tweet_id | jpg_url | img_num | p1_dog | p2_dog | p3_dog | dog_breed | confidence_levels | |
|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | True | True | True | Welsh_springer_spaniel | 0.465074 |
| 1 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | True | True | True | German_shepherd | 0.596461 |
| 2 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | True | True | True | Rhodesian_ridgeback | 0.408143 |
| 3 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | True | True | True | Miniature_pinscher | 0.560311 |
| 4 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.651137 |
#Replacing none values with a space and then commas in the columns
clean_TA.doggo.replace('None', '', inplace=True)
clean_TA.floofer.replace('None','', inplace = True)
clean_TA.pupper.replace('None','', inplace =True)
clean_TA.puppo.replace('None','', inplace =True)
#creation of the new column via concatenation
clean_TA['dog_stage'] = clean_TA.doggo + clean_TA.floofer + clean_TA.pupper + clean_TA.puppo
clean_TA.loc[clean_TA.dog_stage == 'doggopupper', 'dog_stage'] = 'doggo, pupper'
clean_TA.loc[clean_TA.dog_stage == 'doggopuppo', 'dog_stage'] = 'doggo, puppo'
clean_TA.loc[clean_TA.dog_stage == 'doggofloofer', 'dog_stage'] = 'doggo, floofer'
clean_TA.head() clean_TA = pd.melt(clean_TA, id_vars = ['tweet_id', 'timestamp', 'text', 'expanded_urls', 'rating_numerator', 'rating_denominator', 'name'], value_vars = ['doggo', 'floofer', 'pupper', 'puppo'], var_name = 'dog_types', value_name = 'dog_stage', )
clean_TA.dog_types.value_counts() clean_TA.dog_types
clean_TA.columns
#to display all the columns in the dataframe
Index(['tweet_id', 'timestamp', 'text', 'rating_numerator',
'rating_denominator', 'name', 'doggo', 'floofer', 'pupper', 'puppo',
'dog_stage'],
dtype='object')
clean_TA
| tweet_id | timestamp | text | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | dog_stage | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56 | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | 13 | 10 | Phineas | |||||
| 1 | 892177421306343426 | 2017-08-01 00:17:27 | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | 13 | 10 | Tilly | |||||
| 2 | 891815181378084864 | 2017-07-31 00:18:03 | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | 12 | 10 | Archie | |||||
| 3 | 891689557279858688 | 2017-07-30 15:58:51 | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | 13 | 10 | Darla | |||||
| 4 | 891327558926688256 | 2017-07-29 16:00:24 | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | 12 | 10 | Franklin | |||||
| 5 | 891087950875897856 | 2017-07-29 00:08:17 | Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh | 13 | 10 | None | |||||
| 6 | 890971913173991426 | 2017-07-28 16:27:12 | Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl | 13 | 10 | Jax | |||||
| 7 | 890729181411237888 | 2017-07-28 00:22:40 | When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq | 13 | 10 | None | |||||
| 8 | 890609185150312448 | 2017-07-27 16:25:51 | This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b | 13 | 10 | Zoey | |||||
| 9 | 890240255349198849 | 2017-07-26 15:59:51 | This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A | 14 | 10 | Cassie | doggo | doggo | |||
| 10 | 890006608113172480 | 2017-07-26 00:31:25 | This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme | 13 | 10 | Koda | |||||
| 11 | 889880896479866881 | 2017-07-25 16:11:53 | This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g | 13 | 10 | Bruno | |||||
| 12 | 889665388333682689 | 2017-07-25 01:55:32 | Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm | 13 | 10 | None | puppo | puppo | |||
| 13 | 889638837579907072 | 2017-07-25 00:10:02 | This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR | 12 | 10 | Ted | |||||
| 14 | 889531135344209921 | 2017-07-24 17:02:04 | This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq | 13 | 10 | Stuart | puppo | puppo | |||
| 15 | 889278841981685760 | 2017-07-24 00:19:32 | This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb | 13 | 10 | Oliver | |||||
| 16 | 888917238123831296 | 2017-07-23 00:22:39 | This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN | 12 | 10 | Jim | |||||
| 17 | 888804989199671297 | 2017-07-22 16:56:37 | This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K | 13 | 10 | Zeke | |||||
| 18 | 888554962724278272 | 2017-07-22 00:23:06 | This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK | 13 | 10 | Ralphus | |||||
| 20 | 888078434458587136 | 2017-07-20 16:49:33 | This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX | 12 | 10 | Gerald | |||||
| 21 | 887705289381826560 | 2017-07-19 16:06:48 | This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 | 13 | 10 | Jeffrey | |||||
| 22 | 887517139158093824 | 2017-07-19 03:39:09 | I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba | 14 | 10 | NaN | |||||
| 23 | 887473957103951883 | 2017-07-19 00:47:34 | This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX | 13 | 10 | Canela | |||||
| 24 | 887343217045368832 | 2017-07-18 16:08:03 | You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV | 13 | 10 | None | |||||
| 25 | 887101392804085760 | 2017-07-18 00:07:08 | This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp | 12 | 10 | None | |||||
| 26 | 886983233522544640 | 2017-07-17 16:17:36 | This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT | 13 | 10 | Maya | |||||
| 27 | 886736880519319552 | 2017-07-16 23:58:41 | This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b | 13 | 10 | Mingus | |||||
| 28 | 886680336477933568 | 2017-07-16 20:14:00 | This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA | 13 | 10 | Derek | |||||
| 29 | 886366144734445568 | 2017-07-15 23:25:31 | This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox | 12 | 10 | Roscoe | pupper | pupper | |||
| 30 | 886267009285017600 | 2017-07-15 16:51:35 | @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution | 12 | 10 | None | |||||
| 31 | 886258384151887873 | 2017-07-15 16:17:19 | This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O | 13 | 10 | Waffles | |||||
| 33 | 885984800019947520 | 2017-07-14 22:10:11 | Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 | 12 | 10 | Jimbo | |||||
| 34 | 885528943205470208 | 2017-07-13 15:58:47 | This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF | 13 | 10 | Maisey | |||||
| 35 | 885518971528720385 | 2017-07-13 15:19:09 | I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk | 14 | 10 | None | |||||
| 37 | 885167619883638784 | 2017-07-12 16:03:00 | Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf | 13 | 10 | None | |||||
| 38 | 884925521741709313 | 2017-07-12 00:01:00 | This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa | 12 | 10 | Earl | |||||
| 39 | 884876753390489601 | 2017-07-11 20:47:12 | This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO | 13 | 10 | Lola | |||||
| 40 | 884562892145688576 | 2017-07-11 00:00:02 | This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 | 13 | 10 | Kevin | |||||
| 41 | 884441805382717440 | 2017-07-10 15:58:53 | I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC | 14 | 10 | None | |||||
| 42 | 884247878851493888 | 2017-07-10 03:08:17 | OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj | 13 | 10 | None | |||||
| 43 | 884162670584377345 | 2017-07-09 21:29:42 | Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ | 12 | 10 | Yogi | doggo | doggo | |||
| 44 | 883838122936631299 | 2017-07-09 00:00:04 | This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY | 12 | 10 | Noah | |||||
| 45 | 883482846933004288 | 2017-07-08 00:28:19 | This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 | 5 | 10 | Bella | |||||
| 46 | 883360690899218434 | 2017-07-07 16:22:55 | Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP | 13 | 10 | Grizzwald | floofer | floofer | |||
| 47 | 883117836046086144 | 2017-07-07 00:17:54 | Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E | 13 | 10 | None | |||||
| 48 | 882992080364220416 | 2017-07-06 15:58:11 | This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj | 13 | 10 | Rusty | |||||
| 49 | 882762694511734784 | 2017-07-06 00:46:41 | This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu | 12 | 10 | Gus | pupper | pupper | |||
| 50 | 882627270321602560 | 2017-07-05 15:48:34 | This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 | 13 | 10 | Stanley | |||||
| 51 | 882268110199369728 | 2017-07-04 16:01:23 | This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA | 13 | 10 | Alfy | |||||
| 52 | 882045870035918850 | 2017-07-04 01:18:17 | This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w | 13 | 10 | Koko | |||||
| 53 | 881906580714921986 | 2017-07-03 16:04:48 | This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ | 12 | 10 | Rey | |||||
| 54 | 881666595344535552 | 2017-07-03 00:11:11 | This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s | 13 | 10 | Gary | |||||
| 55 | 881633300179243008 | 2017-07-02 21:58:53 | @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s | 17 | 10 | None | |||||
| 56 | 881536004380872706 | 2017-07-02 15:32:16 | Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF | 14 | 10 | NaN | pupper | pupper | |||
| 57 | 881268444196462592 | 2017-07-01 21:49:04 | Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC | 12 | 10 | Elliot | |||||
| 58 | 880935762899988482 | 2017-06-30 23:47:07 | This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt | 13 | 10 | Louis | |||||
| 59 | 880872448815771648 | 2017-06-30 19:35:32 | Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf | 12 | 10 | None | |||||
| 60 | 880465832366813184 | 2017-06-29 16:39:47 | This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw | 12 | 10 | Bella | |||||
| 61 | 880221127280381952 | 2017-06-29 00:27:25 | Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK | 12 | 10 | Jesse | |||||
| 62 | 880095782870896641 | 2017-06-28 16:09:20 | Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 | 11 | 10 | None | |||||
| 63 | 879862464715927552 | 2017-06-28 00:42:13 | This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 | 13 | 10 | Romeo | |||||
| 64 | 879674319642796034 | 2017-06-27 12:14:36 | @RealKentMurphy 14/10 confirmed | 14 | 10 | None | |||||
| 65 | 879492040517615616 | 2017-06-27 00:10:17 | This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 | 12 | 10 | Bailey | |||||
| 66 | 879415818425184262 | 2017-06-26 19:07:24 | This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY | 13 | 10 | Duddles | |||||
| 67 | 879376492567855104 | 2017-06-26 16:31:08 | This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa | 12 | 10 | Jack | |||||
| 69 | 879050749262655488 | 2017-06-25 18:56:45 | This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD | 11 | 10 | Steven | |||||
| 70 | 879008229531029506 | 2017-06-25 16:07:47 | This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN | 13 | 10 | Beau | |||||
| 71 | 878776093423087618 | 2017-06-25 00:45:22 | This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS | 13 | 10 | Snoopy | puppo | puppo | |||
| 72 | 878604707211726852 | 2017-06-24 13:24:20 | Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa | 13 | 10 | None | |||||
| 75 | 878281511006478336 | 2017-06-23 16:00:04 | Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 | 13 | 10 | Shadow | |||||
| 76 | 878057613040115712 | 2017-06-23 01:10:23 | This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe | 14 | 10 | Emmy | |||||
| 77 | 877736472329191424 | 2017-06-22 03:54:17 | This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r | 13 | 10 | Aja | |||||
| 79 | 877556246731214848 | 2017-06-21 15:58:08 | This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP | 12 | 10 | Penny | |||||
| 80 | 877316821321428993 | 2017-06-21 00:06:44 | Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc | 13 | 10 | Dante | |||||
| 81 | 877201837425926144 | 2017-06-20 16:29:50 | This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y | 12 | 10 | Nelly | |||||
| 82 | 876838120628539392 | 2017-06-19 16:24:33 | This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 | 12 | 10 | Ginger | pupper | pupper | |||
| 83 | 876537666061221889 | 2017-06-18 20:30:39 | I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu | 14 | 10 | None | |||||
| 84 | 876484053909872640 | 2017-06-18 16:57:37 | This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs | 13 | 10 | Benedict | |||||
| 85 | 876120275196170240 | 2017-06-17 16:52:05 | Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek | 13 | 10 | Venti | |||||
| 86 | 875747767867523072 | 2017-06-16 16:11:53 | This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN | 13 | 10 | Goose | |||||
| 87 | 875144289856114688 | 2017-06-15 00:13:52 | Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj | 13 | 10 | Nugget | |||||
| 88 | 875097192612077568 | 2017-06-14 21:06:43 | You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW | 13 | 10 | None | |||||
| 89 | 875021211251597312 | 2017-06-14 16:04:48 | Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW | 12 | 10 | None | |||||
| 90 | 874680097055178752 | 2017-06-13 17:29:20 | Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD | 12 | 10 | Cash | |||||
| 92 | 874296783580663808 | 2017-06-12 16:06:11 | This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm | 13 | 10 | Jed | pupper | pupper | |||
| 93 | 874057562936811520 | 2017-06-12 00:15:36 | I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 | 12 | 10 | None | |||||
| 94 | 874012996292530176 | 2017-06-11 21:18:31 | This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V | 13 | 10 | Sebastian | puppo | puppo | |||
| 96 | 873580283840344065 | 2017-06-10 16:39:04 | We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n | 13 | 10 | None | |||||
| 98 | 873213775632977920 | 2017-06-09 16:22:42 | This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ | 12 | 10 | Sierra | pupper | pupper | |||
| 99 | 872967104147763200 | 2017-06-09 00:02:31 | Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR | 12 | 10 | None | doggo | doggo | |||
| 100 | 872820683541237760 | 2017-06-08 14:20:41 | Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 | 13 | 10 | None | |||||
| 102 | 872620804844003328 | 2017-06-08 01:06:27 | This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 | 13 | 10 | Monkey | |||||
| 103 | 872486979161796608 | 2017-06-07 16:14:40 | We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ | 12 | 10 | None | |||||
| 104 | 872261713294495745 | 2017-06-07 01:19:32 | This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa | 13 | 10 | Harry | |||||
| 105 | 872122724285648897 | 2017-06-06 16:07:15 | This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN | 12 | 10 | Kody | |||||
| 106 | 871879754684805121 | 2017-06-06 00:01:46 | Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w | 13 | 10 | Lassie | |||||
| 107 | 871762521631449091 | 2017-06-05 16:15:56 | This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg | 12 | 10 | Rover | pupper | pupper | |||
| 108 | 871515927908634625 | 2017-06-04 23:56:03 | This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw | 12 | 10 | Napolean | doggo | doggo | |||
| 110 | 871102520638267392 | 2017-06-03 20:33:19 | Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH | 14 | 10 | None | doggo | doggo | |||
| 111 | 871032628920680449 | 2017-06-03 15:55:36 | This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo | 13 | 10 | Boomer | |||||
| 112 | 870804317367881728 | 2017-06-03 00:48:22 | Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi | 11 | 10 | None | |||||
| 113 | 870726314365509632 | 2017-06-02 19:38:25 | @ComplicitOwl @ShopWeRateDogs >10/10 is reserved for dogs | 10 | 10 | None | |||||
| 114 | 870656317836468226 | 2017-06-02 15:00:16 | This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 | 13 | 10 | Cody | |||||
| 115 | 870374049280663552 | 2017-06-01 20:18:38 | This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm | 13 | 10 | Zoey | |||||
| 116 | 870308999962521604 | 2017-06-01 16:00:09 | This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 | 13 | 10 | Rumble | |||||
| 117 | 870063196459192321 | 2017-05-31 23:43:25 | Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju | 14 | 10 | Clifford | |||||
| 119 | 869772420881756160 | 2017-05-31 04:27:59 | This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D | 13 | 10 | Dewey | |||||
| 120 | 869702957897576449 | 2017-05-30 23:51:58 | Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq | 13 | 10 | Stanley | |||||
| 121 | 869596645499047938 | 2017-05-30 16:49:31 | This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo | 12 | 10 | Scout | doggo | doggo | |||
| 122 | 869227993411051520 | 2017-05-29 16:24:37 | This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ | 13 | 10 | Gizmo | |||||
| 123 | 868880397819494401 | 2017-05-28 17:23:24 | This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF | 14 | 10 | Walter | |||||
| 125 | 868622495443632128 | 2017-05-28 00:18:35 | Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM | 13 | 10 | None | |||||
| 126 | 868552278524837888 | 2017-05-27 19:39:34 | Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi | 12 | 10 | Cooper | |||||
| 127 | 867900495410671616 | 2017-05-26 00:29:37 | Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ | 12 | 10 | None | |||||
| 128 | 867774946302451713 | 2017-05-25 16:10:44 | Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa | 13 | 10 | Harold | |||||
| 129 | 867421006826221569 | 2017-05-24 16:44:18 | This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go | 12 | 10 | Shikha | puppo | puppo | |||
| 131 | 867051520902168576 | 2017-05-23 16:16:06 | Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ | 13 | 10 | None | |||||
| 133 | 866720684873056260 | 2017-05-22 18:21:28 | He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 | 13 | 10 | None | |||||
| 134 | 866686824827068416 | 2017-05-22 16:06:55 | This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z | 12 | 10 | Lili | |||||
| 135 | 866450705531457537 | 2017-05-22 00:28:40 | This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr | 13 | 10 | Jamesy | pupper | pupper | |||
| 136 | 866334964761202691 | 2017-05-21 16:48:45 | This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c | 12 | 10 | Coco | |||||
| 138 | 865718153858494464 | 2017-05-19 23:57:46 | Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg | 13 | 10 | Boomer | |||||
| 139 | 865359393868664832 | 2017-05-19 00:12:11 | This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc | 13 | 10 | Sammy | |||||
| 140 | 865006731092295680 | 2017-05-18 00:50:50 | This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o | 13 | 10 | Nelly | |||||
| 141 | 864873206498414592 | 2017-05-17 16:00:15 | We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR | 14 | 10 | None | |||||
| 142 | 864279568663928832 | 2017-05-16 00:41:21 | This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck | 12 | 10 | Meatball | |||||
| 143 | 864197398364647424 | 2017-05-15 19:14:50 | This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr | 13 | 10 | Paisley | |||||
| 144 | 863907417377173506 | 2017-05-15 00:02:33 | This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 | 13 | 10 | Albus | |||||
| 145 | 863553081350529029 | 2017-05-14 00:34:33 | This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop | 13 | 10 | Neptune | |||||
| 147 | 863432100342583297 | 2017-05-13 16:33:49 | This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H | 12 | 10 | Belle | |||||
| 148 | 863427515083354112 | 2017-05-13 16:15:35 | @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 | 12 | 10 | None | |||||
| 149 | 863079547188785154 | 2017-05-12 17:12:53 | Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen | 14 | 10 | None | |||||
| 150 | 863062471531167744 | 2017-05-12 16:05:02 | Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt | 13 | 10 | Quinn | |||||
| 151 | 862831371563274240 | 2017-05-12 00:46:44 | This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE | 13 | 10 | Zooey | |||||
| 152 | 862722525377298433 | 2017-05-11 17:34:13 | This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 | 11 | 10 | Dave | |||||
| 153 | 862457590147678208 | 2017-05-11 00:01:27 | This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb | 13 | 10 | Jersey | |||||
| 154 | 862096992088072192 | 2017-05-10 00:08:34 | We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd | 13 | 10 | None | |||||
| 156 | 861383897657036800 | 2017-05-08 00:54:59 | This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 | 13 | 10 | Hobbes | |||||
| 157 | 861288531465048066 | 2017-05-07 18:36:02 | HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g | 13 | 10 | None | |||||
| 158 | 861005113778896900 | 2017-05-06 23:49:50 | This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 | 12 | 10 | Burt | |||||
| 161 | 860563773140209665 | 2017-05-05 18:36:06 | Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt | 13 | 10 | Lorenzo | |||||
| 162 | 860524505164394496 | 2017-05-05 16:00:04 | This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I | 13 | 10 | Carl | |||||
| 163 | 860276583193509888 | 2017-05-04 23:34:55 | This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN | 12 | 10 | Jordy | |||||
| 164 | 860184849394610176 | 2017-05-04 17:30:24 | Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG | 14 | 10 | None | |||||
| 166 | 859924526012018688 | 2017-05-04 00:15:58 | Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 | 12 | 10 | Milky | |||||
| 167 | 859851578198683649 | 2017-05-03 19:26:06 | Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl | 13 | 10 | Trooper | |||||
| 168 | 859607811541651456 | 2017-05-03 03:17:27 | Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 | 13 | 10 | None | puppo | puppo | |||
| 169 | 859196978902773760 | 2017-05-02 00:04:57 | We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 | 12 | 10 | NaN | |||||
| 170 | 859074603037188101 | 2017-05-01 15:58:40 | Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT | 13 | 10 | None | |||||
| 172 | 858843525470990336 | 2017-05-01 00:40:27 | I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq | 13 | 10 | None | doggo | doggo | |||
| 173 | 858471635011153920 | 2017-04-30 00:02:42 | This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy | 13 | 10 | Sophie | |||||
| 174 | 858107933456039936 | 2017-04-28 23:57:28 | This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF | 12 | 10 | Wyatt | |||||
| 175 | 857989990357356544 | 2017-04-28 16:08:49 | This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X | 12 | 10 | Rosie | |||||
| 176 | 857746408056729600 | 2017-04-28 00:00:54 | Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai | 13 | 10 | Thor | |||||
| 177 | 857393404942143489 | 2017-04-27 00:38:11 | Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV | 13 | 10 | None | |||||
| 178 | 857263160327368704 | 2017-04-26 16:00:39 | This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC | 13 | 10 | Oscar | |||||
| 179 | 857214891891077121 | 2017-04-26 12:48:51 | @Marc_IRL pixelated af 12/10 | 12 | 10 | None | |||||
| 181 | 857029823797047296 | 2017-04-26 00:33:27 | This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu | 12 | 10 | Zeke | |||||
| 183 | 856543823941562368 | 2017-04-24 16:22:16 | This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO | 12 | 10 | Callie | |||||
| 184 | 856526610513747968 | 2017-04-24 15:13:52 | THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA | 14 | 10 | None | |||||
| 186 | 856288084350160898 | 2017-04-23 23:26:03 | @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 | 14 | 10 | None | |||||
| 187 | 856282028240666624 | 2017-04-23 23:01:59 | This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 | 14 | 10 | Cermet | |||||
| 188 | 855862651834028034 | 2017-04-22 19:15:32 | @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research | 11 | 10 | None | |||||
| 189 | 855860136149123072 | 2017-04-22 19:05:32 | @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 | 11 | 10 | None | |||||
| 190 | 855857698524602368 | 2017-04-22 18:55:51 | HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S | 13 | 10 | None | |||||
| 191 | 855851453814013952 | 2017-04-22 18:31:02 | Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel | 13 | 10 | None | doggo | puppo | doggo, puppo | ||
| 192 | 855818117272018944 | 2017-04-22 16:18:34 | I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth | 13 | 10 | None | |||||
| 193 | 855459453768019968 | 2017-04-21 16:33:22 | Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x | 12 | 10 | NaN | |||||
| 196 | 854732716440526848 | 2017-04-19 16:25:34 | This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s | 12 | 10 | Marlee | |||||
| 197 | 854482394044301312 | 2017-04-18 23:50:52 | This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 | 13 | 10 | Arya | |||||
| 198 | 854365224396361728 | 2017-04-18 16:05:17 | This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 | 13 | 10 | Einstein | |||||
| 199 | 854120357044912130 | 2017-04-17 23:52:16 | Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR | 14 | 10 | None | pupper | pupper | |||
| 200 | 854010172552949760 | 2017-04-17 16:34:26 | At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk | 11 | 10 | None | doggo | floofer | doggo, floofer | ||
| 201 | 853760880890318849 | 2017-04-17 00:03:50 | Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x | 12 | 10 | Alice | |||||
| 202 | 853639147608842240 | 2017-04-16 16:00:07 | A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe | 13 | 10 | None | |||||
| 203 | 853299958564483072 | 2017-04-15 17:32:18 | This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP | 13 | 10 | Rumpole | |||||
| 205 | 852912242202992640 | 2017-04-14 15:51:39 | Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U | 12 | 10 | Benny | |||||
| 206 | 852672615818899456 | 2017-04-13 23:59:28 | This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW | 12 | 10 | Aspen | |||||
| 207 | 852553447878664193 | 2017-04-13 16:05:56 | This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC | 13 | 10 | Jarod | |||||
| 208 | 852311364735569921 | 2017-04-13 00:03:59 | This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg | 13 | 10 | Wiggles | |||||
| 209 | 852226086759018497 | 2017-04-12 18:25:07 | Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW | 14 | 10 | General | |||||
| 210 | 852189679701164033 | 2017-04-12 16:00:27 | This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG | 12 | 10 | Sailor | |||||
| 213 | 851591660324737024 | 2017-04-11 00:24:08 | Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS | 11 | 10 | None | |||||
| 214 | 851464819735769094 | 2017-04-10 16:00:07 | This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M | 14 | 10 | Iggy | |||||
| 215 | 851224888060895234 | 2017-04-10 00:06:42 | Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 | 13 | 10 | Snoop | |||||
| 216 | 850753642995093505 | 2017-04-08 16:54:09 | This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN | 11 | 10 | Kyle | |||||
| 217 | 850380195714523136 | 2017-04-07 16:10:12 | This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO | 13 | 10 | Leo | |||||
| 218 | 850333567704068097 | 2017-04-07 13:04:55 | @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS | 13 | 10 | None | |||||
| 219 | 850145622816686080 | 2017-04-07 00:38:06 | This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l | 11 | 10 | Riley | |||||
| 220 | 850019790995546112 | 2017-04-06 16:18:05 | Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde | 12 | 10 | Boomer | pupper | pupper | |||
| 221 | 849776966551130114 | 2017-04-06 00:13:11 | Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT | 12 | 10 | None | |||||
| 223 | 849412302885593088 | 2017-04-05 00:04:08 | This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 | 12 | 10 | Noosh | |||||
| 224 | 849336543269576704 | 2017-04-04 19:03:06 | At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu | 11 | 10 | None | |||||
| 225 | 849051919805034497 | 2017-04-04 00:12:06 | This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz | 13 | 10 | Kevin | |||||
| 226 | 848690551926992896 | 2017-04-03 00:16:10 | Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU | 12 | 10 | None | |||||
| 227 | 848324959059550208 | 2017-04-02 00:03:26 | Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z | 12 | 10 | Odin | |||||
| 228 | 848213670039564288 | 2017-04-01 16:41:12 | Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet | 11 | 10 | None | |||||
| 229 | 848212111729840128 | 2017-04-01 16:35:01 | This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 | 6 | 10 | Jerry | |||||
| 232 | 847962785489326080 | 2017-04-01 00:04:17 | This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj | 10 | 10 | Georgie | |||||
| 233 | 847842811428974592 | 2017-03-31 16:07:33 | This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 | 12 | 10 | Rontu | |||||
| 234 | 847617282490613760 | 2017-03-31 01:11:22 | .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 | 13 | 10 | None | |||||
| 235 | 847606175596138505 | 2017-03-31 00:27:14 | This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 | 12 | 10 | Cannon | |||||
| 236 | 847251039262605312 | 2017-03-30 00:56:03 | This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq | 12 | 10 | Furzey | |||||
| 237 | 847157206088847362 | 2017-03-29 18:43:12 | Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r | 11 | 10 | Daisy | |||||
| 238 | 847116187444137987 | 2017-03-29 16:00:12 | Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 | 11 | 10 | None | |||||
| 239 | 846874817362120707 | 2017-03-29 00:01:05 | This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe | 13 | 10 | Tuck | |||||
| 240 | 846514051647705089 | 2017-03-28 00:07:32 | This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK | 13 | 10 | Barney | doggo | doggo | |||
| 241 | 846505985330044928 | 2017-03-27 23:35:28 | THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy | 11 | 10 | None | |||||
| 242 | 846153765933735936 | 2017-03-27 00:15:53 | This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR | 13 | 10 | Vixen | |||||
| 243 | 846139713627017216 | 2017-03-26 23:20:02 | SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd | 13 | 10 | None | |||||
| 244 | 846042936437604353 | 2017-03-26 16:55:29 | Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW | 12 | 10 | Jarvis | |||||
| 245 | 845812042753855489 | 2017-03-26 01:38:00 | We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP | 13 | 10 | None | |||||
| 246 | 845677943972139009 | 2017-03-25 16:45:08 | C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo | 12 | 10 | None | |||||
| 248 | 845397057150107648 | 2017-03-24 22:08:59 | Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o | 13 | 10 | Mimosa | doggo | doggo | |||
| 249 | 845306882940190720 | 2017-03-24 16:10:40 | This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk | 12 | 10 | Pickles | pupper | pupper | |||
| 251 | 844979544864018432 | 2017-03-23 18:29:57 | PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B | 13 | 10 | None | |||||
| 252 | 844973813909606400 | 2017-03-23 18:07:10 | This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr | 12 | 10 | Brady | |||||
| 253 | 844704788403113984 | 2017-03-23 00:18:10 | This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN | 13 | 10 | Luna | |||||
| 254 | 844580511645339650 | 2017-03-22 16:04:20 | This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk | 11 | 10 | Charlie | |||||
| 255 | 844223788422217728 | 2017-03-21 16:26:50 | This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx | 12 | 10 | Margo | |||||
| 256 | 843981021012017153 | 2017-03-21 00:22:10 | HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd | 13 | 10 | None | |||||
| 257 | 843856843873095681 | 2017-03-20 16:08:44 | Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e | 12 | 10 | Sadie | |||||
| 258 | 843604394117681152 | 2017-03-19 23:25:35 | This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC | 11 | 10 | Hank | |||||
| 259 | 843235543001513987 | 2017-03-18 22:59:54 | This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL | 13 | 10 | Tycho | |||||
| 261 | 842846295480000512 | 2017-03-17 21:13:10 | This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs | 13 | 10 | Charlie | |||||
| 262 | 842765311967449089 | 2017-03-17 15:51:22 | Meet Indie. She's not a fan of baths but she's definitely a fan of hide & seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l | 12 | 10 | Indie | |||||
| 263 | 842535590457499648 | 2017-03-17 00:38:32 | This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe | 13 | 10 | Winnie | |||||
| 264 | 842163532590374912 | 2017-03-16 00:00:07 | Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl | 12 | 10 | George | |||||
| 265 | 842115215311396866 | 2017-03-15 20:48:07 | This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy | 12 | 10 | Bentley | |||||
| 267 | 841680585030541313 | 2017-03-14 16:01:03 | This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj | 12 | 10 | Penny | |||||
| 268 | 841439858740625411 | 2017-03-14 00:04:30 | Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL | 14 | 10 | None | |||||
| 269 | 841320156043304961 | 2017-03-13 16:08:50 | We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K | 12 | 10 | None | |||||
| 270 | 841314665196081154 | 2017-03-13 15:47:01 | This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 | 13 | 10 | Max | |||||
| 271 | 841077006473256960 | 2017-03-13 00:02:39 | This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ | 12 | 10 | Dawn | |||||
| 274 | 840698636975636481 | 2017-03-11 22:59:09 | @0_kelvin_0 >10/10 is reserved for puppos sorry Kevin | 10 | 10 | None | |||||
| 275 | 840696689258311684 | 2017-03-11 22:51:24 | I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 | 10 | 10 | None | |||||
| 276 | 840632337062862849 | 2017-03-11 18:35:42 | Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o | 12 | 10 | Maddie | |||||
| 277 | 840370681858686976 | 2017-03-11 01:15:58 | You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG | 13 | 10 | None | |||||
| 278 | 840268004936019968 | 2017-03-10 18:27:58 | This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE | 12 | 10 | Monty | |||||
| 279 | 839990271299457024 | 2017-03-10 00:04:21 | Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr | 13 | 10 | Sojourner | |||||
| 280 | 839549326359670784 | 2017-03-08 18:52:12 | Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu | 12 | 10 | Winston | |||||
| 282 | 839239871831150596 | 2017-03-07 22:22:32 | This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm | 13 | 10 | Odie | |||||
| 283 | 838952994649550848 | 2017-03-07 03:22:35 | SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP | 13 | 10 | None | |||||
| 284 | 838921590096166913 | 2017-03-07 01:17:48 | This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv | 13 | 10 | Arlo | |||||
| 287 | 838561493054533637 | 2017-03-06 01:26:54 | This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI | 13 | 10 | Walter | |||||
| 288 | 838476387338051585 | 2017-03-05 19:48:43 | This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI | 13 | 10 | Stanley | |||||
| 290 | 838150277551247360 | 2017-03-04 22:12:52 | @markhoppus 182/10 | 11 | 10 | None | |||||
| 291 | 838085839343206401 | 2017-03-04 17:56:49 | @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 | 15 | 10 | None | |||||
| 292 | 838083903487373313 | 2017-03-04 17:49:08 | This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO | 13 | 10 | Daisy | |||||
| 293 | 837820167694528512 | 2017-03-04 00:21:08 | Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH | 12 | 10 | None | pupper | pupper | |||
| 294 | 837482249356513284 | 2017-03-03 01:58:22 | This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz | 13 | 10 | Waffles | |||||
| 295 | 837471256429613056 | 2017-03-03 01:14:41 | This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 | 12 | 10 | Vincent | |||||
| 296 | 837366284874571778 | 2017-03-02 18:17:34 | This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns | 13 | 10 | Lucy | |||||
| 297 | 837110210464448512 | 2017-03-02 01:20:01 | This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B | 13 | 10 | Clark | pupper | pupper | |||
| 299 | 836989968035819520 | 2017-03-01 17:22:13 | This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM | 12 | 10 | Mookie | |||||
| 300 | 836753516572119041 | 2017-03-01 01:42:39 | This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY | 12 | 10 | Meera | doggo | doggo | |||
| 301 | 836677758902222849 | 2017-02-28 20:41:37 | Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs | 11 | 10 | Oliver | |||||
| 304 | 836380477523124226 | 2017-02-28 01:00:19 | This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q | 12 | 10 | Ava | pupper | pupper | |||
| 305 | 836260088725786625 | 2017-02-27 17:01:56 | This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD | 13 | 10 | Lucy | |||||
| 306 | 836001077879255040 | 2017-02-26 23:52:43 | Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE | 13 | 10 | None | |||||
| 308 | 835574547218894849 | 2017-02-25 19:37:50 | This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q | 11 | 10 | Eli | |||||
| 311 | 835297930240217089 | 2017-02-25 01:18:40 | Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO | 12 | 10 | Ash | |||||
| 312 | 835264098648616962 | 2017-02-24 23:04:14 | Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU | 12 | 10 | Lola | |||||
| 313 | 835246439529840640 | 2017-02-24 21:54:03 | @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho | 11 | 10 | None | |||||
| 314 | 835172783151792128 | 2017-02-24 17:01:22 | We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL | 12 | 10 | None | |||||
| 315 | 835152434251116546 | 2017-02-24 15:40:31 | When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag | 0 | 10 | None | |||||
| 316 | 834931633769889797 | 2017-02-24 01:03:08 | This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK | 12 | 10 | Tucker | |||||
| 317 | 834786237630337024 | 2017-02-23 15:25:23 | This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE | 13 | 10 | Tobi | |||||
| 318 | 834574053763584002 | 2017-02-23 01:22:14 | Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg | 13 | 10 | None | doggo | doggo | |||
| 320 | 834458053273591808 | 2017-02-22 17:41:18 | Meet Chester (bottom) & Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe | 12 | 10 | Chester | |||||
| 321 | 834209720923721728 | 2017-02-22 01:14:30 | This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ | 12 | 10 | Wilson | |||||
| 322 | 834167344700198914 | 2017-02-21 22:26:07 | This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB | 11 | 10 | Sunshine | |||||
| 323 | 834089966724603904 | 2017-02-21 17:18:39 | DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 | 10 | 10 | None | doggo | doggo | |||
| 324 | 834086379323871233 | 2017-02-21 17:04:24 | This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG | 12 | 10 | Lipton | |||||
| 325 | 833863086058651648 | 2017-02-21 02:17:06 | This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ | 12 | 10 | Bentley | |||||
| 326 | 833826103416520705 | 2017-02-20 23:50:09 | Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY | 13 | 10 | Charlie | |||||
| 328 | 833722901757046785 | 2017-02-20 17:00:04 | This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET | 13 | 10 | Bronte | |||||
| 329 | 833479644947025920 | 2017-02-20 00:53:27 | This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu | 13 | 10 | Poppy | |||||
| 330 | 833124694597443584 | 2017-02-19 01:23:00 | This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa | 12 | 10 | Gidget | pupper | pupper | |||
| 331 | 832998151111966721 | 2017-02-18 17:00:10 | This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 | 13 | 10 | Rhino | doggo | doggo | |||
| 333 | 832757312314028032 | 2017-02-18 01:03:09 | This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ | 13 | 10 | Willow | |||||
| 334 | 832682457690300417 | 2017-02-17 20:05:43 | Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ | 13 | 10 | None | |||||
| 335 | 832645525019123713 | 2017-02-17 17:38:57 | There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 | 10 | 10 | NaN | |||||
| 336 | 832636094638288896 | 2017-02-17 17:01:29 | This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr | 12 | 10 | Orion | |||||
| 337 | 832397543355072512 | 2017-02-17 01:13:34 | This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt | 12 | 10 | Eevee | |||||
| 338 | 832369877331693569 | 2017-02-16 23:23:38 | This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d | 11 | 10 | Charlie | |||||
| 339 | 832273440279240704 | 2017-02-16 17:00:25 | Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz | 14 | 10 | Smiley | doggo | doggo | |||
| 342 | 832088576586297345 | 2017-02-16 04:45:50 | @docmisterio account started on 11/15/15 | 11 | 10 | None | |||||
| 344 | 832032802820481025 | 2017-02-16 01:04:13 | This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M | 12 | 10 | Miguel | doggo | doggo | |||
| 345 | 831939777352105988 | 2017-02-15 18:54:34 | This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT | 12 | 10 | Emanuel | doggo | doggo | |||
| 346 | 831926988323639298 | 2017-02-15 18:03:45 | @UNC can confirm 12/10 | 12 | 10 | None | |||||
| 347 | 831911600680497154 | 2017-02-15 17:02:36 | Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg | 14 | 10 | Kuyu | |||||
| 348 | 831670449226514432 | 2017-02-15 01:04:21 | This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg | 13 | 10 | Daisy | |||||
| 349 | 831650051525054464 | 2017-02-14 23:43:18 | I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO | 13 | 10 | None | |||||
| 350 | 831552930092285952 | 2017-02-14 17:17:22 | This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse | 13 | 10 | Dutch | |||||
| 351 | 831322785565769729 | 2017-02-14 02:02:51 | This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK | 12 | 10 | Pete | doggo | doggo | |||
| 352 | 831315979191906304 | 2017-02-14 01:35:49 | I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 | 13 | 10 | None | pupper | pupper | |||
| 353 | 831309418084069378 | 2017-02-14 01:09:44 | This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V | 12 | 10 | Scooter | |||||
| 354 | 831262627380748289 | 2017-02-13 22:03:49 | This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY | 12 | 10 | Tucker | |||||
| 355 | 830956169170665475 | 2017-02-13 01:46:03 | Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 | 12 | 10 | Reggie | |||||
| 356 | 830583320585068544 | 2017-02-12 01:04:29 | This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 | 13 | 10 | Lilly | |||||
| 358 | 830097400375152640 | 2017-02-10 16:53:37 | Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW | 13 | 10 | Samson | |||||
| 360 | 829861396166877184 | 2017-02-10 01:15:49 | This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU | 12 | 10 | Mia | |||||
| 361 | 829501995190984704 | 2017-02-09 01:27:41 | This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul | 12 | 10 | Leo | |||||
| 362 | 829449946868879360 | 2017-02-08 22:00:52 | Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB | 11 | 10 | None | doggo | doggo | |||
| 363 | 829374341691346946 | 2017-02-08 17:00:26 | This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao | 13 | 10 | Astrid | doggo | doggo | |||
| 364 | 829141528400556032 | 2017-02-08 01:35:19 | This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR | 12 | 10 | Malcolm | |||||
| 365 | 829011960981237760 | 2017-02-07 17:00:28 | This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is | 13 | 10 | Dexter | |||||
| 367 | 828770345708580865 | 2017-02-07 01:00:22 | This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz | 13 | 10 | Alfie | |||||
| 368 | 828708714936930305 | 2017-02-06 20:55:28 | This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 | 10 | 10 | Fiona | |||||
| 369 | 828650029636317184 | 2017-02-06 17:02:17 | Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK | 14 | 10 | NaN | |||||
| 370 | 828409743546925057 | 2017-02-06 01:07:28 | This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt | 12 | 10 | Mutt | |||||
| 371 | 828408677031882754 | 2017-02-06 01:03:14 | This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 | 12 | 10 | Bear | |||||
| 372 | 828381636999917570 | 2017-02-05 23:15:47 | Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 | 14 | 10 | Doobert | doggo | doggo | |||
| 373 | 828376505180889089 | 2017-02-05 22:55:23 | This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR | 13 | 10 | Beebop | |||||
| 374 | 828372645993398273 | 2017-02-05 22:40:03 | This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS | 12 | 10 | Alexander | |||||
| 375 | 828361771580813312 | 2017-02-05 21:56:51 | Beebop and Doobert should start a band 12/10 would listen | 12 | 10 | None | |||||
| 376 | 828046555563323392 | 2017-02-05 01:04:17 | This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 | 13 | 10 | Sailer | |||||
| 377 | 828011680017821696 | 2017-02-04 22:45:42 | Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB | 11 | 10 | Brutus | |||||
| 378 | 827933404142436356 | 2017-02-04 17:34:40 | This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ | 12 | 10 | Kona | pupper | pupper | |||
| 379 | 827653905312006145 | 2017-02-03 23:04:02 | This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 | 12 | 10 | Boots | |||||
| 380 | 827600520311402496 | 2017-02-03 19:31:54 | Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb | 13 | 10 | Tucker | |||||
| 381 | 827324948884643840 | 2017-02-03 01:16:53 | This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 | 12 | 10 | Ralphie | |||||
| 383 | 827199976799354881 | 2017-02-02 17:00:17 | This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ | 13 | 10 | Charlie | |||||
| 384 | 826958653328592898 | 2017-02-02 01:01:21 | This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR | 12 | 10 | Loki | doggo | doggo | |||
| 385 | 826848821049180160 | 2017-02-01 17:44:55 | This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh | 13 | 10 | Cupid | doggo | doggo | |||
| 387 | 826598799820865537 | 2017-02-01 01:11:25 | I was going to do 007/10, but the joke wasn't worth the <10 rating | 7 | 10 | None | |||||
| 388 | 826598365270007810 | 2017-02-01 01:09:42 | This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I | 13 | 10 | Pawnd | |||||
| 389 | 826476773533745153 | 2017-01-31 17:06:32 | This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh | 12 | 10 | Pilot | doggo | doggo | |||
| 390 | 826240494070030336 | 2017-01-31 01:27:39 | We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C | 11 | 10 | None | |||||
| 391 | 826204788643753985 | 2017-01-30 23:05:46 | Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX | 13 | 10 | None | doggo | doggo | |||
| 392 | 826115272272650244 | 2017-01-30 17:10:04 | This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm | 13 | 10 | Ike | |||||
| 393 | 825876512159186944 | 2017-01-30 01:21:19 | This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 | 11 | 10 | Mo | |||||
| 394 | 825829644528148480 | 2017-01-29 22:15:05 | This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM | 12 | 10 | Toby | |||||
| 395 | 825535076884762624 | 2017-01-29 02:44:34 | Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 | 14 | 10 | None | puppo | puppo | |||
| 396 | 825147591692263424 | 2017-01-28 01:04:51 | This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD | 13 | 10 | Sweet | |||||
| 398 | 825026590719483904 | 2017-01-27 17:04:02 | Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc | 12 | 10 | Pablo | puppo | puppo | |||
| 400 | 824775126675836928 | 2017-01-27 00:24:48 | This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI | 12 | 10 | Scooter | |||||
| 401 | 824663926340194305 | 2017-01-26 17:02:56 | This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM | 13 | 10 | Wilson | |||||
| 402 | 824325613288833024 | 2017-01-25 18:38:36 | Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS | 13 | 10 | None | pupper | pupper | |||
| 403 | 824297048279236611 | 2017-01-25 16:45:05 | This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt | 11 | 10 | Nala | |||||
| 404 | 824025158776213504 | 2017-01-24 22:44:42 | "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW | 14 | 10 | None | |||||
| 405 | 823939628516474880 | 2017-01-24 17:04:50 | This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw | 12 | 10 | Cash | |||||
| 407 | 823699002998870016 | 2017-01-24 01:08:40 | This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL | 12 | 10 | Winston | |||||
| 408 | 823581115634085888 | 2017-01-23 17:20:14 | This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U | 11 | 10 | Crawford | |||||
| 409 | 823333489516937216 | 2017-01-23 00:56:15 | @HistoryInPics 13/10 | 13 | 10 | None | |||||
| 410 | 823322678127919110 | 2017-01-23 00:13:17 | This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 | 11 | 10 | Wyatt | |||||
| 412 | 822975315408461824 | 2017-01-22 01:12:59 | This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG | 12 | 10 | Albus | |||||
| 413 | 822872901745569793 | 2017-01-21 18:26:02 | Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc | 13 | 10 | None | puppo | puppo | |||
| 414 | 822859134160621569 | 2017-01-21 17:31:20 | This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS | 12 | 10 | Hobbes | |||||
| 416 | 822610361945911296 | 2017-01-21 01:02:48 | Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh | 12 | 10 | None | |||||
| 417 | 822489057087389700 | 2017-01-20 17:00:46 | This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E | 13 | 10 | Paisley | |||||
| 418 | 822462944365645825 | 2017-01-20 15:17:01 | This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO | 14 | 10 | Gabe | pupper | pupper | |||
| 419 | 822244816520155136 | 2017-01-20 00:50:15 | We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 | 11 | 10 | None | |||||
| 421 | 821886076407029760 | 2017-01-19 01:04:45 | This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV | 13 | 10 | Jimison | |||||
| 423 | 821765923262631936 | 2017-01-18 17:07:18 | This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 | 13 | 10 | Duchess | doggo | doggo | |||
| 424 | 821522889702862852 | 2017-01-18 01:01:34 | This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn | 13 | 10 | Harlso | |||||
| 426 | 821407182352777218 | 2017-01-17 17:21:47 | This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG | 14 | 10 | Sundance | doggo | doggo | |||
| 427 | 821153421864615936 | 2017-01-17 00:33:26 | @imgur for a polar bear tho I'd say 13/10 is appropriate | 13 | 10 | None | |||||
| 428 | 821149554670182400 | 2017-01-17 00:18:04 | This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 | 12 | 10 | Luca | |||||
| 429 | 821107785811234820 | 2017-01-16 21:32:06 | Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl | 11 | 10 | None | doggo | doggo | |||
| 430 | 821044531881721856 | 2017-01-16 17:20:45 | This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu | 12 | 10 | Flash | |||||
| 432 | 820749716845686786 | 2017-01-15 21:49:15 | Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 | 13 | 10 | Sunny | |||||
| 433 | 820690176645140481 | 2017-01-15 17:52:40 | The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd | 12 | 10 | None | |||||
| 436 | 820314633777061888 | 2017-01-14 17:00:24 | We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE | 14 | 10 | None | |||||
| 437 | 820078625395449857 | 2017-01-14 01:22:35 | I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD | 12 | 10 | None | |||||
| 439 | 819952236453363712 | 2017-01-13 17:00:21 | This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb | 13 | 10 | Oliver | puppo | puppo | |||
| 440 | 819924195358416896 | 2017-01-13 15:08:56 | Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E | 11 | 10 | None | doggo | doggo | |||
| 441 | 819711362133872643 | 2017-01-13 01:03:12 | This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU | 11 | 10 | Howie | |||||
| 442 | 819588359383371776 | 2017-01-12 16:54:26 | This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO | 13 | 10 | Jazzy | |||||
| 443 | 819347104292290561 | 2017-01-12 00:55:47 | Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W | 12 | 10 | Anna | |||||
| 444 | 819238181065359361 | 2017-01-11 17:42:57 | Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv | 10 | 10 | None | pupper | pupper | |||
| 445 | 819227688460238848 | 2017-01-11 17:01:16 | This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT | 12 | 10 | Finn | |||||
| 448 | 819006400881917954 | 2017-01-11 02:21:57 | This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb | 14 | 10 | Sunny | doggo | doggo | |||
| 449 | 819004803107983360 | 2017-01-11 02:15:36 | This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 | 14 | 10 | Bo | doggo | doggo | |||
| 451 | 818627210458333184 | 2017-01-10 01:15:10 | Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG | 13 | 10 | Wafer | |||||
| 452 | 818614493328580609 | 2017-01-10 00:24:38 | This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 | 12 | 10 | Bear | |||||
| 454 | 818536468981415936 | 2017-01-09 19:14:36 | This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU | 11 | 10 | Tom | |||||
| 456 | 818259473185828864 | 2017-01-09 00:53:55 | This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib | 12 | 10 | Florence | |||||
| 457 | 818145370475810820 | 2017-01-08 17:20:31 | This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z | 11 | 10 | Autumn | |||||
| 458 | 817908911860748288 | 2017-01-08 01:40:55 | Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 | 12 | 10 | None | |||||
| 459 | 817827839487737858 | 2017-01-07 20:18:46 | This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA | 13 | 10 | Buddy | |||||
| 460 | 817777686764523521 | 2017-01-07 16:59:28 | This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 | 13 | 10 | Dido | doggo | pupper | doggo, pupper | ||
| 461 | 817536400337801217 | 2017-01-07 01:00:41 | Say hello to Eugene & Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu | 12 | 10 | Eugene | |||||
| 463 | 817423860136083457 | 2017-01-06 17:33:29 | This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ | 13 | 10 | Ken | |||||
| 464 | 817415592588222464 | 2017-01-06 17:00:38 | Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 | 11 | 10 | Strudel | |||||
| 466 | 817171292965273600 | 2017-01-06 00:49:53 | This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw | 13 | 10 | Tebow | |||||
| 467 | 817120970343411712 | 2017-01-05 21:29:55 | Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T | 13 | 10 | None | |||||
| 468 | 817056546584727552 | 2017-01-05 17:13:55 | This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH | 11 | 10 | Chloe | |||||
| 470 | 816816676327063552 | 2017-01-05 01:20:46 | This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 | 12 | 10 | Timber | |||||
| 471 | 816697700272001025 | 2017-01-04 17:27:59 | This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF | 12 | 10 | Binky | |||||
| 472 | 816450570814898180 | 2017-01-04 01:05:59 | Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k | 13 | 10 | Moose | |||||
| 473 | 816336735214911488 | 2017-01-03 17:33:39 | This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY | 11 | 10 | Dudley | |||||
| 474 | 816091915477250048 | 2017-01-03 01:20:49 | This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi | 12 | 10 | Comet | |||||
| 477 | 815990720817401858 | 2017-01-02 18:38:42 | Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p | 11 | 10 | Jack | |||||
| 478 | 815966073409433600 | 2017-01-02 17:00:46 | Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k | 13 | 10 | None | pupper | pupper | |||
| 480 | 815736392542261248 | 2017-01-02 01:48:06 | This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 | 11 | 10 | Akumi | |||||
| 481 | 815639385530101762 | 2017-01-01 19:22:38 | This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy | 12 | 10 | Titan | |||||
| 482 | 815390420867969024 | 2017-01-01 02:53:20 | Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L | 13 | 10 | None | |||||
| 483 | 814986499976527872 | 2016-12-31 00:08:17 | This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 | 11 | 10 | Cooper | pupper | pupper | |||
| 484 | 814638523311648768 | 2016-12-30 01:05:33 | This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv | 12 | 10 | Olivia | |||||
| 486 | 814530161257443328 | 2016-12-29 17:54:58 | This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G | 12 | 10 | Alf | |||||
| 487 | 814153002265309185 | 2016-12-28 16:56:16 | This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J | 12 | 10 | Oshie | |||||
| 489 | 813910438903693312 | 2016-12-28 00:52:25 | This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf | 11 | 10 | Chubbs | doggo | doggo | |||
| 490 | 813812741911748608 | 2016-12-27 18:24:12 | Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg | 14 | 10 | Gary | |||||
| 491 | 813800681631023104 | 2016-12-27 17:36:16 | This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 | 12 | 10 | Sky | |||||
| 492 | 813217897535406080 | 2016-12-26 03:00:30 | Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 | 13 | 10 | Atlas | |||||
| 493 | 813202720496779264 | 2016-12-26 02:00:11 | Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn | 11 | 10 | None | doggo | doggo | |||
| 494 | 813187593374461952 | 2016-12-26 01:00:05 | We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ | 13 | 10 | None | |||||
| 495 | 813172488309972993 | 2016-12-26 00:00:03 | This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE | 12 | 10 | Eleanor | |||||
| 496 | 813157409116065792 | 2016-12-25 23:00:08 | This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV | 12 | 10 | Layla | |||||
| 497 | 813142292504645637 | 2016-12-25 22:00:04 | Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi | 13 | 10 | None | |||||
| 498 | 813130366689148928 | 2016-12-25 21:12:41 | I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 | 12 | 10 | None | |||||
| 499 | 813127251579564032 | 2016-12-25 21:00:18 | Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA | 11 | 10 | None | doggo | doggo | |||
| 500 | 813112105746448384 | 2016-12-25 20:00:07 | Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq | 12 | 10 | Toby | |||||
| 501 | 813096984823349248 | 2016-12-25 19:00:02 | This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu | 11 | 10 | Rocky | doggo | doggo | |||
| 502 | 813081950185472002 | 2016-12-25 18:00:17 | This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg | 11 | 10 | Baron | |||||
| 503 | 813066809284972545 | 2016-12-25 17:00:08 | This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN | 12 | 10 | Tyr | |||||
| 504 | 813051746834595840 | 2016-12-25 16:00:16 | This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl | 13 | 10 | Bauer | |||||
| 505 | 812781120811126785 | 2016-12-24 22:04:54 | This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG | 10 | 10 | Swagger | |||||
| 507 | 812709060537683968 | 2016-12-24 17:18:34 | This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp | 12 | 10 | Brandi | |||||
| 508 | 812503143955202048 | 2016-12-24 03:40:19 | I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 | 13 | 10 | None | |||||
| 509 | 812466873996607488 | 2016-12-24 01:16:12 | This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux | 12 | 10 | Mary | |||||
| 510 | 812372279581671427 | 2016-12-23 19:00:19 | This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT | 13 | 10 | Moe | |||||
| 511 | 811985624773361665 | 2016-12-22 17:23:53 | Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop | 11 | 10 | Ted | |||||
| 512 | 811744202451197953 | 2016-12-22 01:24:33 | This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 | 13 | 10 | Halo | |||||
| 513 | 811647686436880384 | 2016-12-21 19:01:02 | PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 | 11 | 10 | None | |||||
| 514 | 811627233043480576 | 2016-12-21 17:39:46 | This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn | 10 | 10 | Augie | |||||
| 515 | 811386762094317568 | 2016-12-21 01:44:13 | This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy | 11 | 10 | Craig | pupper | pupper | |||
| 516 | 810984652412424192 | 2016-12-19 23:06:23 | Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx | 10 | 10 | Sam | |||||
| 517 | 810896069567610880 | 2016-12-19 17:14:23 | This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV | 11 | 10 | Hunter | |||||
| 518 | 810657578271330305 | 2016-12-19 01:26:42 | This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ | 11 | 10 | Pavlov | |||||
| 519 | 810284430598270976 | 2016-12-18 00:43:57 | This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu | 13 | 10 | Phil | |||||
| 520 | 810254108431155201 | 2016-12-17 22:43:27 | This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb | 12 | 10 | Gus | |||||
| 521 | 809920764300447744 | 2016-12-17 00:38:52 | Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo | 10 | 10 | None | |||||
| 523 | 809448704142938112 | 2016-12-15 17:23:04 | I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo | 12 | 10 | None | |||||
| 524 | 809220051211603969 | 2016-12-15 02:14:29 | This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p | 12 | 10 | Kyro | |||||
| 525 | 809084759137812480 | 2016-12-14 17:16:53 | This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h | 11 | 10 | Wallace | |||||
| 526 | 808838249661788160 | 2016-12-14 00:57:20 | This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 | 13 | 10 | Ito | |||||
| 527 | 808733504066486276 | 2016-12-13 18:01:07 | Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD | 12 | 10 | None | pupper | pupper | |||
| 528 | 808501579447930884 | 2016-12-13 02:39:32 | This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px | 12 | 10 | Koda | |||||
| 529 | 808344865868283904 | 2016-12-12 16:16:49 | This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM | 11 | 10 | Seamus | |||||
| 531 | 808106460588765185 | 2016-12-12 00:29:28 | Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho | 12 | 10 | None | doggo | pupper | doggo, pupper | ||
| 532 | 808001312164028416 | 2016-12-11 17:31:39 | This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl | 12 | 10 | Cooper | |||||
| 533 | 807621403335917568 | 2016-12-10 16:22:02 | This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 | 14 | 10 | Ollie | pupper | pupper | |||
| 534 | 807106840509214720 | 2016-12-09 06:17:20 | This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d | 13 | 10 | Stephan | |||||
| 536 | 807010152071229440 | 2016-12-08 23:53:08 | This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX | 12 | 10 | Lennon | |||||
| 537 | 806629075125202948 | 2016-12-07 22:38:52 | "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 | 13 | 10 | None | |||||
| 539 | 806576416489959424 | 2016-12-07 19:09:37 | Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G | 13 | 10 | None | |||||
| 540 | 806542213899489280 | 2016-12-07 16:53:43 | This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h | 11 | 10 | Waffles | |||||
| 542 | 806219024703037440 | 2016-12-06 19:29:28 | We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi | 11 | 10 | NaN | |||||
| 544 | 805932879469572096 | 2016-12-06 00:32:26 | This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 | 12 | 10 | Major | |||||
| 545 | 805826884734976000 | 2016-12-05 17:31:15 | This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 | 12 | 10 | Duke | |||||
| 547 | 805520635690676224 | 2016-12-04 21:14:20 | This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ | 13 | 10 | Zeke | |||||
| 548 | 805487436403003392 | 2016-12-04 19:02:24 | Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl | 12 | 10 | Sansa | |||||
| 549 | 805207613751304193 | 2016-12-04 00:30:29 | This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 | 12 | 10 | Shooter | |||||
| 550 | 804738756058218496 | 2016-12-02 17:27:25 | This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ | 12 | 10 | Django | |||||
| 551 | 804475857670639616 | 2016-12-02 00:02:45 | HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd | 13 | 10 | None | |||||
| 553 | 804026241225523202 | 2016-11-30 18:16:08 | This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq | 13 | 10 | Bo | |||||
| 554 | 803773340896923648 | 2016-11-30 01:31:12 | This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt | 12 | 10 | Diogi | puppo | puppo | |||
| 556 | 803638050916102144 | 2016-11-29 16:33:36 | Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX | 13 | 10 | None | pupper | pupper | |||
| 557 | 803380650405482500 | 2016-11-28 23:30:47 | Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n | 12 | 10 | Sonny | |||||
| 559 | 803276597545603072 | 2016-11-28 16:37:19 | This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL | 11 | 10 | Winston | |||||
| 560 | 802952499103731712 | 2016-11-27 19:09:28 | This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh | 12 | 10 | Marley | |||||
| 562 | 802600418706604034 | 2016-11-26 19:50:26 | This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O | 11 | 10 | Bailey | |||||
| 563 | 802572683846291456 | 2016-11-26 18:00:13 | This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv | 12 | 10 | Winnie | |||||
| 564 | 802323869084381190 | 2016-11-26 01:31:31 | This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ | 13 | 10 | Severus | |||||
| 565 | 802265048156610565 | 2016-11-25 21:37:47 | Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze | 11 | 10 | None | doggo | pupper | doggo, pupper | ||
| 567 | 802239329049477120 | 2016-11-25 19:55:35 | This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 | 12 | 10 | Loki | puppo | puppo | |||
| 569 | 801958328846974976 | 2016-11-25 01:18:59 | This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 | 12 | 10 | Ronnie | |||||
| 570 | 801854953262350336 | 2016-11-24 18:28:13 | .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC | 11 | 10 | None | |||||
| 571 | 801538201127157760 | 2016-11-23 21:29:33 | This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe | 12 | 10 | Wallace | |||||
| 572 | 801285448605831168 | 2016-11-23 04:45:12 | oh h*ck 10/10 https://t.co/bC69RrW559 | 10 | 10 | None | |||||
| 573 | 801167903437357056 | 2016-11-22 20:58:07 | This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey | 13 | 10 | Milo | |||||
| 575 | 801115127852503040 | 2016-11-22 17:28:25 | This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj | 12 | 10 | Bones | doggo | pupper | doggo, pupper | ||
| 576 | 800859414831898624 | 2016-11-22 00:32:18 | @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets | 11 | 10 | None | doggo | doggo | |||
| 578 | 800751577355128832 | 2016-11-21 17:23:47 | Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG | 12 | 10 | Mauve | |||||
| 579 | 800513324630806528 | 2016-11-21 01:37:04 | This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm | 11 | 10 | Chef | |||||
| 580 | 800459316964663297 | 2016-11-20 22:02:27 | Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca | 12 | 10 | None | pupper | pupper | |||
| 582 | 800388270626521089 | 2016-11-20 17:20:08 | This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 | 12 | 10 | Doc | floofer | floofer | |||
| 584 | 800141422401830912 | 2016-11-20 00:59:15 | This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg | 13 | 10 | Peaches | |||||
| 585 | 800018252395122689 | 2016-11-19 16:49:49 | Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I | 11 | 10 | None | doggo | doggo | |||
| 587 | 799757965289017345 | 2016-11-18 23:35:32 | This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 | 13 | 10 | Sobe | doggo | doggo | |||
| 588 | 799422933579902976 | 2016-11-18 01:24:14 | This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ | 12 | 10 | Longfellow | |||||
| 590 | 799297110730567681 | 2016-11-17 17:04:16 | This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf | 11 | 10 | Jeffrey | |||||
| 591 | 799063482566066176 | 2016-11-17 01:35:54 | This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm | 11 | 10 | Mister | |||||
| 592 | 798933969379225600 | 2016-11-16 17:01:16 | This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL | 12 | 10 | Iroh | |||||
| 593 | 798925684722855936 | 2016-11-16 16:28:21 | This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu | 11 | 10 | Shadow | |||||
| 607 | 798209839306514432 | 2016-11-14 17:03:50 | This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 | 13 | 10 | Cooper | |||||
| 608 | 797971864723324932 | 2016-11-14 01:18:12 | Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z | 12 | 10 | None | pupper | pupper | |||
| 609 | 797545162159308800 | 2016-11-12 21:02:38 | This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB | 12 | 10 | Cassie | |||||
| 610 | 797236660651966464 | 2016-11-12 00:36:46 | This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi | 12 | 10 | Pancake | |||||
| 611 | 797165961484890113 | 2016-11-11 19:55:50 | @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 | 11 | 10 | None | |||||
| 613 | 796865951799083009 | 2016-11-11 00:03:42 | This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 | 12 | 10 | Tyr | |||||
| 614 | 796759840936919040 | 2016-11-10 17:02:03 | Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI | 11 | 10 | Romeo | |||||
| 616 | 796484825502875648 | 2016-11-09 22:49:15 | Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV | 12 | 10 | None | doggo | doggo | |||
| 617 | 796387464403357696 | 2016-11-09 16:22:22 | This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 | 12 | 10 | Snicku | |||||
| 619 | 796149749086875649 | 2016-11-09 00:37:46 | This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt | 11 | 10 | Ruby | |||||
| 620 | 796125600683540480 | 2016-11-08 23:01:49 | #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 | 13 | 10 | None | |||||
| 621 | 796116448414461957 | 2016-11-08 22:25:27 | I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN | 11 | 10 | None | |||||
| 622 | 796080075804475393 | 2016-11-08 20:00:55 | This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm | 12 | 10 | Yogi | |||||
| 623 | 796031486298386433 | 2016-11-08 16:47:50 | This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL | 13 | 10 | Daisy | |||||
| 624 | 795464331001561088 | 2016-11-07 03:14:10 | Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz | 13 | 10 | None | doggo | doggo | |||
| 625 | 795400264262053889 | 2016-11-06 22:59:35 | This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ | 12 | 10 | Brody | |||||
| 626 | 795076730285391872 | 2016-11-06 01:33:58 | This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E | 11 | 10 | Bailey | |||||
| 628 | 794926597468000259 | 2016-11-05 15:37:24 | This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH | 12 | 10 | Mack | |||||
| 630 | 794332329137291264 | 2016-11-04 00:15:59 | This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU | 12 | 10 | Nimbus | |||||
| 631 | 794205286408003585 | 2016-11-03 15:51:10 | This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g | 14 | 10 | Laika | pupper | pupper | |||
| 632 | 793962221541933056 | 2016-11-02 23:45:19 | This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR | 12 | 10 | Maximus | |||||
| 633 | 793845145112371200 | 2016-11-02 16:00:06 | This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 | 13 | 10 | Clark | |||||
| 635 | 793601777308463104 | 2016-11-01 23:53:02 | This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv | 12 | 10 | Dobby | |||||
| 636 | 793500921481273345 | 2016-11-01 17:12:16 | This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN | 12 | 10 | Fiona | |||||
| 637 | 793286476301799424 | 2016-11-01 03:00:09 | This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 | 13 | 10 | Moreton | |||||
| 638 | 793271401113350145 | 2016-11-01 02:00:14 | Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN | 12 | 10 | Dave | |||||
| 639 | 793256262322548741 | 2016-11-01 01:00:05 | Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 | 12 | 10 | None | |||||
| 640 | 793241302385262592 | 2016-11-01 00:00:38 | This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt | 13 | 10 | Tucker | |||||
| 641 | 793226087023144960 | 2016-10-31 23:00:11 | This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj | 11 | 10 | Juno | |||||
| 642 | 793210959003287553 | 2016-10-31 22:00:04 | This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 | 10 | 10 | Maude | |||||
| 643 | 793195938047070209 | 2016-10-31 21:00:23 | Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY | 12 | 10 | Lily | puppo | puppo | |||
| 644 | 793180763617361921 | 2016-10-31 20:00:05 | This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q | 11 | 10 | Newt | |||||
| 645 | 793165685325201412 | 2016-10-31 19:00:10 | This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo | 12 | 10 | Benji | |||||
| 646 | 793150605191548928 | 2016-10-31 18:00:14 | This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf | 11 | 10 | Nida | |||||
| 647 | 793135492858580992 | 2016-10-31 17:00:11 | Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT | 13 | 10 | None | |||||
| 648 | 793120401413079041 | 2016-10-31 16:00:13 | This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb | 11 | 10 | Robin | |||||
| 649 | 792913359805018113 | 2016-10-31 02:17:31 | Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq | 13 | 10 | NaN | |||||
| 650 | 792883833364439040 | 2016-10-31 00:20:11 | This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz | 12 | 10 | Bailey | |||||
| 651 | 792773781206999040 | 2016-10-30 17:02:53 | This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL | 12 | 10 | Monster | |||||
| 652 | 792394556390137856 | 2016-10-29 15:55:58 | Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 | 12 | 10 | BeBe | |||||
| 653 | 792050063153438720 | 2016-10-28 17:07:05 | This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu | 11 | 10 | Remus | |||||
| 657 | 791774931465953280 | 2016-10-27 22:53:48 | Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 | 14 | 10 | None | |||||
| 658 | 791672322847637504 | 2016-10-27 16:06:04 | When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh | 13 | 10 | None | |||||
| 659 | 791406955684368384 | 2016-10-26 22:31:36 | Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc | 12 | 10 | Levi | |||||
| 660 | 791312159183634433 | 2016-10-26 16:14:55 | This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK | 12 | 10 | Mabel | |||||
| 662 | 790987426131050500 | 2016-10-25 18:44:32 | This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr | 12 | 10 | Misty | |||||
| 663 | 790946055508652032 | 2016-10-25 16:00:09 | This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI | 12 | 10 | Betty | puppo | puppo | |||
| 665 | 790698755171364864 | 2016-10-24 23:37:28 | This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 | 12 | 10 | Mosby | |||||
| 666 | 790581949425475584 | 2016-10-24 15:53:19 | This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 | 11 | 10 | Duke | |||||
| 667 | 790337589677002753 | 2016-10-23 23:42:19 | Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV | 12 | 10 | Maggie | |||||
| 668 | 790277117346975746 | 2016-10-23 19:42:02 | This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 | 11 | 10 | Bruce | |||||
| 670 | 789986466051088384 | 2016-10-23 00:27:05 | This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v | 12 | 10 | Happy | |||||
| 672 | 789903600034189313 | 2016-10-22 18:57:48 | This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H | 13 | 10 | Ralphy | pupper | pupper | |||
| 673 | 789628658055020548 | 2016-10-22 00:45:17 | This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI | 13 | 10 | Eli | |||||
| 674 | 789599242079838210 | 2016-10-21 22:48:24 | This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx | 12 | 10 | Brownie | |||||
| 675 | 789530877013393408 | 2016-10-21 18:16:44 | This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq | 12 | 10 | Rizzy | |||||
| 676 | 789314372632018944 | 2016-10-21 03:56:25 | HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM | 13 | 10 | None | |||||
| 678 | 789268448748703744 | 2016-10-21 00:53:56 | This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS | 10 | 10 | Stella | |||||
| 679 | 789137962068021249 | 2016-10-20 16:15:26 | This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN | 12 | 10 | Bo | |||||
| 680 | 788908386943430656 | 2016-10-20 01:03:11 | This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm | 11 | 10 | Lucy | |||||
| 681 | 788765914992902144 | 2016-10-19 15:37:03 | This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq | 12 | 10 | Butter | |||||
| 683 | 788412144018661376 | 2016-10-18 16:11:17 | This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S | 11 | 10 | Dexter | |||||
| 684 | 788178268662984705 | 2016-10-18 00:41:57 | Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc | 13 | 10 | None | |||||
| 685 | 788150585577050112 | 2016-10-17 22:51:57 | This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc | 13 | 10 | Leo | |||||
| 687 | 788039637453406209 | 2016-10-17 15:31:05 | Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ | 12 | 10 | None | |||||
| 688 | 787810552592695296 | 2016-10-17 00:20:47 | This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc | 11 | 10 | Frank | |||||
| 689 | 787717603741622272 | 2016-10-16 18:11:26 | This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp | 13 | 10 | Tonks | puppo | puppo | |||
| 690 | 787397959788929025 | 2016-10-15 21:01:17 | This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 | 11 | 10 | Moose | |||||
| 691 | 787322443945877504 | 2016-10-15 16:01:13 | This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp | 10 | 10 | Lincoln | |||||
| 693 | 786963064373534720 | 2016-10-14 16:13:10 | This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj | 12 | 10 | Rory | |||||
| 695 | 786709082849828864 | 2016-10-13 23:23:56 | This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS | 11 | 10 | Logan | |||||
| 696 | 786664955043049472 | 2016-10-13 20:28:35 | "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r | 12 | 10 | None | |||||
| 697 | 786595970293370880 | 2016-10-13 15:54:28 | This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX | 11 | 10 | Dale | |||||
| 698 | 786363235746385920 | 2016-10-13 00:29:39 | This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn | 13 | 10 | Rizzo | doggo | doggo | |||
| 699 | 786286427768250368 | 2016-10-12 19:24:27 | This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit | 12 | 10 | Arnie | |||||
| 700 | 786233965241827333 | 2016-10-12 15:55:59 | This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh | 11 | 10 | Mattie | |||||
| 701 | 786051337297522688 | 2016-10-12 03:50:17 | 13/10 for breakdancing puppo @shibbnbot | 13 | 10 | None | puppo | puppo | |||
| 703 | 785927819176054784 | 2016-10-11 19:39:28 | This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y | 12 | 10 | Lucy | |||||
| 704 | 785872687017132033 | 2016-10-11 16:00:24 | Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV | 12 | 10 | Rusty | |||||
| 705 | 785639753186217984 | 2016-10-11 00:34:48 | This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd | 10 | 10 | Pinot | doggo | pupper | doggo, pupper | ||
| 706 | 785533386513321988 | 2016-10-10 17:32:08 | This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG | 11 | 10 | Dallas | |||||
| 707 | 785515384317313025 | 2016-10-10 16:20:36 | Today, 10/10, should be National Dog Rates Day | 10 | 10 | None | |||||
| 708 | 785264754247995392 | 2016-10-09 23:44:41 | This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx | 12 | 10 | Doc | |||||
| 709 | 785170936622350336 | 2016-10-09 17:31:53 | This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ | 11 | 10 | Hero | |||||
| 710 | 784826020293709826 | 2016-10-08 18:41:19 | This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ | 13 | 10 | Rusty | |||||
| 711 | 784517518371221505 | 2016-10-07 22:15:26 | This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 | 11 | 10 | Frankie | |||||
| 712 | 784431430411685888 | 2016-10-07 16:33:21 | This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt | 12 | 10 | Stormy | |||||
| 713 | 784183165795655680 | 2016-10-07 00:06:50 | This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ | 12 | 10 | Reginald | puppo | puppo | |||
| 714 | 784057939640352768 | 2016-10-06 15:49:14 | This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC | 12 | 10 | Balto | |||||
| 715 | 783839966405230592 | 2016-10-06 01:23:05 | This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 | 13 | 10 | Riley | |||||
| 716 | 783821107061198850 | 2016-10-06 00:08:09 | This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp | 12 | 10 | Mairi | |||||
| 717 | 783695101801398276 | 2016-10-05 15:47:27 | This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY | 12 | 10 | Loomis | |||||
| 718 | 783466772167098368 | 2016-10-05 00:40:09 | This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ | 11 | 10 | Finn | |||||
| 719 | 783391753726550016 | 2016-10-04 19:42:03 | Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi | 13 | 10 | Godi | |||||
| 721 | 783334639985389568 | 2016-10-04 15:55:06 | This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu | 12 | 10 | Dave | |||||
| 722 | 783085703974514689 | 2016-10-03 23:25:55 | This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM | 11 | 10 | Earl | |||||
| 723 | 782969140009107456 | 2016-10-03 15:42:44 | This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX | 12 | 10 | Cali | |||||
| 724 | 782747134529531904 | 2016-10-03 01:00:34 | This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H | 11 | 10 | Deacon | doggo | doggo | |||
| 725 | 782722598790725632 | 2016-10-02 23:23:04 | This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 | 10 | 10 | Penny | |||||
| 726 | 782598640137187329 | 2016-10-02 15:10:30 | This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn | 11 | 10 | Timmy | |||||
| 727 | 782305867769217024 | 2016-10-01 19:47:08 | This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 | 12 | 10 | Sampson | doggo | doggo | |||
| 729 | 781955203444699136 | 2016-09-30 20:33:43 | This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV | 11 | 10 | Chipson | |||||
| 730 | 781661882474196992 | 2016-09-30 01:08:10 | Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC | 5 | 10 | None | |||||
| 731 | 781655249211752448 | 2016-09-30 00:41:48 | This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 | 11 | 10 | Combo | doggo | doggo | |||
| 732 | 781524693396357120 | 2016-09-29 16:03:01 | Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf | 12 | 10 | None | |||||
| 733 | 781308096455073793 | 2016-09-29 01:42:20 | Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u | 12 | 10 | None | doggo | pupper | doggo, pupper | ||
| 734 | 781251288990355457 | 2016-09-28 21:56:36 | This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 | 11 | 10 | Oakley | |||||
| 735 | 781163403222056960 | 2016-09-28 16:07:23 | We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy | 10 | 10 | None | |||||
| 736 | 780931614150983680 | 2016-09-28 00:46:20 | I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d | 13 | 10 | None | puppo | puppo | |||
| 737 | 780858289093574656 | 2016-09-27 19:54:58 | This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 | 10 | 10 | Dash | |||||
| 738 | 780800785462489090 | 2016-09-27 16:06:28 | This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw | 11 | 10 | Koda | |||||
| 739 | 780601303617732608 | 2016-09-27 02:53:48 | Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG | 12 | 10 | Hercules | |||||
| 740 | 780543529827336192 | 2016-09-26 23:04:13 | Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q | 12 | 10 | None | |||||
| 743 | 780459368902959104 | 2016-09-26 17:29:48 | This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm | 11 | 10 | Bear | |||||
| 744 | 780192070812196864 | 2016-09-25 23:47:39 | We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni | 11 | 10 | None | |||||
| 746 | 780074436359819264 | 2016-09-25 16:00:13 | Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb | 10 | 10 | None | doggo | doggo | |||
| 747 | 779834332596887552 | 2016-09-25 00:06:08 | This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD | 11 | 10 | Scout | |||||
| 748 | 779377524342161408 | 2016-09-23 17:50:56 | Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 | 12 | 10 | None | pupper | pupper | |||
| 750 | 779123168116150273 | 2016-09-23 01:00:13 | This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate | 12 | 10 | Reggie | |||||
| 751 | 779056095788752897 | 2016-09-22 20:33:42 | Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 | 13 | 10 | None | |||||
| 752 | 778990705243029504 | 2016-09-22 16:13:51 | This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI | 11 | 10 | Jay | |||||
| 754 | 778764940568104960 | 2016-09-22 01:16:45 | Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB | 13 | 10 | None | |||||
| 755 | 778748913645780993 | 2016-09-22 00:13:04 | This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 | 11 | 10 | Mya | |||||
| 756 | 778650543019483137 | 2016-09-21 17:42:10 | Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l | 10 | 10 | Strider | |||||
| 757 | 778624900596654080 | 2016-09-21 16:00:17 | This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 | 11 | 10 | Penny | |||||
| 758 | 778408200802557953 | 2016-09-21 01:39:11 | RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A | 14 | 10 | None | |||||
| 760 | 778383385161035776 | 2016-09-21 00:00:35 | This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv | 13 | 10 | Nala | |||||
| 761 | 778286810187399168 | 2016-09-20 17:36:50 | This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb | 11 | 10 | Stanley | |||||
| 762 | 778039087836069888 | 2016-09-20 01:12:28 | Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD | 12 | 10 | None | pupper | pupper | |||
| 763 | 778027034220126208 | 2016-09-20 00:24:34 | This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq | 11 | 10 | Sophie | pupper | pupper | |||
| 765 | 777885040357281792 | 2016-09-19 15:00:20 | This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M | 3 | 10 | Wesley | |||||
| 766 | 777684233540206592 | 2016-09-19 01:42:24 | "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ | 12 | 10 | None | |||||
| 768 | 777621514455814149 | 2016-09-18 21:33:11 | This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 | 12 | 10 | Derek | |||||
| 769 | 777189768882946048 | 2016-09-17 16:57:35 | This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 | 12 | 10 | Jeffrey | |||||
| 771 | 776813020089548800 | 2016-09-16 16:00:31 | Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA | 12 | 10 | Solomon | |||||
| 772 | 776477788987613185 | 2016-09-15 17:48:25 | This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW | 11 | 10 | Huck | pupper | pupper | |||
| 774 | 776218204058357768 | 2016-09-15 00:36:55 | Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 | 13 | 10 | None | floofer | floofer | |||
| 775 | 776201521193218049 | 2016-09-14 23:30:38 | This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC | 10 | 10 | O | |||||
| 776 | 776113305656188928 | 2016-09-14 17:40:06 | This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG | 11 | 10 | Sampson | pupper | pupper | |||
| 777 | 776088319444877312 | 2016-09-14 16:00:49 | I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I | 10 | 10 | None | |||||
| 779 | 775842724423557120 | 2016-09-13 23:44:54 | This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH | 12 | 10 | Blue | |||||
| 780 | 775733305207554048 | 2016-09-13 16:30:07 | This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG | 11 | 10 | Anakin | doggo | doggo | |||
| 781 | 775729183532220416 | 2016-09-13 16:13:44 | This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH | 13 | 10 | None | |||||
| 782 | 775364825476165632 | 2016-09-12 16:05:54 | This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci | 11 | 10 | Finley | doggo | doggo | |||
| 783 | 775350846108426240 | 2016-09-12 15:10:21 | This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou | 12 | 10 | Maximus | |||||
| 785 | 775085132600442880 | 2016-09-11 21:34:30 | This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT | 13 | 10 | Tucker | |||||
| 786 | 774757898236878852 | 2016-09-10 23:54:11 | This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P | 12 | 10 | Finley | |||||
| 787 | 774639387460112384 | 2016-09-10 16:03:16 | This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu | 10 | 10 | Sprinkles | |||||
| 788 | 774314403806253056 | 2016-09-09 18:31:54 | I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH | 14 | 10 | None | |||||
| 789 | 773985732834758656 | 2016-09-08 20:45:53 | Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz | 11 | 10 | Winnie | pupper | pupper | |||
| 790 | 773922284943896577 | 2016-09-08 16:33:46 | This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg | 12 | 10 | Heinrich | |||||
| 791 | 773704687002451968 | 2016-09-08 02:09:06 | This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio | 12 | 10 | Loki | |||||
| 792 | 773670353721753600 | 2016-09-07 23:52:41 | This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr | 10 | 10 | Shakespeare | |||||
| 793 | 773547596996571136 | 2016-09-07 15:44:53 | This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb | 11 | 10 | Chelsea | pupper | pupper | |||
| 795 | 773308824254029826 | 2016-09-06 23:56:05 | This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N | 12 | 10 | Bungalo | |||||
| 796 | 773247561583001600 | 2016-09-06 19:52:39 | This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn | 10 | 10 | Chip | |||||
| 797 | 773191612633579521 | 2016-09-06 16:10:20 | This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD | 12 | 10 | Grey | |||||
| 798 | 772877495989305348 | 2016-09-05 19:22:09 | You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV | 11 | 10 | None | |||||
| 799 | 772826264096874500 | 2016-09-05 15:58:34 | Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright & licked position\n11/10 https://t.co/7CQkn3gHOQ | 11 | 10 | Roosevelt | |||||
| 801 | 772581559778025472 | 2016-09-04 23:46:12 | Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn | 10 | 10 | NaN | |||||
| 802 | 772193107915964416 | 2016-09-03 22:02:38 | This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK | 12 | 10 | Willem | pupper | pupper | |||
| 803 | 772152991789019136 | 2016-09-03 19:23:13 | Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A | 10 | 10 | None | |||||
| 804 | 772117678702071809 | 2016-09-03 17:02:54 | Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti | 12 | 10 | Jack | |||||
| 805 | 772114945936949249 | 2016-09-03 16:52:02 | This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT | 10 | 10 | Finn | |||||
| 806 | 772102971039580160 | 2016-09-03 16:04:27 | This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c | 11 | 10 | Penny | |||||
| 807 | 771908950375665664 | 2016-09-03 03:13:29 | Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k | 13 | 10 | None | doggo | doggo | |||
| 808 | 771770456517009408 | 2016-09-02 18:03:10 | This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm | 11 | 10 | Davey | |||||
| 809 | 771500966810099713 | 2016-09-02 00:12:18 | This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv | 12 | 10 | Dakota | |||||
| 810 | 771380798096281600 | 2016-09-01 16:14:48 | Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn | 11 | 10 | Fizz | |||||
| 812 | 771136648247640064 | 2016-09-01 00:04:38 | This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR | 11 | 10 | Dixie | |||||
| 813 | 771102124360998913 | 2016-08-31 21:47:27 | This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA | 12 | 10 | Charlie | |||||
| 814 | 771014301343748096 | 2016-08-31 15:58:28 | Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd | 7 | 10 | None | |||||
| 816 | 770787852854652928 | 2016-08-31 00:58:39 | This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi | 10 | 10 | Winston | |||||
| 817 | 770772759874076672 | 2016-08-30 23:58:40 | This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo | 11 | 10 | Sebastian | |||||
| 819 | 770655142660169732 | 2016-08-30 16:11:18 | We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d | 11 | 10 | NaN | |||||
| 820 | 770414278348247044 | 2016-08-30 00:14:12 | Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV | 11 | 10 | Al | |||||
| 821 | 770293558247038976 | 2016-08-29 16:14:30 | This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw | 10 | 10 | Jackson | |||||
| 823 | 770069151037685760 | 2016-08-29 01:22:47 | Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS | 10 | 10 | Carbon | |||||
| 824 | 769940425801170949 | 2016-08-28 16:51:16 | This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV | 12 | 10 | Klein | |||||
| 825 | 769695466921623552 | 2016-08-28 00:37:54 | This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v | 13 | 10 | Titan | |||||
| 827 | 769212283578875904 | 2016-08-26 16:37:54 | This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE | 12 | 10 | DonDon | |||||
| 828 | 768970937022709760 | 2016-08-26 00:38:52 | This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs | 12 | 10 | Kirby | |||||
| 830 | 768855141948723200 | 2016-08-25 16:58:45 | This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 | 11 | 10 | Jesse | |||||
| 831 | 768609597686943744 | 2016-08-25 00:43:02 | This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr | 10 | 10 | Lou | |||||
| 832 | 768596291618299904 | 2016-08-24 23:50:10 | Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH | 12 | 10 | Oakley | |||||
| 834 | 768473857036525572 | 2016-08-24 15:43:39 | Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 | 11 | 10 | Chevy | |||||
| 835 | 768193404517830656 | 2016-08-23 21:09:14 | Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq | 8 | 10 | Gerald | doggo | doggo | |||
| 836 | 767884188863397888 | 2016-08-23 00:40:31 | This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA | 10 | 10 | Tito | |||||
| 837 | 767754930266464257 | 2016-08-22 16:06:54 | This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O | 11 | 10 | Philbert | |||||
| 838 | 767500508068192258 | 2016-08-21 23:15:55 | This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 | 12 | 10 | Louie | |||||
| 839 | 767191397493538821 | 2016-08-21 02:47:37 | I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT | 13 | 10 | None | doggo | doggo | |||
| 840 | 767122157629476866 | 2016-08-20 22:12:29 | This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC | 13 | 10 | Rupert | |||||
| 842 | 766793450729734144 | 2016-08-20 00:26:19 | This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO | 10 | 10 | Rufus | |||||
| 843 | 766714921925144576 | 2016-08-19 19:14:16 | His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley | 13 | 10 | None | |||||
| 844 | 766693177336135680 | 2016-08-19 17:47:52 | This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 | 11 | 10 | Brudge | |||||
| 845 | 766423258543644672 | 2016-08-18 23:55:18 | This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG | 9 | 10 | Shadoe | |||||
| 846 | 766313316352462849 | 2016-08-18 16:38:26 | This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 | 12 | 10 | Oscar | |||||
| 848 | 766069199026450432 | 2016-08-18 00:28:24 | This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk | 12 | 10 | Juno | |||||
| 849 | 766008592277377025 | 2016-08-17 20:27:34 | This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL | 11 | 10 | Angel | |||||
| 850 | 765719909049503744 | 2016-08-17 01:20:27 | This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 | 12 | 10 | Brat | |||||
| 851 | 765669560888528897 | 2016-08-16 22:00:23 | This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR | 12 | 10 | Tove | |||||
| 852 | 765395769549590528 | 2016-08-16 03:52:26 | This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB | 13 | 10 | NaN | |||||
| 853 | 765371061932261376 | 2016-08-16 02:14:15 | This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 | 11 | 10 | Louie | pupper | pupper | |||
| 854 | 765222098633691136 | 2016-08-15 16:22:20 | This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH | 10 | 10 | Gromit | |||||
| 855 | 764857477905154048 | 2016-08-14 16:13:27 | This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 | 12 | 10 | Aubie | |||||
| 856 | 764259802650378240 | 2016-08-13 00:38:30 | This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ | 10 | 10 | Kota | |||||
| 857 | 763956972077010945 | 2016-08-12 04:35:10 | @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 | 12 | 10 | None | doggo | doggo | |||
| 858 | 763837565564780549 | 2016-08-11 20:40:41 | This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo | 11 | 10 | Alfie | |||||
| 859 | 763183847194451968 | 2016-08-10 01:23:03 | This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU | 8 | 10 | Clark | |||||
| 861 | 763103485927849985 | 2016-08-09 20:03:43 | This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM | 10 | 10 | Belle | |||||
| 862 | 762699858130116608 | 2016-08-08 17:19:51 | This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD | 11 | 10 | Leela | |||||
| 863 | 762471784394268675 | 2016-08-08 02:13:34 | Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci | 12 | 10 | Glenn | |||||
| 864 | 762464539388485633 | 2016-08-08 01:44:46 | This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx | 12 | 10 | Buddy | |||||
| 865 | 762316489655476224 | 2016-08-07 15:56:28 | This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq | 11 | 10 | Scout | |||||
| 866 | 762035686371364864 | 2016-08-06 21:20:40 | This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB | 14 | 10 | None | |||||
| 867 | 761976711479193600 | 2016-08-06 17:26:19 | This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP | 12 | 10 | Shelby | |||||
| 869 | 761745352076779520 | 2016-08-06 02:06:59 | Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j | 11 | 10 | None | |||||
| 870 | 761672994376806400 | 2016-08-05 21:19:27 | Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 | 10 | 10 | None | |||||
| 871 | 761599872357261312 | 2016-08-05 16:28:54 | This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo | 11 | 10 | Sephie | |||||
| 873 | 761334018830917632 | 2016-08-04 22:52:29 | This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc | 10 | 10 | Bruce | |||||
| 874 | 761292947749015552 | 2016-08-04 20:09:17 | Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo | 11 | 10 | Bonaparte | |||||
| 875 | 761227390836215808 | 2016-08-04 15:48:47 | This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY | 10 | 10 | Albert | |||||
| 876 | 761004547850530816 | 2016-08-04 01:03:17 | This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK | 11 | 10 | Bo | |||||
| 877 | 760893934457552897 | 2016-08-03 17:43:45 | This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa | 11 | 10 | Wishes | doggo | doggo | |||
| 878 | 760656994973933572 | 2016-08-03 02:02:14 | This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 | 11 | 10 | Rose | |||||
| 879 | 760641137271070720 | 2016-08-03 00:59:13 | This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC | 12 | 10 | Theo | |||||
| 880 | 760539183865880579 | 2016-08-02 18:14:06 | This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ | 12 | 10 | Atlas | |||||
| 881 | 760521673607086080 | 2016-08-02 17:04:31 | Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 | 12 | 10 | None | doggo | doggo | |||
| 882 | 760290219849637889 | 2016-08-02 01:44:48 | This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv | 13 | 10 | Rocco | |||||
| 883 | 760252756032651264 | 2016-08-01 23:15:56 | This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP | 4 | 10 | Fido | |||||
| 884 | 760190180481531904 | 2016-08-01 19:07:17 | Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ | 10 | 10 | Sadie | |||||
| 886 | 759943073749200896 | 2016-08-01 02:45:22 | Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu | 12 | 10 | None | pupper | pupper | |||
| 887 | 759923798737051648 | 2016-08-01 01:28:46 | We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi | 10 | 10 | None | |||||
| 888 | 759846353224826880 | 2016-07-31 20:21:02 | This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 | 11 | 10 | Kirby | |||||
| 889 | 759793422261743616 | 2016-07-31 16:50:42 | Meet Maggie & Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll | 12 | 10 | Maggie | doggo | pupper | doggo, pupper | ||
| 891 | 759557299618865152 | 2016-07-31 01:12:26 | This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu | 10 | 10 | Emma | |||||
| 892 | 759447681597108224 | 2016-07-30 17:56:51 | This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 | 11 | 10 | Oakley | |||||
| 893 | 759446261539934208 | 2016-07-30 17:51:13 | No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A | 10 | 10 | None | |||||
| 894 | 759197388317847553 | 2016-07-30 01:22:17 | This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW | 12 | 10 | Luna | |||||
| 896 | 759099523532779520 | 2016-07-29 18:53:24 | Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi | 7 | 10 | Toby | |||||
| 897 | 759047813560868866 | 2016-07-29 15:27:55 | This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx | 11 | 10 | Spencer | |||||
| 898 | 758854675097526272 | 2016-07-29 02:40:28 | This is Lilli Bee & Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW | 11 | 10 | Lilli | |||||
| 899 | 758828659922702336 | 2016-07-29 00:57:05 | This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q | 13 | 10 | None | doggo | doggo | |||
| 900 | 758740312047005698 | 2016-07-28 19:06:01 | Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj | 12 | 10 | Boston | |||||
| 901 | 758474966123810816 | 2016-07-28 01:31:38 | This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM | 11 | 10 | Brandonald | |||||
| 902 | 758467244762497024 | 2016-07-28 01:00:57 | Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE | 11 | 10 | None | |||||
| 903 | 758405701903519748 | 2016-07-27 20:56:24 | This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh | 10 | 10 | Odie | |||||
| 904 | 758355060040593408 | 2016-07-27 17:35:10 | This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr | 11 | 10 | Corey | |||||
| 905 | 758099635764359168 | 2016-07-27 00:40:12 | In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE | 13 | 10 | None | |||||
| 906 | 758041019896193024 | 2016-07-26 20:47:17 | Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv | 9 | 10 | None | |||||
| 907 | 757741869644341248 | 2016-07-26 00:58:34 | This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo | 10 | 10 | Leonard | |||||
| 909 | 757725642876129280 | 2016-07-25 23:54:05 | This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr | 11 | 10 | Beckham | |||||
| 910 | 757611664640446465 | 2016-07-25 16:21:11 | This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB | 12 | 10 | Cooper | |||||
| 912 | 757596066325864448 | 2016-07-25 15:19:12 | Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl | 4 | 10 | None | |||||
| 913 | 757400162377592832 | 2016-07-25 02:20:45 | She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 | 13 | 10 | None | |||||
| 914 | 757393109802180609 | 2016-07-25 01:52:43 | Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV | 10 | 10 | None | doggo | doggo | |||
| 915 | 757354760399941633 | 2016-07-24 23:20:20 | This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO | 8 | 10 | Devón | |||||
| 916 | 756998049151549440 | 2016-07-23 23:42:53 | This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj | 11 | 10 | Oliver | |||||
| 917 | 756939218950160384 | 2016-07-23 19:49:07 | This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH | 12 | 10 | Jax | pupper | pupper | |||
| 918 | 756651752796094464 | 2016-07-23 00:46:50 | This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW | 11 | 10 | Gert | |||||
| 919 | 756526248105566208 | 2016-07-22 16:28:07 | All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF | 13 | 10 | None | doggo | doggo | |||
| 920 | 756303284449767430 | 2016-07-22 01:42:09 | Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I | 11 | 10 | None | |||||
| 921 | 756288534030475264 | 2016-07-22 00:43:32 | Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR | 12 | 10 | None | |||||
| 922 | 756275833623502848 | 2016-07-21 23:53:04 | When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 | 10 | 10 | None | puppo | puppo | |||
| 923 | 755955933503782912 | 2016-07-21 02:41:54 | Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr | 12 | 10 | None | pupper | pupper | |||
| 924 | 755206590534418437 | 2016-07-19 01:04:16 | This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k | 14 | 10 | NaN | doggo | doggo | |||
| 925 | 755110668769038337 | 2016-07-18 18:43:07 | This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN | 13 | 10 | Watson | |||||
| 927 | 754856583969079297 | 2016-07-18 01:53:28 | This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR | 11 | 10 | Winnie | |||||
| 928 | 754747087846248448 | 2016-07-17 18:38:22 | This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU | 12 | 10 | Keith | |||||
| 929 | 754482103782404096 | 2016-07-17 01:05:25 | This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II | 10 | 10 | Milo | |||||
| 930 | 754449512966619136 | 2016-07-16 22:55:55 | This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge | 11 | 10 | Dex | |||||
| 931 | 754120377874386944 | 2016-07-16 01:08:03 | When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA | 10 | 10 | None | |||||
| 932 | 754011816964026368 | 2016-07-15 17:56:40 | This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh | 12 | 10 | Charlie | |||||
| 933 | 753655901052166144 | 2016-07-14 18:22:23 | "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg | 10 | 10 | None | |||||
| 934 | 753420520834629632 | 2016-07-14 02:47:04 | Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf | 11 | 10 | None | |||||
| 935 | 753398408988139520 | 2016-07-14 01:19:12 | This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX | 12 | 10 | Scout | |||||
| 936 | 753375668877008896 | 2016-07-13 23:48:51 | This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc | 8 | 10 | Hank | |||||
| 938 | 753294487569522689 | 2016-07-13 18:26:16 | This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv | 11 | 10 | Ace | |||||
| 939 | 753039830821511168 | 2016-07-13 01:34:21 | So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 | 13 | 10 | None | |||||
| 940 | 753026973505581056 | 2016-07-13 00:43:15 | Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV | 10 | 10 | Tayzie | |||||
| 941 | 752932432744185856 | 2016-07-12 18:27:35 | This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc | 12 | 10 | Carl | |||||
| 942 | 752917284578922496 | 2016-07-12 17:27:23 | This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW | 11 | 10 | Grizzie | |||||
| 944 | 752682090207055872 | 2016-07-12 01:52:49 | Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS | 10 | 10 | None | doggo | doggo | |||
| 945 | 752660715232722944 | 2016-07-12 00:27:52 | Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr | 10 | 10 | None | doggo | doggo | |||
| 946 | 752568224206688256 | 2016-07-11 18:20:21 | Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ | 9 | 10 | None | |||||
| 947 | 752519690950500352 | 2016-07-11 15:07:30 | Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 | 11 | 10 | None | puppo | puppo | |||
| 948 | 752334515931054080 | 2016-07-11 02:51:40 | Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE | 8 | 10 | None | doggo | doggo | |||
| 950 | 752173152931807232 | 2016-07-10 16:10:29 | This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 | 12 | 10 | Brody | |||||
| 951 | 751950017322246144 | 2016-07-10 01:23:49 | This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV | 13 | 10 | Lola | pupper | pupper | |||
| 952 | 751937170840121344 | 2016-07-10 00:32:46 | This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q | 11 | 10 | Ruby | |||||
| 953 | 751830394383790080 | 2016-07-09 17:28:29 | This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w | 12 | 10 | Tucker | |||||
| 954 | 751793661361422336 | 2016-07-09 15:02:31 | This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 | 11 | 10 | Fred | |||||
| 955 | 751598357617971201 | 2016-07-09 02:06:27 | This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC | 13 | 10 | Toby | |||||
| 956 | 751583847268179968 | 2016-07-09 01:08:47 | Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 | 5 | 10 | None | doggo | pupper | doggo, pupper | ||
| 957 | 751538714308972544 | 2016-07-08 22:09:27 | This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY | 10 | 10 | Max | |||||
| 958 | 751456908746354688 | 2016-07-08 16:44:23 | Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex | 12 | 10 | None | pupper | pupper | |||
| 959 | 751251247299190784 | 2016-07-08 03:07:09 | This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG | 10 | 10 | Gilbert | |||||
| 960 | 751205363882532864 | 2016-07-08 00:04:50 | "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy | 12 | 10 | None | |||||
| 961 | 751132876104687617 | 2016-07-07 19:16:47 | This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA | 10 | 10 | Cooper | puppo | puppo | |||
| 962 | 750868782890057730 | 2016-07-07 01:47:22 | Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC | 11 | 10 | Milo | pupper | pupper | |||
| 963 | 750719632563142656 | 2016-07-06 15:54:42 | This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL | 12 | 10 | Meyer | |||||
| 964 | 750506206503038976 | 2016-07-06 01:46:38 | This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 | 8 | 10 | Malcolm | pupper | pupper | |||
| 965 | 750429297815552001 | 2016-07-05 20:41:01 | This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS | 12 | 10 | Arnie | |||||
| 966 | 750383411068534784 | 2016-07-05 17:38:41 | This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta | 9 | 10 | Zoe | pupper | pupper | |||
| 967 | 750381685133418496 | 2016-07-05 17:31:49 | 13/10 such a good doggo\n@spaghemily | 13 | 10 | None | doggo | doggo | |||
| 968 | 750147208377409536 | 2016-07-05 02:00:06 | And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe | 13 | 10 | None | |||||
| 969 | 750132105863102464 | 2016-07-05 01:00:05 | This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo | 11 | 10 | Stewie | |||||
| 970 | 750117059602808832 | 2016-07-05 00:00:18 | This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm | 10 | 10 | Calvin | |||||
| 971 | 750101899009982464 | 2016-07-04 23:00:03 | Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD | 11 | 10 | Lilah | |||||
| 972 | 750086836815486976 | 2016-07-04 22:00:12 | This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd | 12 | 10 | Spanky | |||||
| 973 | 750071704093859840 | 2016-07-04 21:00:04 | Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM | 10 | 10 | None | pupper | pupper | |||
| 974 | 750056684286914561 | 2016-07-04 20:00:23 | This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 | 11 | 10 | Jameson | |||||
| 975 | 750041628174217216 | 2016-07-04 19:00:33 | This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI | 13 | 10 | Beau | |||||
| 976 | 750026558547456000 | 2016-07-04 18:00:41 | Meet Jax & Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI | 10 | 10 | Jax | |||||
| 977 | 750011400160841729 | 2016-07-04 17:00:26 | Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM | 11 | 10 | Piper | doggo | doggo | |||
| 978 | 749996283729883136 | 2016-07-04 16:00:22 | This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR | 12 | 10 | Bo | |||||
| 979 | 749981277374128128 | 2016-07-04 15:00:45 | This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh | 11 | 10 | Atticus | |||||
| 980 | 749774190421639168 | 2016-07-04 01:17:51 | This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl | 12 | 10 | Lucy | |||||
| 981 | 749417653287129088 | 2016-07-03 01:41:06 | This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v | 11 | 10 | Finn | pupper | pupper | |||
| 982 | 749403093750648834 | 2016-07-03 00:43:15 | Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx | 10 | 10 | None | |||||
| 983 | 749395845976588288 | 2016-07-03 00:14:27 | This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc | 10 | 10 | George | |||||
| 984 | 749317047558017024 | 2016-07-02 19:01:20 | This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB | 12 | 10 | Blu | floofer | floofer | |||
| 985 | 749075273010798592 | 2016-07-02 03:00:36 | This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o | 11 | 10 | Boomer | doggo | doggo | |||
| 986 | 749064354620928000 | 2016-07-02 02:17:13 | Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF | 11 | 10 | Winston | |||||
| 987 | 749036806121881602 | 2016-07-02 00:27:45 | This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC | 8 | 10 | Dietrich | |||||
| 988 | 748977405889503236 | 2016-07-01 20:31:43 | What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX | 10 | 10 | NaN | |||||
| 989 | 748932637671223296 | 2016-07-01 17:33:49 | Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb | 13 | 10 | Divine | doggo | doggo | |||
| 990 | 748705597323898880 | 2016-07-01 02:31:39 | #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA | 13 | 10 | None | |||||
| 991 | 748699167502000129 | 2016-07-01 02:06:06 | Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c | 11 | 10 | Tripp | |||||
| 992 | 748692773788876800 | 2016-07-01 01:40:41 | That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 | 10 | 10 | NaN | doggo | doggo | |||
| 993 | 748575535303884801 | 2016-06-30 17:54:50 | This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd | 6 | 10 | NaN | |||||
| 994 | 748568946752774144 | 2016-06-30 17:28:39 | This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 | 12 | 10 | Cora | |||||
| 995 | 748346686624440324 | 2016-06-30 02:45:28 | "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa | 10 | 10 | None | |||||
| 996 | 748337862848962560 | 2016-06-30 02:10:24 | SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy | 13 | 10 | None | pupper | pupper | |||
| 997 | 748324050481647620 | 2016-06-30 01:15:31 | This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO | 11 | 10 | Duke | |||||
| 998 | 748307329658011649 | 2016-06-30 00:09:04 | This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO | 7 | 10 | None | |||||
| 999 | 748220828303695873 | 2016-06-29 18:25:21 | Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH | 13 | 10 | None | |||||
| 1000 | 747963614829678593 | 2016-06-29 01:23:16 | PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q | 10 | 10 | None | pupper | pupper | |||
| 1001 | 747933425676525569 | 2016-06-28 23:23:19 | Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R | 11 | 10 | None | |||||
| 1002 | 747885874273214464 | 2016-06-28 20:14:22 | This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW | 8 | 10 | NaN | |||||
| 1003 | 747844099428986880 | 2016-06-28 17:28:22 | This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz | 11 | 10 | Huxley | |||||
| 1004 | 747816857231626240 | 2016-06-28 15:40:07 | Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R | 4 | 10 | NaN | |||||
| 1005 | 747651430853525504 | 2016-06-28 04:42:46 | Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup | 12 | 10 | None | pupper | pupper | |||
| 1006 | 747648653817413632 | 2016-06-28 04:31:44 | This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M | 12 | 10 | Keurig | |||||
| 1007 | 747600769478692864 | 2016-06-28 01:21:27 | This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ | 10 | 10 | Bookstore | |||||
| 1008 | 747594051852075008 | 2016-06-28 00:54:46 | Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr | 11 | 10 | None | |||||
| 1009 | 747512671126323200 | 2016-06-27 19:31:23 | Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP | 10 | 10 | None | |||||
| 1010 | 747461612269887489 | 2016-06-27 16:08:30 | Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y | 10 | 10 | None | |||||
| 1011 | 747439450712596480 | 2016-06-27 14:40:26 | This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR | 12 | 10 | Linus | |||||
| 1013 | 747219827526344708 | 2016-06-27 00:07:44 | This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U | 11 | 10 | Atticus | |||||
| 1014 | 747204161125646336 | 2016-06-26 23:05:29 | This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC | 10 | 10 | Clark | |||||
| 1015 | 747103485104099331 | 2016-06-26 16:25:26 | Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 | 11 | 10 | None | |||||
| 1016 | 746906459439529985 | 2016-06-26 03:22:31 | PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX | 0 | 10 | None | |||||
| 1017 | 746872823977771008 | 2016-06-26 01:08:52 | This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 | 11 | 10 | NaN | |||||
| 1018 | 746818907684614144 | 2016-06-25 21:34:37 | Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ | 13 | 10 | None | |||||
| 1019 | 746790600704425984 | 2016-06-25 19:42:08 | When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf | 10 | 10 | None | |||||
| 1020 | 746757706116112384 | 2016-06-25 17:31:25 | This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u | 11 | 10 | Maddie | |||||
| 1021 | 746726898085036033 | 2016-06-25 15:29:00 | Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp | 12 | 10 | Abby | |||||
| 1022 | 746542875601690625 | 2016-06-25 03:17:46 | Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd | 11 | 10 | None | floofer | floofer | |||
| 1024 | 746507379341139972 | 2016-06-25 00:56:43 | This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 | 10 | 10 | Shiloh | |||||
| 1025 | 746369468511756288 | 2016-06-24 15:48:42 | This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt | 9 | 10 | NaN | |||||
| 1026 | 746131877086527488 | 2016-06-24 00:04:36 | This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX | 10 | 10 | Gustav | |||||
| 1027 | 746056683365994496 | 2016-06-23 19:05:49 | This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx | 11 | 10 | Arlen | |||||
| 1028 | 745789745784041472 | 2016-06-23 01:25:06 | This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu | 10 | 10 | Gus | |||||
| 1029 | 745712589599014916 | 2016-06-22 20:18:30 | This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E | 7 | 10 | Percy | |||||
| 1030 | 745433870967832576 | 2016-06-22 01:50:58 | This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR | 10 | 10 | Lenox | doggo | doggo | |||
| 1031 | 745422732645535745 | 2016-06-22 01:06:43 | We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ | 9 | 10 | NaN | |||||
| 1032 | 745314880350101504 | 2016-06-21 17:58:09 | This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 | 12 | 10 | Sugar | |||||
| 1033 | 745074613265149952 | 2016-06-21 02:03:25 | This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh | 11 | 10 | Jeffrey | |||||
| 1034 | 745057283344719872 | 2016-06-21 00:54:33 | This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA | 12 | 10 | Oliver | |||||
| 1035 | 744995568523612160 | 2016-06-20 20:49:19 | This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK | 9 | 10 | Abby | puppo | puppo | |||
| 1036 | 744971049620602880 | 2016-06-20 19:11:53 | Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r | 12 | 10 | Indie | |||||
| 1037 | 744709971296780288 | 2016-06-20 01:54:27 | This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT | 10 | 10 | Harvey | |||||
| 1038 | 744334592493166593 | 2016-06-19 01:02:50 | This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z | 11 | 10 | Blanket | |||||
| 1039 | 744234799360020481 | 2016-06-18 18:26:18 | Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 | 13 | 10 | None | doggo | doggo | |||
| 1040 | 744223424764059648 | 2016-06-18 17:41:06 | This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N | 12 | 10 | NaN | pupper | pupper | |||
| 1041 | 743980027717509120 | 2016-06-18 01:33:55 | This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 | 11 | 10 | Geno | |||||
| 1042 | 743895849529389061 | 2016-06-17 19:59:26 | When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 | 10 | 10 | None | |||||
| 1044 | 743609206067040256 | 2016-06-17 01:00:24 | Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA | 10 | 10 | Stark | |||||
| 1045 | 743595368194129920 | 2016-06-17 00:05:25 | This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N | 7 | 10 | Harold | |||||
| 1046 | 743545585370791937 | 2016-06-16 20:47:36 | Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn | 11 | 10 | Bentley | |||||
| 1047 | 743510151680958465 | 2016-06-16 18:26:48 | This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH | 13 | 10 | Beya | |||||
| 1048 | 743253157753532416 | 2016-06-16 01:25:36 | This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx | 10 | 10 | Kilo | puppo | puppo | |||
| 1049 | 743222593470234624 | 2016-06-15 23:24:09 | This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa | 12 | 10 | NaN | pupper | pupper | |||
| 1050 | 743210557239623680 | 2016-06-15 22:36:19 | Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO | 10 | 10 | Kayla | |||||
| 1051 | 742534281772302336 | 2016-06-14 01:49:03 | For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv | 11 | 10 | None | doggo | doggo | |||
| 1052 | 742528092657332225 | 2016-06-14 01:24:27 | This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O | 10 | 10 | Maxaroni | |||||
| 1053 | 742465774154047488 | 2016-06-13 21:16:49 | Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z | 14 | 10 | None | pupper | pupper | |||
| 1054 | 742423170473463808 | 2016-06-13 18:27:32 | This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b | 12 | 10 | Bell | |||||
| 1055 | 742385895052087300 | 2016-06-13 15:59:24 | This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq | 11 | 10 | Phil | |||||
| 1056 | 742161199639494656 | 2016-06-13 01:06:33 | This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL | 12 | 10 | Doug | |||||
| 1057 | 742150209887731712 | 2016-06-13 00:22:53 | This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY | 8 | 10 | Edmund | pupper | pupper | |||
| 1058 | 741793263812808706 | 2016-06-12 00:44:30 | When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu | 10 | 10 | None | |||||
| 1059 | 741743634094141440 | 2016-06-11 21:27:17 | Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE | 11 | 10 | Aqua | pupper | pupper | |||
| 1060 | 741438259667034112 | 2016-06-11 01:13:51 | This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 | 9 | 10 | Tucker | |||||
| 1061 | 741303864243200000 | 2016-06-10 16:19:48 | This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ | 12 | 10 | Theodore | |||||
| 1062 | 741099773336379392 | 2016-06-10 02:48:49 | This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ | 11 | 10 | Ted | |||||
| 1063 | 741067306818797568 | 2016-06-10 00:39:48 | This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | 12 | 10 | NaN | doggo | pupper | doggo, pupper | ||
| 1064 | 740995100998766593 | 2016-06-09 19:52:53 | This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ | 10 | 10 | Leo | |||||
| 1065 | 740711788199743490 | 2016-06-09 01:07:06 | Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv | 9 | 10 | None | |||||
| 1066 | 740699697422163968 | 2016-06-09 00:19:04 | This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK | 8 | 10 | Chip | |||||
| 1067 | 740676976021798912 | 2016-06-08 22:48:46 | Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC | 11 | 10 | Baloo | pupper | pupper | |||
| 1068 | 740373189193256964 | 2016-06-08 02:41:38 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ | 14 | 10 | None | |||||
| 1069 | 740365076218183684 | 2016-06-08 02:09:24 | When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 | 10 | 10 | None | |||||
| 1070 | 740359016048689152 | 2016-06-08 01:45:19 | This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW | 9 | 10 | Chase | |||||
| 1071 | 740214038584557568 | 2016-06-07 16:09:13 | This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X | 10 | 10 | NaN | |||||
| 1072 | 739979191639244800 | 2016-06-07 00:36:02 | This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf | 12 | 10 | Nollie | |||||
| 1073 | 739932936087216128 | 2016-06-06 21:32:13 | Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 | 10 | 10 | Rorie | |||||
| 1074 | 739844404073074688 | 2016-06-06 15:40:26 | This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 | 12 | 10 | Simba | |||||
| 1075 | 739623569819336705 | 2016-06-06 01:02:55 | Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON | 12 | 10 | None | doggo | doggo | |||
| 1076 | 739606147276148736 | 2016-06-05 23:53:41 | Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj | 9 | 10 | Benji | pupper | pupper | |||
| 1077 | 739544079319588864 | 2016-06-05 19:47:03 | This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P | 10 | 10 | None | |||||
| 1078 | 739485634323156992 | 2016-06-05 15:54:48 | This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO | 6 | 10 | Kyle | |||||
| 1079 | 739238157791694849 | 2016-06-04 23:31:25 | Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC | 13 | 10 | None | doggo | doggo | |||
| 1080 | 738891149612572673 | 2016-06-04 00:32:32 | @mount_alex3 13/10 | 13 | 10 | None | |||||
| 1081 | 738885046782832640 | 2016-06-04 00:08:17 | This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr | 11 | 10 | Charles | |||||
| 1082 | 738883359779196928 | 2016-06-04 00:01:35 | When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc | 10 | 10 | None | |||||
| 1083 | 738537504001953792 | 2016-06-03 01:07:16 | This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu | 11 | 10 | Bayley | puppo | puppo | |||
| 1084 | 738402415918125056 | 2016-06-02 16:10:29 | "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK | 10 | 10 | None | |||||
| 1085 | 738184450748633089 | 2016-06-02 01:44:22 | For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl | 9 | 10 | None | |||||
| 1086 | 738166403467907072 | 2016-06-02 00:32:39 | This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs | 12 | 10 | Axel | |||||
| 1087 | 738156290900254721 | 2016-06-01 23:52:28 | This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC | 10 | 10 | Storkson | |||||
| 1088 | 737826014890496000 | 2016-06-01 02:00:04 | This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK | 10 | 10 | Remy | |||||
| 1089 | 737800304142471168 | 2016-06-01 00:17:54 | This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj | 10 | 10 | Bella | |||||
| 1090 | 737678689543020544 | 2016-05-31 16:14:39 | We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 | 11 | 10 | None | |||||
| 1091 | 737445876994609152 | 2016-05-31 00:49:32 | Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT | 13 | 10 | None | floofer | floofer | |||
| 1092 | 737322739594330112 | 2016-05-30 16:40:14 | Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw | 9 | 10 | Lily | |||||
| 1093 | 737310737551491075 | 2016-05-30 15:52:33 | Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC | 13 | 10 | None | |||||
| 1094 | 736736130620620800 | 2016-05-29 01:49:16 | This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW | 13 | 10 | Chadrick | |||||
| 1095 | 736392552031657984 | 2016-05-28 03:04:00 | Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX | 13 | 10 | NaN | pupper | pupper | |||
| 1096 | 736365877722001409 | 2016-05-28 01:18:00 | This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 | 11 | 10 | Rory | pupper | pupper | |||
| 1097 | 736225175608430592 | 2016-05-27 15:58:54 | We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc | 10 | 10 | NaN | |||||
| 1098 | 736010884653420544 | 2016-05-27 01:47:23 | Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS | 10 | 10 | None | |||||
| 1099 | 735991953473572864 | 2016-05-27 00:32:10 | This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca | 11 | 10 | Maxaroni | |||||
| 1100 | 735648611367784448 | 2016-05-26 01:47:51 | *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK | 12 | 10 | None | pupper | pupper | |||
| 1101 | 735635087207878657 | 2016-05-26 00:54:06 | This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj | 11 | 10 | Dakota | |||||
| 1102 | 735274964362878976 | 2016-05-25 01:03:06 | We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt | 11 | 10 | None | |||||
| 1103 | 735256018284875776 | 2016-05-24 23:47:49 | This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS | 8 | 10 | Kellogg | doggo | doggo | |||
| 1104 | 735137028879360001 | 2016-05-24 15:55:00 | Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 | 9 | 10 | Buckley | pupper | pupper | |||
| 1105 | 734912297295085568 | 2016-05-24 01:02:00 | This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK | 10 | 10 | Jax | |||||
| 1106 | 734787690684657664 | 2016-05-23 16:46:51 | This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA | 13 | 10 | None | |||||
| 1107 | 734776360183431168 | 2016-05-23 16:01:50 | This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO | 11 | 10 | Livvie | |||||
| 1108 | 734559631394082816 | 2016-05-23 01:40:38 | When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC | 10 | 10 | None | |||||
| 1109 | 733828123016450049 | 2016-05-21 01:13:53 | This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ | 10 | 10 | Terry | |||||
| 1110 | 733822306246479872 | 2016-05-21 00:50:46 | This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL | 10 | 10 | Moose | floofer | floofer | |||
| 1111 | 733482008106668032 | 2016-05-20 02:18:32 | "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L | 10 | 10 | None | |||||
| 1112 | 733460102733135873 | 2016-05-20 00:51:30 | This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA | 11 | 10 | Hermione | |||||
| 1113 | 733109485275860992 | 2016-05-19 01:38:16 | Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda | 12 | 10 | None | doggo | pupper | doggo, pupper | ||
| 1114 | 732732193018155009 | 2016-05-18 00:39:02 | This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH | 12 | 10 | Ralpher | |||||
| 1115 | 732726085725589504 | 2016-05-18 00:14:46 | This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL | 11 | 10 | Aldrick | |||||
| 1116 | 732585889486888962 | 2016-05-17 14:57:41 | When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp | 10 | 10 | None | |||||
| 1117 | 732375214819057664 | 2016-05-17 01:00:32 | This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE | 11 | 10 | Kyle | doggo | doggo | |||
| 1118 | 732005617171337216 | 2016-05-16 00:31:53 | This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r | 11 | 10 | Larry | |||||
| 1119 | 731285275100512256 | 2016-05-14 00:49:30 | This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP | 12 | 10 | Solomon | |||||
| 1120 | 731156023742988288 | 2016-05-13 16:15:54 | Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv | 12 | 10 | NaN | |||||
| 1121 | 730924654643314689 | 2016-05-13 00:56:32 | We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z | 9 | 10 | NaN | |||||
| 1122 | 730573383004487680 | 2016-05-12 01:40:42 | This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV | 10 | 10 | Rooney | pupper | pupper | |||
| 1123 | 730427201120833536 | 2016-05-11 15:59:50 | This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG | 11 | 10 | Crystal | |||||
| 1124 | 730211855403241472 | 2016-05-11 01:44:07 | This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE | 11 | 10 | Ziva | |||||
| 1125 | 730196704625098752 | 2016-05-11 00:43:55 | This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog | 6 | 10 | Charles | |||||
| 1126 | 729854734790754305 | 2016-05-10 02:05:03 | Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z | 11 | 10 | Ollie | |||||
| 1127 | 729838605770891264 | 2016-05-10 01:00:58 | "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB | 12 | 10 | None | |||||
| 1128 | 729823566028484608 | 2016-05-10 00:01:12 | This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh | 13 | 10 | Stefan | |||||
| 1129 | 729463711119904772 | 2016-05-09 00:11:16 | Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 | 13 | 10 | Pupcasso | |||||
| 1130 | 729113531270991872 | 2016-05-08 00:59:46 | "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u | 10 | 10 | None | |||||
| 1131 | 728986383096946689 | 2016-05-07 16:34:32 | This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B | 11 | 10 | Puff | |||||
| 1132 | 728760639972315136 | 2016-05-07 01:37:30 | When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq | 13 | 10 | None | |||||
| 1133 | 728751179681943552 | 2016-05-07 00:59:55 | This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE | 10 | 10 | Flurpson | |||||
| 1134 | 728653952833728512 | 2016-05-06 18:33:34 | This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs | 8 | 10 | Coleman | |||||
| 1135 | 728409960103686147 | 2016-05-06 02:24:02 | This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr | 10 | 10 | Wallace | |||||
| 1136 | 728387165835677696 | 2016-05-06 00:53:27 | This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP | 12 | 10 | Enchilada | |||||
| 1137 | 728046963732717569 | 2016-05-05 02:21:37 | This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ | 11 | 10 | Raymond | |||||
| 1138 | 728035342121635841 | 2016-05-05 01:35:26 | This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh | 12 | 10 | NaN | pupper | pupper | |||
| 1139 | 728015554473250816 | 2016-05-05 00:16:48 | This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi | 11 | 10 | Rueben | pupper | pupper | |||
| 1140 | 727685679342333952 | 2016-05-04 02:26:00 | This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 | 12 | 10 | Cilantro | |||||
| 1141 | 727644517743104000 | 2016-05-03 23:42:26 | Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT | 13 | 10 | None | doggo | doggo | |||
| 1142 | 727524757080539137 | 2016-05-03 15:46:33 | This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx | 10 | 10 | None | pupper | pupper | |||
| 1143 | 727314416056803329 | 2016-05-03 01:50:44 | This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs | 11 | 10 | None | pupper | pupper | |||
| 1144 | 727286334147182592 | 2016-05-02 23:59:09 | I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK | 9 | 10 | None | |||||
| 1145 | 727175381690781696 | 2016-05-02 16:38:15 | This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp | 10 | 10 | Karll | |||||
| 1146 | 727155742655025152 | 2016-05-02 15:20:13 | When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 | 11 | 10 | None | |||||
| 1147 | 726935089318363137 | 2016-05-02 00:43:25 | This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY | 12 | 10 | Sprout | |||||
| 1148 | 726887082820554753 | 2016-05-01 21:32:40 | This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy | 10 | 10 | Blitz | |||||
| 1149 | 726828223124897792 | 2016-05-01 17:38:46 | This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA | 12 | 10 | Bloop | |||||
| 1150 | 726224900189511680 | 2016-04-30 01:41:23 | I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z | 9 | 10 | None | |||||
| 1151 | 725842289046749185 | 2016-04-29 00:21:01 | This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH | 12 | 10 | Colby | |||||
| 1152 | 725786712245440512 | 2016-04-28 20:40:11 | Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw | 11 | 10 | Lillie | pupper | pupper | |||
| 1153 | 725729321944506368 | 2016-04-28 16:52:08 | This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU | 12 | 10 | Lola | |||||
| 1154 | 725458796924002305 | 2016-04-27 22:57:10 | Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W | 13 | 10 | None | |||||
| 1155 | 724983749226668032 | 2016-04-26 15:29:30 | This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD | 12 | 10 | Fred | |||||
| 1156 | 724771698126512129 | 2016-04-26 01:26:53 | Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs | 11 | 10 | None | doggo | doggo | |||
| 1157 | 724405726123311104 | 2016-04-25 01:12:38 | This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH | 10 | 10 | Ashleigh | pupper | pupper | |||
| 1158 | 724049859469295616 | 2016-04-24 01:38:33 | This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT | 10 | 10 | Kreggory | |||||
| 1159 | 724046343203856385 | 2016-04-24 01:24:35 | This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL | 10 | 10 | Sarge | |||||
| 1160 | 724004602748780546 | 2016-04-23 22:38:43 | This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl | 11 | 10 | Luther | pupper | pupper | |||
| 1161 | 723912936180330496 | 2016-04-23 16:34:28 | This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm | 12 | 10 | Sugar | |||||
| 1162 | 723688335806480385 | 2016-04-23 01:41:59 | This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 | 12 | 10 | Reginald | |||||
| 1163 | 723673163800948736 | 2016-04-23 00:41:42 | This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU | 10 | 10 | Ivar | |||||
| 1164 | 723179728551723008 | 2016-04-21 16:00:57 | This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa | 8 | 10 | Jangle | |||||
| 1165 | 722974582966214656 | 2016-04-21 02:25:47 | Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a | 13 | 10 | None | |||||
| 1166 | 722613351520608256 | 2016-04-20 02:30:23 | Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY | 12 | 10 | Schnitzel | |||||
| 1167 | 721503162398597120 | 2016-04-17 00:58:53 | This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE | 11 | 10 | Panda | |||||
| 1168 | 721001180231503872 | 2016-04-15 15:44:11 | This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT | 11 | 10 | Oliver | pupper | pupper | |||
| 1169 | 720785406564900865 | 2016-04-15 01:26:47 | This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp | 12 | 10 | Archie | |||||
| 1170 | 720775346191278080 | 2016-04-15 00:46:48 | This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej | 10 | 10 | Berkeley | |||||
| 1171 | 720415127506415616 | 2016-04-14 00:55:25 | Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw | 10 | 10 | None | |||||
| 1172 | 720389942216527872 | 2016-04-13 23:15:21 | This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk | 11 | 10 | Ralphé | |||||
| 1173 | 720340705894408192 | 2016-04-13 19:59:42 | This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH | 10 | 10 | Derek | pupper | pupper | |||
| 1174 | 720059472081784833 | 2016-04-13 01:22:10 | This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu | 9 | 10 | Charleson | |||||
| 1175 | 720043174954147842 | 2016-04-13 00:17:25 | This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv | 11 | 10 | Neptune | |||||
| 1176 | 719991154352222208 | 2016-04-12 20:50:42 | This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV | 10 | 10 | None | doggo | doggo | |||
| 1177 | 719704490224398336 | 2016-04-12 01:51:36 | This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 | 12 | 10 | Clyde | pupper | pupper | |||
| 1178 | 719551379208073216 | 2016-04-11 15:43:12 | This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln | 10 | 10 | Harnold | |||||
| 1179 | 719367763014393856 | 2016-04-11 03:33:34 | Meet Sid & Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW | 11 | 10 | Sid | |||||
| 1180 | 719339463458033665 | 2016-04-11 01:41:07 | Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R | 10 | 10 | Lucy | |||||
| 1181 | 719332531645071360 | 2016-04-11 01:13:34 | This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz | 11 | 10 | Pippa | |||||
| 1182 | 718971898235854848 | 2016-04-10 01:20:33 | This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT | 10 | 10 | Sadie | |||||
| 1183 | 718939241951195136 | 2016-04-09 23:10:47 | This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih | 12 | 10 | Otis | |||||
| 1184 | 718631497683582976 | 2016-04-09 02:47:55 | We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos | 10 | 10 | None | |||||
| 1185 | 718613305783398402 | 2016-04-09 01:35:37 | This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj | 11 | 10 | Carper | |||||
| 1186 | 718540630683709445 | 2016-04-08 20:46:50 | Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ | 10 | 10 | None | |||||
| 1187 | 718460005985447936 | 2016-04-08 15:26:28 | Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe | 9 | 10 | Bowie | |||||
| 1188 | 718454725339934721 | 2016-04-08 15:05:29 | This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z | 13 | 10 | None | |||||
| 1189 | 718246886998687744 | 2016-04-08 01:19:36 | This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl | 3 | 10 | Alexanderson | |||||
| 1190 | 718234618122661888 | 2016-04-08 00:30:51 | This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb | 11 | 10 | Suki | |||||
| 1191 | 717841801130979328 | 2016-04-06 22:29:56 | This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV | 11 | 10 | Barclay | |||||
| 1192 | 717790033953034240 | 2016-04-06 19:04:14 | Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG | 10 | 10 | None | pupper | pupper | |||
| 1193 | 717537687239008257 | 2016-04-06 02:21:30 | People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n | 11 | 10 | NaN | |||||
| 1194 | 717428917016076293 | 2016-04-05 19:09:17 | This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 | 11 | 10 | Skittle | |||||
| 1195 | 717421804990701568 | 2016-04-05 18:41:02 | This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi | 9 | 10 | Ebby | |||||
| 1196 | 717047459982213120 | 2016-04-04 17:53:31 | This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq | 12 | 10 | Flávio | |||||
| 1197 | 717009362452090881 | 2016-04-04 15:22:08 | This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 | 10 | 10 | Smokey | pupper | pupper | |||
| 1198 | 716802964044845056 | 2016-04-04 01:41:58 | This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o | 10 | 10 | Link | |||||
| 1199 | 716791146589110272 | 2016-04-04 00:55:01 | Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate & churlish. 11/10 would still pet https://t.co/h0trcJohYO | 11 | 10 | Jennifur | |||||
| 1200 | 716730379797970944 | 2016-04-03 20:53:33 | There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC | 12 | 10 | None | |||||
| 1201 | 716447146686459905 | 2016-04-03 02:08:05 | This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E | 13 | 10 | Ozzy | pupper | pupper | |||
| 1202 | 716439118184652801 | 2016-04-03 01:36:11 | This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq | 11 | 10 | Bluebert | |||||
| 1203 | 716285507865542656 | 2016-04-02 15:25:47 | This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ | 12 | 10 | Stephanus | |||||
| 1204 | 716080869887381504 | 2016-04-02 01:52:38 | Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu | 11 | 10 | None | doggo | doggo | |||
| 1205 | 715928423106027520 | 2016-04-01 15:46:52 | This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq | 11 | 10 | Bubbles | |||||
| 1206 | 715758151270801409 | 2016-04-01 04:30:16 | This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP | 13 | 10 | NaN | |||||
| 1207 | 715733265223708672 | 2016-04-01 02:51:22 | This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 | 10 | 10 | NaN | |||||
| 1208 | 715704790270025728 | 2016-04-01 00:58:13 | This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp | 11 | 10 | Bentley | |||||
| 1209 | 715696743237730304 | 2016-04-01 00:26:15 | Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC | 10 | 10 | Toby | |||||
| 1210 | 715680795826982913 | 2016-03-31 23:22:53 | This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp | 12 | 10 | Zeus | |||||
| 1211 | 715360349751484417 | 2016-03-31 02:09:32 | This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA | 11 | 10 | Bertson | |||||
| 1212 | 715342466308784130 | 2016-03-31 00:58:29 | This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C | 10 | 10 | Oscar | |||||
| 1213 | 715220193576927233 | 2016-03-30 16:52:36 | This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx | 10 | 10 | Nico | |||||
| 1214 | 715200624753819648 | 2016-03-30 15:34:51 | This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 | 12 | 10 | Michelangelope | |||||
| 1215 | 715009755312439296 | 2016-03-30 02:56:24 | This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i | 12 | 10 | Siba | |||||
| 1216 | 714982300363173890 | 2016-03-30 01:07:18 | This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj | 9 | 10 | Calbert | |||||
| 1217 | 714962719905021952 | 2016-03-29 23:49:30 | Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ | 12 | 10 | None | |||||
| 1218 | 714957620017307648 | 2016-03-29 23:29:14 | This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK | 10 | 10 | Curtis | |||||
| 1219 | 714631576617938945 | 2016-03-29 01:53:39 | This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z | 4 | 10 | Benedict | |||||
| 1220 | 714606013974974464 | 2016-03-29 00:12:05 | Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG | 12 | 10 | None | |||||
| 1221 | 714485234495041536 | 2016-03-28 16:12:09 | This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF | 10 | 10 | Blitz | |||||
| 1222 | 714258258790387713 | 2016-03-28 01:10:13 | Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 & 8/10\nget it together Flurp https://t.co/Akzl5ynMmE | 10 | 10 | Travis | |||||
| 1223 | 714251586676113411 | 2016-03-28 00:43:43 | This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi | 8 | 10 | Thumas | |||||
| 1224 | 714214115368108032 | 2016-03-27 22:14:49 | Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB | 13 | 10 | None | |||||
| 1225 | 714141408463036416 | 2016-03-27 17:25:54 | I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu | 10 | 10 | None | |||||
| 1226 | 713919462244790272 | 2016-03-27 02:43:58 | This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE | 12 | 10 | Kanu | |||||
| 1227 | 713909862279876608 | 2016-03-27 02:05:49 | This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS | 12 | 10 | Doug | |||||
| 1228 | 713900603437621249 | 2016-03-27 01:29:02 | Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 | 11 | 10 | None | |||||
| 1229 | 713761197720473600 | 2016-03-26 16:15:05 | This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 | 12 | 10 | Piper | |||||
| 1230 | 713411074226274305 | 2016-03-25 17:03:49 | Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq | 11 | 10 | None | |||||
| 1231 | 713177543487135744 | 2016-03-25 01:35:51 | This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J | 10 | 10 | Lance | |||||
| 1232 | 713175907180089344 | 2016-03-25 01:29:21 | Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW | 10 | 10 | Opie | |||||
| 1233 | 712809025985978368 | 2016-03-24 01:11:29 | This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn | 10 | 10 | Stubert | |||||
| 1234 | 712717840512598017 | 2016-03-23 19:09:09 | Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 | 10 | 10 | None | |||||
| 1235 | 712668654853337088 | 2016-03-23 15:53:42 | Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl | 10 | 10 | Sunny | |||||
| 1236 | 712438159032893441 | 2016-03-23 00:37:48 | This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul | 11 | 10 | Kane | |||||
| 1237 | 712309440758808576 | 2016-03-22 16:06:19 | Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV | 12 | 10 | None | pupper | pupper | |||
| 1238 | 712097430750289920 | 2016-03-22 02:03:52 | I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK | 10 | 10 | None | |||||
| 1239 | 712092745624633345 | 2016-03-22 01:45:15 | This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG | 7 | 10 | Steven | |||||
| 1240 | 712085617388212225 | 2016-03-22 01:16:55 | Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL | 11 | 10 | Olive | |||||
| 1241 | 712065007010385924 | 2016-03-21 23:55:01 | This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt | 6 | 10 | Chester | |||||
| 1243 | 711968124745228288 | 2016-03-21 17:30:03 | Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc | 10 | 10 | Winston | pupper | pupper | |||
| 1244 | 711743778164514816 | 2016-03-21 02:38:34 | Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg | 11 | 10 | Roosevelt | |||||
| 1245 | 711732680602345472 | 2016-03-21 01:54:29 | I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 | 10 | 10 | None | |||||
| 1246 | 711694788429553666 | 2016-03-20 23:23:54 | Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ | 13 | 10 | None | |||||
| 1247 | 711652651650457602 | 2016-03-20 20:36:28 | This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW | 9 | 10 | Gary | |||||
| 1248 | 711363825979756544 | 2016-03-20 01:28:47 | "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK | 11 | 10 | None | |||||
| 1249 | 711306686208872448 | 2016-03-19 21:41:44 | What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz | 3 | 10 | None | |||||
| 1250 | 711008018775851008 | 2016-03-19 01:54:56 | This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW | 11 | 10 | Chuckles | pupper | pupper | |||
| 1251 | 710997087345876993 | 2016-03-19 01:11:29 | Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD | 12 | 10 | Milo | |||||
| 1252 | 710844581445812225 | 2016-03-18 15:05:29 | This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM | 10 | 10 | Staniel | |||||
| 1253 | 710833117892898816 | 2016-03-18 14:19:56 | Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq | 12 | 10 | Sora | |||||
| 1254 | 710658690886586372 | 2016-03-18 02:46:49 | Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 | 10 | 10 | None | |||||
| 1255 | 710609963652087808 | 2016-03-17 23:33:12 | I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy | 12 | 10 | None | |||||
| 1256 | 710588934686908417 | 2016-03-17 22:09:38 | This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV | 12 | 10 | Beemo | |||||
| 1257 | 710296729921429505 | 2016-03-17 02:48:31 | This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq | 12 | 10 | Oshie | |||||
| 1258 | 710283270106132480 | 2016-03-17 01:55:02 | This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ | 11 | 10 | Gunner | |||||
| 1259 | 710272297844797440 | 2016-03-17 01:11:26 | We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 | 11 | 10 | NaN | |||||
| 1260 | 710269109699739648 | 2016-03-17 00:58:46 | The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 | 13 | 10 | None | |||||
| 1261 | 710153181850935296 | 2016-03-16 17:18:07 | This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I | 11 | 10 | Lacy | |||||
| 1262 | 710140971284037632 | 2016-03-16 16:29:35 | This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 | 8 | 10 | Tater | |||||
| 1263 | 710117014656950272 | 2016-03-16 14:54:24 | This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV | 11 | 10 | None | pupper | pupper | |||
| 1264 | 709918798883774466 | 2016-03-16 01:46:45 | Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG | 12 | 10 | Watson | |||||
| 1265 | 709901256215666688 | 2016-03-16 00:37:03 | WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r | 12 | 10 | None | |||||
| 1266 | 709852847387627521 | 2016-03-15 21:24:41 | *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow | 12 | 10 | None | |||||
| 1267 | 709566166965075968 | 2016-03-15 02:25:31 | This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 | 12 | 10 | Olaf | |||||
| 1268 | 709556954897764353 | 2016-03-15 01:48:55 | This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC | 12 | 10 | Cecil | |||||
| 1269 | 709519240576036864 | 2016-03-14 23:19:03 | This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 | 9 | 10 | Vince | |||||
| 1270 | 709449600415961088 | 2016-03-14 18:42:20 | Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo | 10 | 10 | Karma | |||||
| 1271 | 709409458133323776 | 2016-03-14 16:02:49 | This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A | 8 | 10 | Billy | |||||
| 1272 | 709225125749587968 | 2016-03-14 03:50:21 | This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn | 11 | 10 | Walker | |||||
| 1273 | 709207347839836162 | 2016-03-14 02:39:42 | This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg | 11 | 10 | Penny | |||||
| 1274 | 709198395643068416 | 2016-03-14 02:04:08 | From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK | 9 | 10 | None | |||||
| 1275 | 709179584944730112 | 2016-03-14 00:49:23 | This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF | 13 | 10 | Sammy | |||||
| 1276 | 709158332880297985 | 2016-03-13 23:24:56 | Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR | 10 | 10 | Rodney | |||||
| 1277 | 709042156699303936 | 2016-03-13 15:43:18 | This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd | 9 | 10 | Klevin | |||||
| 1278 | 708853462201716736 | 2016-03-13 03:13:29 | This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 | 8 | 10 | Lucy | |||||
| 1279 | 708845821941387268 | 2016-03-13 02:43:08 | Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI | 9 | 10 | None | pupper | pupper | |||
| 1280 | 708834316713893888 | 2016-03-13 01:57:25 | Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn | 10 | 10 | Malikai | |||||
| 1281 | 708810915978854401 | 2016-03-13 00:24:26 | This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 | 10 | 10 | Mister | |||||
| 1282 | 708738143638450176 | 2016-03-12 19:35:15 | This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD | 11 | 10 | Coco | |||||
| 1283 | 708711088997666817 | 2016-03-12 17:47:45 | This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ | 11 | 10 | Smokey | |||||
| 1284 | 708479650088034305 | 2016-03-12 02:28:06 | Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W | 13 | 10 | Bear | |||||
| 1285 | 708469915515297792 | 2016-03-12 01:49:25 | This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk | 11 | 10 | Bobble | |||||
| 1286 | 708400866336894977 | 2016-03-11 21:15:02 | RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY | 12 | 10 | None | |||||
| 1287 | 708356463048204288 | 2016-03-11 18:18:36 | This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX | 10 | 10 | Oliver | |||||
| 1288 | 708349470027751425 | 2016-03-11 17:50:48 | This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd | 11 | 10 | River | |||||
| 1289 | 708149363256774660 | 2016-03-11 04:35:39 | This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF | 10 | 10 | Jebberson | |||||
| 1290 | 708130923141795840 | 2016-03-11 03:22:23 | Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT | 11 | 10 | None | |||||
| 1291 | 708119489313951744 | 2016-03-11 02:36:57 | This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm | 9 | 10 | Cooper | |||||
| 1292 | 708109389455101952 | 2016-03-11 01:56:49 | This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ | 10 | 10 | Remington | |||||
| 1293 | 708026248782585858 | 2016-03-10 20:26:26 | Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U | 13 | 10 | None | |||||
| 1294 | 707995814724026368 | 2016-03-10 18:25:30 | This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq | 12 | 10 | Farfle | |||||
| 1295 | 707983188426153984 | 2016-03-10 17:35:20 | @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) | 12 | 10 | None | |||||
| 1296 | 707969809498152960 | 2016-03-10 16:42:10 | Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm | 11 | 10 | Rufus | |||||
| 1297 | 707776935007539200 | 2016-03-10 03:55:45 | This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B | 11 | 10 | Sadie | |||||
| 1298 | 707741517457260545 | 2016-03-10 01:35:01 | When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR | 10 | 10 | None | |||||
| 1299 | 707738799544082433 | 2016-03-10 01:24:13 | He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN | 12 | 10 | None | |||||
| 1300 | 707693576495472641 | 2016-03-09 22:24:31 | This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi | 7 | 10 | Jiminus | |||||
| 1301 | 707629649552134146 | 2016-03-09 18:10:30 | We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh | 10 | 10 | None | |||||
| 1302 | 707610948723478529 | 2016-03-09 16:56:11 | This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 | 12 | 10 | Harper | |||||
| 1303 | 707420581654872064 | 2016-03-09 04:19:44 | This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 | 4 | 10 | Keurig | |||||
| 1304 | 707411934438625280 | 2016-03-09 03:45:22 | "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 | 11 | 10 | None | pupper | pupper | |||
| 1305 | 707387676719185920 | 2016-03-09 02:08:59 | Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E | 10 | 10 | Clarkus | |||||
| 1306 | 707377100785885184 | 2016-03-09 01:26:57 | This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j | 9 | 10 | None | |||||
| 1307 | 707315916783140866 | 2016-03-08 21:23:50 | This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 | 10 | 10 | Finnegus | pupper | pupper | |||
| 1308 | 707297311098011648 | 2016-03-08 20:09:54 | This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK | 10 | 10 | Cassie | |||||
| 1309 | 707059547140169728 | 2016-03-08 04:25:07 | Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL | 11 | 10 | Cupcake | |||||
| 1310 | 707038192327901184 | 2016-03-08 03:00:15 | This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj | 10 | 10 | Kathmandu | |||||
| 1311 | 707021089608753152 | 2016-03-08 01:52:18 | This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 | 12 | 10 | Tucker | |||||
| 1312 | 707014260413456384 | 2016-03-08 01:25:10 | This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU | 11 | 10 | Ellie | |||||
| 1313 | 706904523814649856 | 2016-03-07 18:09:06 | Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f | 13 | 10 | None | |||||
| 1314 | 706901761596989440 | 2016-03-07 17:58:08 | This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu | 3 | 10 | Elliot | |||||
| 1315 | 706681918348251136 | 2016-03-07 03:24:33 | Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv | 12 | 10 | Katie | |||||
| 1316 | 706644897839910912 | 2016-03-07 00:57:27 | Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw | 9 | 10 | Shadow | |||||
| 1317 | 706593038911545345 | 2016-03-06 21:31:22 | Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX | 10 | 10 | None | |||||
| 1318 | 706538006853918722 | 2016-03-06 17:52:42 | This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd | 11 | 10 | Oliver | |||||
| 1319 | 706516534877929472 | 2016-03-06 16:27:23 | Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp | 12 | 10 | None | |||||
| 1320 | 706346369204748288 | 2016-03-06 05:11:12 | This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 | 12 | 10 | Koda | |||||
| 1321 | 706310011488698368 | 2016-03-06 02:46:44 | Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf | 12 | 10 | None | pupper | pupper | |||
| 1322 | 706291001778950144 | 2016-03-06 01:31:11 | When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg | 11 | 10 | None | |||||
| 1323 | 706265994973601792 | 2016-03-05 23:51:49 | This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV | 11 | 10 | Kara | |||||
| 1324 | 706169069255446529 | 2016-03-05 17:26:40 | He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR | 12 | 10 | None | |||||
| 1325 | 706166467411222528 | 2016-03-05 17:16:20 | This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv | 7 | 10 | Dexter | |||||
| 1326 | 706153300320784384 | 2016-03-05 16:24:01 | This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 | 13 | 10 | Layla | |||||
| 1327 | 705975130514706432 | 2016-03-05 04:36:02 | This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO | 10 | 10 | Adele | pupper | pupper | |||
| 1328 | 705970349788291072 | 2016-03-05 04:17:02 | This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI | 12 | 10 | Lucy | |||||
| 1329 | 705898680587526145 | 2016-03-04 23:32:15 | Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs | 10 | 10 | Max | |||||
| 1330 | 705786532653883392 | 2016-03-04 16:06:36 | Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR | 11 | 10 | None | pupper | pupper | |||
| 1331 | 705591895322394625 | 2016-03-04 03:13:11 | "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF | 11 | 10 | None | |||||
| 1332 | 705475953783398401 | 2016-03-03 19:32:29 | Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n | 12 | 10 | Zara | |||||
| 1333 | 705442520700944385 | 2016-03-03 17:19:38 | This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 | 12 | 10 | Cooper | |||||
| 1334 | 705428427625635840 | 2016-03-03 16:23:38 | This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA | 11 | 10 | Ambrose | pupper | pupper | |||
| 1335 | 705239209544720384 | 2016-03-03 03:51:44 | This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE | 11 | 10 | Jimothy | |||||
| 1336 | 705223444686888960 | 2016-03-03 02:49:06 | This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv | 9 | 10 | Bode | |||||
| 1337 | 705102439679201280 | 2016-03-02 18:48:16 | This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z | 10 | 10 | Terrenth | |||||
| 1338 | 705066031337840642 | 2016-03-02 16:23:36 | This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW | 12 | 10 | Reese | |||||
| 1339 | 704871453724954624 | 2016-03-02 03:30:25 | I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU | 12 | 10 | None | |||||
| 1340 | 704859558691414016 | 2016-03-02 02:43:09 | Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu | 10 | 10 | NaN | pupper | pupper | |||
| 1341 | 704847917308362754 | 2016-03-02 01:56:53 | "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq | 12 | 10 | None | |||||
| 1342 | 704819833553219584 | 2016-03-02 00:05:17 | This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW | 7 | 10 | Chesterson | |||||
| 1343 | 704761120771465216 | 2016-03-01 20:11:59 | This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 | 13 | 10 | None | pupper | pupper | |||
| 1344 | 704499785726889984 | 2016-03-01 02:53:32 | When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc | 12 | 10 | None | |||||
| 1345 | 704491224099647488 | 2016-03-01 02:19:31 | 13/10 hero af\n@ABC | 13 | 10 | None | |||||
| 1346 | 704480331685040129 | 2016-03-01 01:36:14 | Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe | 11 | 10 | Lucia | |||||
| 1347 | 704364645503647744 | 2016-02-29 17:56:32 | Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K | 12 | 10 | Bisquick | |||||
| 1348 | 704347321748819968 | 2016-02-29 16:47:42 | This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ | 10 | 10 | Ralphson | pupper | pupper | |||
| 1349 | 704134088924532736 | 2016-02-29 02:40:23 | This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j | 12 | 10 | None | pupper | pupper | |||
| 1350 | 704113298707505153 | 2016-02-29 01:17:46 | Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 | 8 | 10 | Stanley | |||||
| 1351 | 704054845121142784 | 2016-02-28 21:25:30 | Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa | 12 | 10 | NaN | |||||
| 1352 | 703774238772166656 | 2016-02-28 02:50:28 | "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG | 10 | 10 | None | |||||
| 1353 | 703769065844768768 | 2016-02-28 02:29:55 | When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT | 10 | 10 | None | |||||
| 1354 | 703631701117943808 | 2016-02-27 17:24:05 | This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp | 11 | 10 | Bella | |||||
| 1355 | 703611486317502464 | 2016-02-27 16:03:45 | Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW | 10 | 10 | Scooter | pupper | pupper | |||
| 1356 | 703425003149250560 | 2016-02-27 03:42:44 | Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC | 9 | 10 | None | |||||
| 1357 | 703407252292673536 | 2016-02-27 02:32:12 | This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ | 10 | 10 | None | pupper | pupper | |||
| 1358 | 703382836347330562 | 2016-02-27 00:55:11 | This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt | 12 | 10 | Charlie | |||||
| 1359 | 703356393781329922 | 2016-02-26 23:10:06 | This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf | 9 | 10 | Socks | |||||
| 1360 | 703268521220972544 | 2016-02-26 17:20:56 | Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY | 12 | 10 | None | pupper | pupper | |||
| 1361 | 703079050210877440 | 2016-02-26 04:48:02 | This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW | 11 | 10 | NaN | |||||
| 1362 | 703041949650034688 | 2016-02-26 02:20:37 | This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR | 10 | 10 | NaN | |||||
| 1363 | 702932127499816960 | 2016-02-25 19:04:13 | This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV | 6 | 10 | Chip | |||||
| 1364 | 702899151802126337 | 2016-02-25 16:53:11 | Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw | 12 | 10 | Luna | |||||
| 1365 | 702684942141153280 | 2016-02-25 02:42:00 | This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO | 11 | 10 | Lucy | |||||
| 1366 | 702671118226825216 | 2016-02-25 01:47:04 | Meet Rambo & Kiwi. Rambo's the pup with the sharp toes & rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ | 10 | 10 | Rambo | |||||
| 1367 | 702598099714314240 | 2016-02-24 20:56:55 | This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s | 11 | 10 | Sansa | pupper | pupper | |||
| 1368 | 702539513671897089 | 2016-02-24 17:04:07 | This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 | 12 | 10 | NaN | |||||
| 1369 | 702332542343577600 | 2016-02-24 03:21:41 | This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd | 13 | 10 | Rudy | |||||
| 1370 | 702321140488925184 | 2016-02-24 02:36:23 | Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 | 12 | 10 | None | |||||
| 1371 | 702276748847800320 | 2016-02-23 23:39:59 | "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI | 11 | 10 | None | |||||
| 1372 | 702217446468493312 | 2016-02-23 19:44:20 | I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY | 9 | 10 | None | |||||
| 1373 | 701981390485725185 | 2016-02-23 04:06:20 | This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY | 12 | 10 | Fiji | |||||
| 1374 | 701952816642965504 | 2016-02-23 02:12:47 | Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX | 11 | 10 | Rilo | |||||
| 1375 | 701889187134500865 | 2016-02-22 21:59:57 | This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ | 11 | 10 | Bilbo | |||||
| 1376 | 701805642395348998 | 2016-02-22 16:27:58 | Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr | 11 | 10 | None | pupper | pupper | |||
| 1377 | 701601587219795968 | 2016-02-22 02:57:08 | This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA | 10 | 10 | Coopson | |||||
| 1378 | 701570477911896070 | 2016-02-22 00:53:31 | This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx | 9 | 10 | Yoda | |||||
| 1379 | 701545186879471618 | 2016-02-21 23:13:01 | Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M | 10 | 10 | Millie | pupper | pupper | |||
| 1380 | 701214700881756160 | 2016-02-21 01:19:47 | I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL | 12 | 10 | None | |||||
| 1381 | 700890391244103680 | 2016-02-20 03:51:05 | This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ | 11 | 10 | Chet | |||||
| 1382 | 700864154249383937 | 2016-02-20 02:06:50 | "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW | 12 | 10 | NaN | pupper | pupper | |||
| 1383 | 700847567345688576 | 2016-02-20 01:00:55 | Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 | 10 | 10 | Crouton | |||||
| 1384 | 700796979434098688 | 2016-02-19 21:39:54 | This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr | 7 | 10 | Daniel | |||||
| 1385 | 700747788515020802 | 2016-02-19 18:24:26 | We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU | 11 | 10 | NaN | |||||
| 1386 | 700518061187723268 | 2016-02-19 03:11:35 | This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD | 10 | 10 | Vincent | |||||
| 1387 | 700505138482569216 | 2016-02-19 02:20:14 | This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq | 12 | 10 | Kaia | |||||
| 1388 | 700462010979500032 | 2016-02-18 23:28:52 | This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn | 6 | 10 | Murphy | |||||
| 1389 | 700167517596164096 | 2016-02-18 03:58:39 | This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s | 10 | 10 | Dotsy | |||||
| 1390 | 700151421916807169 | 2016-02-18 02:54:41 | If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n | 11 | 10 | None | pupper | pupper | |||
| 1391 | 700143752053182464 | 2016-02-18 02:24:13 | When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ | 10 | 10 | None | pupper | pupper | |||
| 1392 | 700062718104104960 | 2016-02-17 21:02:13 | This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE | 6 | 10 | Eazy | |||||
| 1393 | 700029284593901568 | 2016-02-17 18:49:22 | This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 | 10 | 10 | Coops | |||||
| 1394 | 700002074055016451 | 2016-02-17 17:01:14 | This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 | 9 | 10 | Thumas | |||||
| 1395 | 699801817392291840 | 2016-02-17 03:45:29 | This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 | 11 | 10 | Cooper | pupper | pupper | |||
| 1396 | 699788877217865730 | 2016-02-17 02:54:04 | Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp | 12 | 10 | Nala | |||||
| 1397 | 699779630832685056 | 2016-02-17 02:17:19 | Take all my money. 10/10 https://t.co/B28ebc5LzQ | 10 | 10 | None | |||||
| 1398 | 699775878809702401 | 2016-02-17 02:02:25 | Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD | 11 | 10 | Fillup | |||||
| 1399 | 699691744225525762 | 2016-02-16 20:28:06 | This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 | 5 | 10 | Dave | |||||
| 1400 | 699446877801091073 | 2016-02-16 04:15:05 | This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx | 12 | 10 | Archie | |||||
| 1401 | 699434518667751424 | 2016-02-16 03:25:58 | I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi | 12 | 10 | None | pupper | pupper | |||
| 1402 | 699423671849451520 | 2016-02-16 02:42:52 | "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE | 10 | 10 | None | |||||
| 1403 | 699413908797464576 | 2016-02-16 02:04:04 | Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS | 11 | 10 | Miley | |||||
| 1404 | 699370870310113280 | 2016-02-15 23:13:03 | Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur | 11 | 10 | Calbert | |||||
| 1405 | 699323444782047232 | 2016-02-15 20:04:36 | "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z | 10 | 10 | None | |||||
| 1406 | 699088579889332224 | 2016-02-15 04:31:20 | This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 | 3 | 10 | Charl | |||||
| 1407 | 699079609774645248 | 2016-02-15 03:55:41 | Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL | 8 | 10 | Reagan | |||||
| 1408 | 699072405256409088 | 2016-02-15 03:27:04 | ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac | 12 | 10 | None | |||||
| 1409 | 699060279947165696 | 2016-02-15 02:38:53 | This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il | 12 | 10 | Yukon | |||||
| 1410 | 699036661657767936 | 2016-02-15 01:05:02 | HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe | 13 | 10 | None | pupper | pupper | |||
| 1411 | 698989035503689728 | 2016-02-14 21:55:47 | This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 | 13 | 10 | Oliver | |||||
| 1412 | 698953797952008193 | 2016-02-14 19:35:46 | Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 | 11 | 10 | CeCe | |||||
| 1413 | 698907974262222848 | 2016-02-14 16:33:40 | This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu | 10 | 10 | None | |||||
| 1414 | 698710712454139905 | 2016-02-14 03:29:49 | This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z | 10 | 10 | Cuddles | |||||
| 1415 | 698703483621523456 | 2016-02-14 03:01:06 | This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp | 7 | 10 | Rusty | |||||
| 1416 | 698635131305795584 | 2016-02-13 22:29:29 | Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F | 12 | 10 | None | |||||
| 1417 | 698549713696649216 | 2016-02-13 16:50:04 | This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG | 9 | 10 | Claude | |||||
| 1418 | 698355670425473025 | 2016-02-13 03:59:01 | This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk | 10 | 10 | Jessiga | |||||
| 1419 | 698342080612007937 | 2016-02-13 03:05:01 | This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp | 11 | 10 | Maximus | |||||
| 1420 | 698262614669991936 | 2016-02-12 21:49:15 | This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD | 11 | 10 | Franklin | |||||
| 1421 | 698195409219559425 | 2016-02-12 17:22:12 | Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk | 9 | 10 | Beau | |||||
| 1422 | 698178924120031232 | 2016-02-12 16:16:41 | This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK | 10 | 10 | Lily | |||||
| 1423 | 697995514407682048 | 2016-02-12 04:07:53 | "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ | 11 | 10 | None | |||||
| 1424 | 697990423684476929 | 2016-02-12 03:47:39 | This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv | 11 | 10 | Doug | |||||
| 1425 | 697943111201378304 | 2016-02-12 00:39:39 | This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO | 10 | 10 | Cassie | |||||
| 1426 | 697881462549430272 | 2016-02-11 20:34:41 | This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 | 10 | 10 | Carter | |||||
| 1427 | 697630435728322560 | 2016-02-11 03:57:11 | Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP | 8 | 10 | None | |||||
| 1428 | 697616773278015490 | 2016-02-11 03:02:54 | This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn | 11 | 10 | None | pupper | pupper | |||
| 1429 | 697596423848730625 | 2016-02-11 01:42:02 | Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z | 11 | 10 | None | pupper | pupper | |||
| 1430 | 697575480820686848 | 2016-02-11 00:18:49 | This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ | 8 | 10 | Ole | |||||
| 1431 | 697516214579523584 | 2016-02-10 20:23:19 | Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT | 9 | 10 | Pherb | |||||
| 1432 | 697482927769255936 | 2016-02-10 18:11:03 | Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr | 11 | 10 | Blipson | |||||
| 1433 | 697463031882764288 | 2016-02-10 16:51:59 | Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ | 11 | 10 | None | |||||
| 1434 | 697270446429966336 | 2016-02-10 04:06:43 | This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS | 10 | 10 | Bentley | |||||
| 1435 | 697259378236399616 | 2016-02-10 03:22:44 | Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 | 8 | 10 | NaN | |||||
| 1436 | 697255105972801536 | 2016-02-10 03:05:46 | Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP | 10 | 10 | Charlie | |||||
| 1437 | 697242256848379904 | 2016-02-10 02:14:42 | This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN | 10 | 10 | Oakley | |||||
| 1438 | 696900204696625153 | 2016-02-09 03:35:31 | This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i | 12 | 10 | Rosie | |||||
| 1439 | 696894894812565505 | 2016-02-09 03:14:25 | These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z | 9 | 10 | None | |||||
| 1440 | 696886256886657024 | 2016-02-09 02:40:05 | Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ | 12 | 10 | None | |||||
| 1441 | 696877980375769088 | 2016-02-09 02:07:12 | This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF | 9 | 10 | Misty | pupper | pupper | |||
| 1442 | 696754882863349760 | 2016-02-08 17:58:03 | This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp | 10 | 10 | Reptar | |||||
| 1443 | 696744641916489729 | 2016-02-08 17:17:22 | This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 | 10 | 10 | Klevin | |||||
| 1444 | 696713835009417216 | 2016-02-08 15:14:57 | This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 | 9 | 10 | Trevith | pupper | pupper | |||
| 1445 | 696518437233913856 | 2016-02-08 02:18:30 | Oh my god 10/10 for every little hot dog pupper | 10 | 10 | None | pupper | pupper | |||
| 1446 | 696490539101908992 | 2016-02-08 00:27:39 | After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me | 1 | 10 | None | |||||
| 1447 | 696488710901260288 | 2016-02-08 00:20:23 | 12/10 revolutionary af https://t.co/zKzq4nIY86 | 12 | 10 | None | |||||
| 1448 | 696405997980676096 | 2016-02-07 18:51:43 | This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ | 7 | 10 | Berb | |||||
| 1449 | 696100768806522880 | 2016-02-06 22:38:50 | This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx | 10 | 10 | None | pupper | pupper | |||
| 1450 | 695816827381944320 | 2016-02-06 03:50:33 | Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h | 11 | 10 | None | |||||
| 1451 | 695794761660297217 | 2016-02-06 02:22:53 | This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd | 13 | 10 | Wyatt | |||||
| 1452 | 695767669421768709 | 2016-02-06 00:35:13 | If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG | 13 | 10 | None | |||||
| 1453 | 695629776980148225 | 2016-02-05 15:27:17 | Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS | 8 | 10 | Calvin | |||||
| 1454 | 695446424020918272 | 2016-02-05 03:18:42 | We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T | 12 | 10 | None | |||||
| 1455 | 695409464418041856 | 2016-02-05 00:51:51 | This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV | 10 | 10 | Bob | |||||
| 1456 | 695314793360662529 | 2016-02-04 18:35:39 | This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 | 10 | 10 | Colin | |||||
| 1457 | 695095422348574720 | 2016-02-04 04:03:57 | This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib | 12 | 10 | NaN | pupper | pupper | |||
| 1458 | 695074328191332352 | 2016-02-04 02:40:08 | This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ | 11 | 10 | Lorenzo | pupper | pupper | |||
| 1459 | 695064344191721472 | 2016-02-04 02:00:27 | This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P | 4 | 10 | None | |||||
| 1460 | 695051054296211456 | 2016-02-04 01:07:39 | Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi | 6 | 10 | Brian | |||||
| 1461 | 694925794720792577 | 2016-02-03 16:49:55 | Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 | 5 | 10 | None | |||||
| 1462 | 694905863685980160 | 2016-02-03 15:30:43 | This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ | 10 | 10 | Archie | |||||
| 1463 | 694669722378485760 | 2016-02-02 23:52:22 | This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 | 12 | 10 | Phil | |||||
| 1464 | 694356675654983680 | 2016-02-02 03:08:26 | This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG | 10 | 10 | None | pupper | pupper | |||
| 1465 | 694352839993344000 | 2016-02-02 02:53:12 | Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random & can't bark for shit. 10/10 & 5/10 https://t.co/6NgsQJuSBJ | 10 | 10 | Oliviér | |||||
| 1466 | 694342028726001664 | 2016-02-02 02:10:14 | It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb | 11 | 10 | None | |||||
| 1467 | 694329668942569472 | 2016-02-02 01:21:07 | Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn | 9 | 10 | Grady | pupper | pupper | |||
| 1468 | 694206574471057408 | 2016-02-01 17:11:59 | "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI | 10 | 10 | None | |||||
| 1469 | 694183373896572928 | 2016-02-01 15:39:48 | This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD | 9 | 10 | Lola | |||||
| 1470 | 694001791655137281 | 2016-02-01 03:38:15 | This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT | 11 | 10 | Chester | |||||
| 1471 | 693993230313091072 | 2016-02-01 03:04:14 | These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H | 12 | 10 | None | |||||
| 1472 | 693942351086120961 | 2016-01-31 23:42:03 | This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M | 10 | 10 | Kobe | |||||
| 1473 | 693647888581312512 | 2016-01-31 04:11:58 | What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw | 7 | 10 | None | |||||
| 1474 | 693644216740769793 | 2016-01-31 03:57:23 | BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af | 10 | 10 | None | |||||
| 1475 | 693642232151285760 | 2016-01-31 03:49:30 | Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a | 9 | 10 | Freddery | |||||
| 1476 | 693629975228977152 | 2016-01-31 03:00:47 | This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ | 12 | 10 | None | pupper | pupper | |||
| 1477 | 693622659251335168 | 2016-01-31 02:31:43 | When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X | 10 | 10 | None | |||||
| 1478 | 693590843962331137 | 2016-01-31 00:25:18 | Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx | 3 | 10 | Phil | pupper | pupper | |||
| 1479 | 693582294167244802 | 2016-01-30 23:51:19 | Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI | 11 | 10 | None | |||||
| 1480 | 693486665285931008 | 2016-01-30 17:31:20 | This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 | 11 | 10 | Lincoln | |||||
| 1481 | 693280720173801472 | 2016-01-30 03:52:58 | This is Sadie and her 2 pups Shebang & Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne | 10 | 10 | Sadie | |||||
| 1482 | 693267061318012928 | 2016-01-30 02:58:42 | This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM | 12 | 10 | Oscar | |||||
| 1483 | 693262851218264065 | 2016-01-30 02:41:58 | I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR | 11 | 10 | None | pupper | pupper | |||
| 1484 | 693231807727280129 | 2016-01-30 00:38:37 | This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP | 9 | 10 | Bodie | |||||
| 1485 | 693155686491000832 | 2016-01-29 19:36:08 | This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U | 12 | 10 | Dunkin | |||||
| 1486 | 693109034023534592 | 2016-01-29 16:30:45 | "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM | 11 | 10 | None | |||||
| 1487 | 693095443459342336 | 2016-01-29 15:36:45 | This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW | 10 | 10 | Milo | pupper | pupper | |||
| 1488 | 692919143163629568 | 2016-01-29 03:56:12 | Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy | 9 | 10 | None | |||||
| 1489 | 692905862751522816 | 2016-01-29 03:03:25 | This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn | 10 | 10 | Wally | pupper | pupper | |||
| 1490 | 692901601640583168 | 2016-01-29 02:46:29 | "Fuck the system" 10/10 https://t.co/N0OADmCnVV | 10 | 10 | None | |||||
| 1491 | 692894228850999298 | 2016-01-29 02:17:12 | Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW | 10 | 10 | Tupawc | |||||
| 1492 | 692828166163931137 | 2016-01-28 21:54:41 | This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS | 12 | 10 | None | pupper | pupper | |||
| 1493 | 692752401762250755 | 2016-01-28 16:53:37 | "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu | 13 | 10 | None | pupper | pupper | |||
| 1494 | 692568918515392513 | 2016-01-28 04:44:32 | This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B | 12 | 10 | Chester | |||||
| 1495 | 692535307825213440 | 2016-01-28 02:30:58 | This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI | 10 | 10 | Amber | |||||
| 1496 | 692530551048294401 | 2016-01-28 02:12:04 | Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu | 10 | 10 | Cody | |||||
| 1497 | 692423280028966913 | 2016-01-27 19:05:49 | PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 | 9 | 10 | None | |||||
| 1498 | 692417313023332352 | 2016-01-27 18:42:06 | Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 | 7 | 10 | Herschel | pupper | pupper | |||
| 1499 | 692187005137076224 | 2016-01-27 03:26:56 | This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N | 12 | 10 | NaN | |||||
| 1500 | 692158366030913536 | 2016-01-27 01:33:08 | This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB | 10 | 10 | Edgar | |||||
| 1501 | 692142790915014657 | 2016-01-27 00:31:15 | These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ | 13 | 10 | None | |||||
| 1502 | 692041934689402880 | 2016-01-26 17:50:29 | This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y | 13 | 10 | Teddy | |||||
| 1503 | 692017291282812928 | 2016-01-26 16:12:33 | This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 | 9 | 10 | Kingsley | |||||
| 1504 | 691820333922455552 | 2016-01-26 03:09:55 | This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z | 8 | 10 | Brockly | |||||
| 1505 | 691793053716221953 | 2016-01-26 01:21:31 | We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo | 10 | 10 | None | |||||
| 1506 | 691756958957883396 | 2016-01-25 22:58:05 | THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J | 10 | 10 | None | |||||
| 1507 | 691675652215414786 | 2016-01-25 17:35:00 | This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV | 10 | 10 | Richie | |||||
| 1508 | 691483041324204033 | 2016-01-25 04:49:38 | When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup https://t.co/aenk0KpoWM | 5 | 10 | None | |||||
| 1509 | 691459709405118465 | 2016-01-25 03:16:56 | Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH | 12 | 10 | Leo | |||||
| 1510 | 691444869282295808 | 2016-01-25 02:17:57 | This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV | 12 | 10 | Bailey | |||||
| 1511 | 691416866452082688 | 2016-01-25 00:26:41 | I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k | 13 | 10 | None | |||||
| 1512 | 691321916024623104 | 2016-01-24 18:09:23 | This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab | 11 | 10 | Molly | |||||
| 1513 | 691096613310316544 | 2016-01-24 03:14:07 | Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW | 11 | 10 | None | |||||
| 1514 | 691090071332753408 | 2016-01-24 02:48:07 | Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY | 12 | 10 | None | |||||
| 1515 | 690989312272396288 | 2016-01-23 20:07:44 | We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e | 12 | 10 | None | |||||
| 1516 | 690959652130045952 | 2016-01-23 18:09:53 | This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E | 11 | 10 | None | |||||
| 1517 | 690938899477221376 | 2016-01-23 16:47:25 | She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX | 10 | 10 | None | |||||
| 1518 | 690932576555528194 | 2016-01-23 16:22:17 | This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS | 12 | 10 | Buddy | |||||
| 1519 | 690735892932222976 | 2016-01-23 03:20:44 | Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt | 13 | 10 | Peaches | |||||
| 1520 | 690728923253055490 | 2016-01-23 02:53:03 | This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u | 8 | 10 | Vinscent | |||||
| 1521 | 690690673629138944 | 2016-01-23 00:21:03 | This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod | 10 | 10 | Cedrick | |||||
| 1522 | 690649993829576704 | 2016-01-22 21:39:24 | This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP | 11 | 10 | Hazel | |||||
| 1523 | 690607260360429569 | 2016-01-22 18:49:36 | 12/10 @LightningHoltt | 12 | 10 | None | |||||
| 1524 | 690597161306841088 | 2016-01-22 18:09:28 | This is Lolo. She's America af. Behind in science & math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA | 11 | 10 | Lolo | |||||
| 1525 | 690400367696297985 | 2016-01-22 05:07:29 | This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf | 10 | 10 | Eriq | |||||
| 1526 | 690374419777196032 | 2016-01-22 03:24:22 | This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C | 11 | 10 | Phred | |||||
| 1527 | 690360449368465409 | 2016-01-22 02:28:52 | Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx | 9 | 10 | NaN | |||||
| 1528 | 690348396616552449 | 2016-01-22 01:40:58 | This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL | 12 | 10 | Oddie | |||||
| 1529 | 690248561355657216 | 2016-01-21 19:04:15 | This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 | 11 | 10 | Maxwell | |||||
| 1530 | 690021994562220032 | 2016-01-21 04:03:58 | Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC | 10 | 10 | Geoff | |||||
| 1531 | 690015576308211712 | 2016-01-21 03:38:27 | This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg | 12 | 10 | None | pupper | pupper | |||
| 1532 | 690005060500217858 | 2016-01-21 02:56:40 | "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt | 10 | 10 | None | |||||
| 1533 | 689999384604450816 | 2016-01-21 02:34:07 | This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt | 10 | 10 | Covach | |||||
| 1534 | 689993469801164801 | 2016-01-21 02:10:37 | Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm | 12 | 10 | None | floofer | floofer | |||
| 1535 | 689977555533848577 | 2016-01-21 01:07:23 | Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf | 12 | 10 | None | |||||
| 1536 | 689905486972461056 | 2016-01-20 20:21:00 | Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY | 11 | 10 | Gizmo | pupper | pupper | |||
| 1537 | 689877686181715968 | 2016-01-20 18:30:32 | This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe | 9 | 10 | Durg | |||||
| 1538 | 689835978131935233 | 2016-01-20 15:44:48 | Meet Fynn & Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 & 10/10 https://t.co/MuqHPvtL8c | 11 | 10 | Fynn | |||||
| 1539 | 689661964914655233 | 2016-01-20 04:13:20 | Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV | 12 | 10 | Luca | |||||
| 1540 | 689659372465688576 | 2016-01-20 04:03:02 | This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF | 8 | 10 | Ricky | |||||
| 1541 | 689623661272240129 | 2016-01-20 01:41:08 | This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n | 10 | 10 | Lucy | pupper | pupper | |||
| 1542 | 689599056876867584 | 2016-01-20 00:03:21 | Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd | 11 | 10 | None | |||||
| 1543 | 689557536375177216 | 2016-01-19 21:18:22 | Downright majestic af 12/10 https://t.co/WFh2FEbYzj | 12 | 10 | None | |||||
| 1544 | 689517482558820352 | 2016-01-19 18:39:13 | This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm | 12 | 10 | Carl | |||||
| 1545 | 689289219123089408 | 2016-01-19 03:32:10 | Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 | 13 | 10 | None | |||||
| 1546 | 689283819090870273 | 2016-01-19 03:10:43 | Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J | 9 | 10 | Chipson | |||||
| 1547 | 689280876073582592 | 2016-01-19 02:59:01 | This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS | 10 | 10 | Herald | |||||
| 1548 | 689275259254616065 | 2016-01-19 02:36:42 | Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl | 10 | 10 | Lucky | |||||
| 1549 | 689255633275777024 | 2016-01-19 01:18:43 | This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 | 10 | 10 | Ferg | |||||
| 1550 | 689154315265683456 | 2016-01-18 18:36:07 | We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N | 9 | 10 | None | |||||
| 1551 | 689143371370250240 | 2016-01-18 17:52:38 | Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv | 10 | 10 | Trip | pupper | pupper | |||
| 1552 | 688916208532455424 | 2016-01-18 02:49:58 | This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x | 11 | 10 | None | pupper | pupper | |||
| 1553 | 688908934925697024 | 2016-01-18 02:21:04 | Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH | 8 | 10 | Clarence | |||||
| 1554 | 688898160958271489 | 2016-01-18 01:38:15 | When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx | 10 | 10 | None | |||||
| 1555 | 688894073864884227 | 2016-01-18 01:22:00 | This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI | 7 | 10 | Hamrick | pupper | pupper | |||
| 1556 | 688828561667567616 | 2016-01-17 21:01:41 | Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr | 9 | 10 | Brad | |||||
| 1557 | 688804835492233216 | 2016-01-17 19:27:24 | When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 | 12 | 10 | None | |||||
| 1558 | 688789766343622656 | 2016-01-17 18:27:32 | Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG | 8 | 10 | Pubert | |||||
| 1559 | 688547210804498433 | 2016-01-17 02:23:42 | This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ | 9 | 10 | Frönq | |||||
| 1560 | 688519176466644993 | 2016-01-17 00:32:18 | This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 | 12 | 10 | None | pupper | pupper | |||
| 1561 | 688385280030670848 | 2016-01-16 15:40:14 | This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th | 12 | 10 | Louis | |||||
| 1562 | 688211956440801280 | 2016-01-16 04:11:31 | This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO | 13 | 10 | Derby | |||||
| 1563 | 688179443353796608 | 2016-01-16 02:02:19 | This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om | 10 | 10 | Lizzie | pupper | pupper | |||
| 1564 | 688116655151435777 | 2016-01-15 21:52:49 | Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv | 10 | 10 | None | |||||
| 1565 | 688064179421470721 | 2016-01-15 18:24:18 | This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY | 11 | 10 | Kilo | |||||
| 1566 | 687841446767013888 | 2016-01-15 03:39:15 | 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp | 13 | 10 | None | |||||
| 1567 | 687826841265172480 | 2016-01-15 02:41:12 | This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P | 12 | 10 | Louis | |||||
| 1568 | 687818504314159109 | 2016-01-15 02:08:05 | With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP | 12 | 10 | None | pupper | pupper | |||
| 1569 | 687807801670897665 | 2016-01-15 01:25:33 | Meet Trooper & Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy | 11 | 10 | Trooper | |||||
| 1570 | 687732144991551489 | 2016-01-14 20:24:55 | This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl | 11 | 10 | Ember | |||||
| 1571 | 687704180304273409 | 2016-01-14 18:33:48 | Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt | 9 | 10 | Blakely | pupper | pupper | |||
| 1572 | 687664829264453632 | 2016-01-14 15:57:26 | Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez | 11 | 10 | Opal | |||||
| 1573 | 687494652870668288 | 2016-01-14 04:41:12 | This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c | 7 | 10 | Marq | |||||
| 1574 | 687480748861947905 | 2016-01-14 03:45:57 | Another magnificent photo. 12/10 https://t.co/X5w387K5jr | 12 | 10 | None | |||||
| 1575 | 687476254459715584 | 2016-01-14 03:28:06 | This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj | 11 | 10 | Curtis | pupper | pupper | |||
| 1576 | 687460506001633280 | 2016-01-14 02:25:31 | This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH | 10 | 10 | Kramer | |||||
| 1577 | 687399393394311168 | 2016-01-13 22:22:41 | This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO | 10 | 10 | Barry | |||||
| 1578 | 687317306314240000 | 2016-01-13 16:56:30 | This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz | 11 | 10 | Tyrone | |||||
| 1579 | 687312378585812992 | 2016-01-13 16:36:55 | "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q | 7 | 10 | None | pupper | pupper | |||
| 1580 | 687127927494963200 | 2016-01-13 04:23:58 | Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb | 9 | 10 | Gordon | |||||
| 1581 | 687124485711986689 | 2016-01-13 04:10:18 | Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy | 11 | 10 | Samson | |||||
| 1582 | 687109925361856513 | 2016-01-13 03:12:26 | This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb | 11 | 10 | Baxter | |||||
| 1583 | 687102708889812993 | 2016-01-13 02:43:46 | Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN | 5 | 10 | None | |||||
| 1584 | 687096057537363968 | 2016-01-13 02:17:20 | This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC | 11 | 10 | None | pupper | pupper | |||
| 1585 | 686947101016735744 | 2016-01-12 16:25:26 | This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj | 11 | 10 | Jackson | |||||
| 1586 | 686760001961103360 | 2016-01-12 04:01:58 | This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 | 12 | 10 | None | pupper | pupper | |||
| 1587 | 686749460672679938 | 2016-01-12 03:20:05 | Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V | 8 | 10 | None | |||||
| 1588 | 686730991906516992 | 2016-01-12 02:06:41 | I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU | 12 | 10 | None | |||||
| 1589 | 686683045143953408 | 2016-01-11 22:56:10 | This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz | 11 | 10 | Mona | pupper | pupper | |||
| 1590 | 686618349602762752 | 2016-01-11 18:39:05 | This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc | 11 | 10 | Olivia | pupper | pupper | |||
| 1591 | 686606069955735556 | 2016-01-11 17:50:18 | Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd | 10 | 10 | Horace | |||||
| 1592 | 686394059078897668 | 2016-01-11 03:47:50 | This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB | 12 | 10 | None | |||||
| 1593 | 686386521809772549 | 2016-01-11 03:17:53 | Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey & parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc | 11 | 10 | Crimson | |||||
| 1594 | 686377065986265092 | 2016-01-11 02:40:19 | Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX | 10 | 10 | Birf | pupper | pupper | |||
| 1595 | 686358356425093120 | 2016-01-11 01:25:58 | Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW | 10 | 10 | None | |||||
| 1596 | 686286779679375361 | 2016-01-10 20:41:33 | When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe | 12 | 10 | None | |||||
| 1597 | 686050296934563840 | 2016-01-10 05:01:51 | This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg | 11 | 10 | Flávio | |||||
| 1598 | 686035780142297088 | 2016-01-10 04:04:10 | Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating | 4 | 10 | None | |||||
| 1599 | 686034024800862208 | 2016-01-10 03:57:12 | Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D | 12 | 10 | None | |||||
| 1600 | 686007916130873345 | 2016-01-10 02:13:27 | This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW | 11 | 10 | None | pupper | pupper | |||
| 1601 | 686003207160610816 | 2016-01-10 01:54:44 | This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf | 3 | 10 | Hammond | |||||
| 1602 | 685973236358713344 | 2016-01-09 23:55:38 | This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 | 11 | 10 | Lorelei | |||||
| 1603 | 685943807276412928 | 2016-01-09 21:58:42 | This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn | 8 | 10 | NaN | pupper | pupper | |||
| 1604 | 685906723014619143 | 2016-01-09 19:31:20 | This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF | 9 | 10 | Olive | |||||
| 1605 | 685681090388975616 | 2016-01-09 04:34:45 | Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ | 14 | 10 | None | |||||
| 1606 | 685667379192414208 | 2016-01-09 03:40:16 | This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ | 9 | 10 | Marty | pupper | pupper | |||
| 1607 | 685663452032069632 | 2016-01-09 03:24:40 | Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM | 12 | 10 | Brooks | |||||
| 1608 | 685641971164143616 | 2016-01-09 01:59:19 | This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO | 7 | 10 | Otis | pupper | pupper | |||
| 1609 | 685547936038666240 | 2016-01-08 19:45:39 | Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM | 14 | 10 | None | pupper | pupper | |||
| 1610 | 685532292383666176 | 2016-01-08 18:43:29 | For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG | 9 | 10 | None | |||||
| 1611 | 685325112850124800 | 2016-01-08 05:00:14 | "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw | 10 | 10 | None | |||||
| 1612 | 685321586178670592 | 2016-01-08 04:46:13 | This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu | 10 | 10 | Rocky | |||||
| 1613 | 685315239903100929 | 2016-01-08 04:21:00 | I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo | 11 | 10 | None | |||||
| 1614 | 685307451701334016 | 2016-01-08 03:50:03 | Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF | 11 | 10 | Petrick | floofer | floofer | |||
| 1615 | 685268753634967552 | 2016-01-08 01:16:17 | This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ | 10 | 10 | Hubertson | pupper | pupper | |||
| 1616 | 685198997565345792 | 2016-01-07 20:39:06 | This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo | 11 | 10 | Alfie | |||||
| 1617 | 685169283572338688 | 2016-01-07 18:41:01 | Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud | 11 | 10 | Gerbald | pupper | pupper | |||
| 1618 | 684969860808454144 | 2016-01-07 05:28:35 | For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u | 5 | 10 | None | |||||
| 1619 | 684959798585110529 | 2016-01-07 04:48:36 | This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ | 5 | 10 | Jerry | |||||
| 1620 | 684940049151070208 | 2016-01-07 03:30:07 | This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL | 12 | 10 | Oreo | |||||
| 1621 | 684926975086034944 | 2016-01-07 02:38:10 | Meet Bruiser & Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 | 11 | 10 | Bruiser | |||||
| 1622 | 684914660081053696 | 2016-01-07 01:49:14 | "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a | 12 | 10 | None | |||||
| 1623 | 684902183876321280 | 2016-01-07 00:59:40 | This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR | 11 | 10 | Perry | |||||
| 1624 | 684880619965411328 | 2016-01-06 23:33:58 | Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO | 5 | 10 | None | pupper | pupper | |||
| 1625 | 684830982659280897 | 2016-01-06 20:16:44 | This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p | 13 | 10 | None | pupper | pupper | |||
| 1626 | 684800227459624960 | 2016-01-06 18:14:31 | Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy | 11 | 10 | Theodore | |||||
| 1627 | 684594889858887680 | 2016-01-06 04:38:35 | "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu | 10 | 10 | None | |||||
| 1628 | 684588130326986752 | 2016-01-06 04:11:43 | This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL | 12 | 10 | None | pupper | pupper | |||
| 1629 | 684567543613382656 | 2016-01-06 02:49:55 | This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU | 4 | 10 | Bobby | |||||
| 1630 | 684538444857667585 | 2016-01-06 00:54:18 | After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV | 12 | 10 | None | |||||
| 1631 | 684481074559381504 | 2016-01-05 21:06:19 | Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb | 10 | 10 | Pippa | |||||
| 1632 | 684460069371654144 | 2016-01-05 19:42:51 | This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju | 10 | 10 | Jeph | |||||
| 1633 | 684241637099323392 | 2016-01-05 05:14:53 | This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 | 12 | 10 | Obi | |||||
| 1634 | 684225744407494656 | 2016-01-05 04:11:44 | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 | 11 | 10 | None | |||||
| 1635 | 684222868335505415 | 2016-01-05 04:00:18 | Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 | 11 | 10 | None | |||||
| 1636 | 684200372118904832 | 2016-01-05 02:30:55 | Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh | 6 | 10 | None | |||||
| 1637 | 684195085588783105 | 2016-01-05 02:09:54 | This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 | 9 | 10 | Tino | |||||
| 1638 | 684188786104872960 | 2016-01-05 01:44:52 | "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA | 10 | 10 | None | |||||
| 1639 | 684177701129875456 | 2016-01-05 01:00:50 | This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 | 10 | 10 | Kulet | |||||
| 1640 | 684147889187209216 | 2016-01-04 23:02:22 | This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 | 12 | 10 | Sweets | pupper | pupper | |||
| 1641 | 684122891630342144 | 2016-01-04 21:23:02 | Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j | 11 | 10 | None | |||||
| 1642 | 684097758874210310 | 2016-01-04 19:43:10 | Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C | 10 | 10 | Lupe | |||||
| 1643 | 683857920510050305 | 2016-01-04 03:50:08 | Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW | 10 | 10 | Sadie | |||||
| 1644 | 683852578183077888 | 2016-01-04 03:28:54 | Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN | 10 | 10 | Tiger | |||||
| 1645 | 683849932751646720 | 2016-01-04 03:18:23 | This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x | 5 | 10 | Jiminy | |||||
| 1646 | 683834909291606017 | 2016-01-04 02:18:42 | Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet https://t.co/O1E4AtHVxO | 9 | 10 | None | pupper | pupper | |||
| 1647 | 683828599284170753 | 2016-01-04 01:53:37 | Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS | 12 | 10 | None | pupper | pupper | |||
| 1648 | 683773439333797890 | 2016-01-03 22:14:26 | This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR | 9 | 10 | Buddy | |||||
| 1649 | 683742671509258241 | 2016-01-03 20:12:10 | Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg | 11 | 10 | Sebastian | |||||
| 1650 | 683515932363329536 | 2016-01-03 05:11:12 | HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z | 11 | 10 | None | |||||
| 1651 | 683498322573824003 | 2016-01-03 04:01:13 | This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 | 11 | 10 | Griffin | |||||
| 1652 | 683481228088049664 | 2016-01-03 02:53:17 | Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq | 11 | 10 | Banjo | pupper | pupper | |||
| 1653 | 683462770029932544 | 2016-01-03 01:39:57 | "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT | 8 | 10 | None | pupper | pupper | |||
| 1654 | 683449695444799489 | 2016-01-03 00:47:59 | I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe | 10 | 10 | None | |||||
| 1655 | 683391852557561860 | 2016-01-02 20:58:09 | Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 | 11 | 10 | Jack | |||||
| 1656 | 683357973142474752 | 2016-01-02 18:43:31 | "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd | 10 | 10 | None | |||||
| 1657 | 683142553609318400 | 2016-01-02 04:27:31 | Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ | 9 | 10 | Brandy | pupper | pupper | |||
| 1658 | 683111407806746624 | 2016-01-02 02:23:45 | This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM | 10 | 10 | Larry | pupper | pupper | |||
| 1659 | 683098815881154561 | 2016-01-02 01:33:43 | aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H | 12 | 10 | None | |||||
| 1660 | 683078886620553216 | 2016-01-02 00:14:32 | Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW | 9 | 10 | None | pupper | pupper | |||
| 1661 | 683030066213818368 | 2016-01-01 21:00:32 | This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J | 10 | 10 | Lulu | |||||
| 1662 | 682962037429899265 | 2016-01-01 16:30:13 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 | 10 | 10 | Darrel | |||||
| 1663 | 682808988178739200 | 2016-01-01 06:22:03 | I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible | 20 | 10 | None | |||||
| 1664 | 682788441537560576 | 2016-01-01 05:00:24 | Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf | 12 | 10 | None | pupper | pupper | |||
| 1665 | 682750546109968385 | 2016-01-01 02:29:49 | Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr | 9 | 10 | Taco | |||||
| 1666 | 682697186228989953 | 2015-12-31 22:57:47 | NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz | 12 | 10 | None | |||||
| 1667 | 682662431982772225 | 2015-12-31 20:39:41 | Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB | 11 | 10 | Joey | |||||
| 1668 | 682638830361513985 | 2015-12-31 19:05:54 | I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j | 12 | 10 | None | |||||
| 1669 | 682429480204398592 | 2015-12-31 05:14:01 | I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU | 8 | 10 | None | |||||
| 1670 | 682406705142087680 | 2015-12-31 03:43:31 | This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe | 7 | 10 | Patrick | pupper | pupper | |||
| 1671 | 682393905736888321 | 2015-12-31 02:52:40 | This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y | 11 | 10 | Kreg | |||||
| 1672 | 682389078323662849 | 2015-12-31 02:33:29 | Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ | 9 | 10 | Brody | |||||
| 1673 | 682303737705140231 | 2015-12-30 20:54:22 | This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD | 9 | 10 | Todo | |||||
| 1674 | 682259524040966145 | 2015-12-30 17:58:40 | Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW | 9 | 10 | Jax | |||||
| 1675 | 682242692827447297 | 2015-12-30 16:51:48 | This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf | 11 | 10 | Samson | |||||
| 1676 | 682088079302213632 | 2015-12-30 06:37:25 | I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE | 12 | 10 | None | |||||
| 1677 | 682059653698686977 | 2015-12-30 04:44:28 | This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 | 11 | 10 | Tess | |||||
| 1678 | 682047327939461121 | 2015-12-30 03:55:29 | We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT | 10 | 10 | None | |||||
| 1679 | 682032003584274432 | 2015-12-30 02:54:35 | This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak | 11 | 10 | Ulysses | |||||
| 1680 | 682003177596559360 | 2015-12-30 01:00:03 | Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 | 5 | 10 | None | |||||
| 1681 | 681981167097122816 | 2015-12-29 23:32:35 | This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx | 12 | 10 | Jimothy | |||||
| 1682 | 681891461017812993 | 2015-12-29 17:36:07 | Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 | 10 | 10 | Charlie | pupper | pupper | |||
| 1683 | 681694085539872773 | 2015-12-29 04:31:49 | This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 | 11 | 10 | Bo | pupper | pupper | |||
| 1684 | 681679526984871937 | 2015-12-29 03:33:58 | Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs | 7 | 10 | None | pupper | pupper | |||
| 1685 | 681654059175129088 | 2015-12-29 01:52:46 | This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu | 12 | 10 | Toffee | pupper | pupper | |||
| 1686 | 681610798867845120 | 2015-12-28 23:00:52 | *collapses* 12/10 https://t.co/C7M8mnzHIK | 12 | 10 | None | |||||
| 1687 | 681579835668455424 | 2015-12-28 20:57:50 | This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT | 8 | 10 | Apollo | |||||
| 1688 | 681523177663676416 | 2015-12-28 17:12:42 | This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud | 12 | 10 | Carly | |||||
| 1689 | 681340665377193984 | 2015-12-28 05:07:27 | I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace | 5 | 10 | None | |||||
| 1690 | 681339448655802368 | 2015-12-28 05:02:37 | This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh | 9 | 10 | Asher | |||||
| 1691 | 681320187870711809 | 2015-12-28 03:46:05 | This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 | 11 | 10 | Glacier | |||||
| 1692 | 681302363064414209 | 2015-12-28 02:35:15 | This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p | 3 | 10 | Chuck | |||||
| 1693 | 681297372102656000 | 2015-12-28 02:15:26 | This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap | 12 | 10 | NaN | |||||
| 1694 | 681281657291280384 | 2015-12-28 01:12:59 | Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje | 11 | 10 | Sarge | |||||
| 1695 | 681261549936340994 | 2015-12-27 23:53:05 | Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk | 9 | 10 | Panda | |||||
| 1696 | 681242418453299201 | 2015-12-27 22:37:04 | This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy | 10 | 10 | Champ | |||||
| 1697 | 681231109724700672 | 2015-12-27 21:52:07 | I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI | 11 | 10 | None | pupper | pupper | |||
| 1698 | 681193455364796417 | 2015-12-27 19:22:30 | This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx | 11 | 10 | Aspen | |||||
| 1699 | 680970795137544192 | 2015-12-27 04:37:44 | I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 | 9 | 10 | None | |||||
| 1700 | 680959110691590145 | 2015-12-27 03:51:18 | This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY | 9 | 10 | Ozzie | |||||
| 1701 | 680940246314430465 | 2015-12-27 02:36:20 | This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS | 4 | 10 | Alice | |||||
| 1702 | 680934982542561280 | 2015-12-27 02:15:25 | Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl | 10 | 10 | Sadie | |||||
| 1703 | 680913438424612864 | 2015-12-27 00:49:49 | Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN | 11 | 10 | Griswold | |||||
| 1704 | 680889648562991104 | 2015-12-26 23:15:17 | This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H | 9 | 10 | Cheesy | |||||
| 1705 | 680836378243002368 | 2015-12-26 19:43:36 | This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb | 12 | 10 | Ellie | pupper | pupper | |||
| 1706 | 680805554198020098 | 2015-12-26 17:41:07 | This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 | 9 | 10 | None | |||||
| 1707 | 680801747103793152 | 2015-12-26 17:25:59 | Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 | 10 | 10 | None | |||||
| 1708 | 680798457301471234 | 2015-12-26 17:12:55 | Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD | 6 | 10 | Moofasa | |||||
| 1709 | 680609293079592961 | 2015-12-26 04:41:15 | This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit | 9 | 10 | Brody | |||||
| 1710 | 680583894916304897 | 2015-12-26 03:00:19 | This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg | 8 | 10 | Penny | |||||
| 1711 | 680497766108381184 | 2015-12-25 21:18:05 | Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s | 12 | 10 | Percy | |||||
| 1712 | 680494726643068929 | 2015-12-25 21:06:00 | Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD | 11 | 10 | None | |||||
| 1713 | 680473011644985345 | 2015-12-25 19:39:43 | This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI | 10 | 10 | Hector | pupper | pupper | |||
| 1714 | 680440374763077632 | 2015-12-25 17:30:01 | Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He | 11 | 10 | None | |||||
| 1715 | 680221482581123072 | 2015-12-25 03:00:14 | This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg | 10 | 10 | CeCe | |||||
| 1716 | 680206703334408192 | 2015-12-25 02:01:30 | I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm | 12 | 10 | Toby | |||||
| 1717 | 680191257256136705 | 2015-12-25 01:00:07 | Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 | 11 | 10 | None | pupper | pupper | |||
| 1718 | 680176173301628928 | 2015-12-25 00:00:11 | This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt | 10 | 10 | None | pupper | pupper | |||
| 1719 | 680161097740095489 | 2015-12-24 23:00:17 | Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw | 12 | 10 | Goliath | |||||
| 1720 | 680145970311643136 | 2015-12-24 22:00:10 | Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e | 10 | 10 | Kawhi | pupper | pupper | |||
| 1721 | 680130881361686529 | 2015-12-24 21:00:12 | This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK | 10 | 10 | Reggie | |||||
| 1722 | 680115823365742593 | 2015-12-24 20:00:22 | This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap | 9 | 10 | Ozzy | |||||
| 1723 | 680100725817409536 | 2015-12-24 19:00:23 | This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H | 11 | 10 | None | pupper | pupper | |||
| 1724 | 680085611152338944 | 2015-12-24 18:00:19 | This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE | 12 | 10 | NaN | |||||
| 1725 | 680070545539371008 | 2015-12-24 17:00:27 | Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU | 9 | 10 | Emmie | |||||
| 1726 | 680055455951884288 | 2015-12-24 16:00:30 | Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh | 10 | 10 | Sammy | |||||
| 1727 | 679877062409191424 | 2015-12-24 04:11:37 | Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ | 5 | 10 | Penelope | |||||
| 1728 | 679872969355714560 | 2015-12-24 03:55:21 | This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l | 10 | 10 | Rocco | |||||
| 1729 | 679862121895714818 | 2015-12-24 03:12:15 | "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 | 11 | 10 | None | |||||
| 1730 | 679854723806179328 | 2015-12-24 02:42:51 | This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A | 7 | 10 | Bruce | |||||
| 1731 | 679844490799091713 | 2015-12-24 02:02:12 | This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X | 10 | 10 | Willie | |||||
| 1732 | 679828447187857408 | 2015-12-24 00:58:27 | Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC | 13 | 10 | None | pupper | pupper | |||
| 1733 | 679777920601223168 | 2015-12-23 21:37:40 | This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb | 10 | 10 | Rinna | pupper | pupper | |||
| 1734 | 679736210798047232 | 2015-12-23 18:51:56 | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP | 9 | 10 | None | |||||
| 1735 | 679729593985699840 | 2015-12-23 18:25:38 | This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R | 8 | 10 | Hunter | |||||
| 1736 | 679722016581222400 | 2015-12-23 17:55:32 | This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF | 8 | 10 | Mike | |||||
| 1737 | 679530280114372609 | 2015-12-23 05:13:38 | Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC | 7 | 10 | NaN | |||||
| 1738 | 679527802031484928 | 2015-12-23 05:03:47 | This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB | 11 | 10 | None | pupper | pupper | |||
| 1739 | 679511351870550016 | 2015-12-23 03:58:25 | Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr | 7 | 10 | William | |||||
| 1740 | 679503373272485890 | 2015-12-23 03:26:43 | This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z | 8 | 10 | Dwight | pupper | pupper | |||
| 1741 | 679475951516934144 | 2015-12-23 01:37:45 | This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L | 9 | 10 | Evy | |||||
| 1742 | 679462823135686656 | 2015-12-23 00:45:35 | Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV | 11 | 10 | Hurley | |||||
| 1743 | 679405845277462528 | 2015-12-22 20:59:10 | Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO | 10 | 10 | None | |||||
| 1744 | 679158373988876288 | 2015-12-22 04:35:49 | This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag | 11 | 10 | Rubio | |||||
| 1745 | 679148763231985668 | 2015-12-22 03:57:37 | I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL | 8 | 10 | None | |||||
| 1746 | 679132435750195208 | 2015-12-22 02:52:45 | This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 | 10 | 10 | Louis | |||||
| 1747 | 679111216690831360 | 2015-12-22 01:28:25 | This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE | 12 | 10 | NaN | |||||
| 1748 | 679062614270468097 | 2015-12-21 22:15:18 | This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 | 11 | 10 | Chompsky | |||||
| 1749 | 679047485189439488 | 2015-12-21 21:15:11 | This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 | 9 | 10 | None | |||||
| 1750 | 679001094530465792 | 2015-12-21 18:10:50 | This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg | 11 | 10 | Rascal | |||||
| 1751 | 678991772295516161 | 2015-12-21 17:33:48 | If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU | 12 | 10 | None | |||||
| 1752 | 678969228704284672 | 2015-12-21 16:04:13 | Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f | 11 | 10 | Lola | |||||
| 1753 | 678800283649069056 | 2015-12-21 04:52:53 | Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu | 12 | 10 | None | pupper | pupper | |||
| 1754 | 678798276842360832 | 2015-12-21 04:44:55 | This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR | 7 | 10 | Linda | |||||
| 1755 | 678774928607469569 | 2015-12-21 03:12:08 | This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx | 11 | 10 | Tug | |||||
| 1756 | 678767140346941444 | 2015-12-21 02:41:11 | This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz | 8 | 10 | Mia | |||||
| 1757 | 678764513869611008 | 2015-12-21 02:30:45 | Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv | 10 | 10 | Wilson | |||||
| 1758 | 678755239630127104 | 2015-12-21 01:53:54 | This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW | 10 | 10 | Dash | |||||
| 1759 | 678740035362037760 | 2015-12-21 00:53:29 | Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe | 6 | 10 | Tango | |||||
| 1760 | 678708137298427904 | 2015-12-20 22:46:44 | Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw | 10 | 10 | None | pupper | pupper | |||
| 1761 | 678675843183484930 | 2015-12-20 20:38:24 | Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r | 2 | 10 | None | |||||
| 1762 | 678643457146150913 | 2015-12-20 18:29:43 | Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv | 10 | 10 | Grizz | |||||
| 1763 | 678446151570427904 | 2015-12-20 05:25:42 | Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx | 10 | 10 | None | |||||
| 1764 | 678424312106393600 | 2015-12-20 03:58:55 | This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz | 2 | 10 | Crystal | |||||
| 1765 | 678410210315247616 | 2015-12-20 03:02:53 | Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 | 10 | 10 | Jerome | |||||
| 1766 | 678399652199309312 | 2015-12-20 02:20:55 | This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm | 12 | 10 | None | |||||
| 1767 | 678396796259975168 | 2015-12-20 02:09:34 | These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen | 12 | 10 | None | |||||
| 1768 | 678389028614488064 | 2015-12-20 01:38:42 | This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM | 11 | 10 | Bella | pupper | pupper | |||
| 1769 | 678380236862578688 | 2015-12-20 01:03:46 | This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa | 10 | 10 | Crumpet | |||||
| 1770 | 678341075375947776 | 2015-12-19 22:28:09 | This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm | 12 | 10 | None | pupper | pupper | |||
| 1771 | 678334497360859136 | 2015-12-19 22:02:01 | This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 | 10 | 10 | Rosie | |||||
| 1772 | 678278586130948096 | 2015-12-19 18:19:51 | Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj | 10 | 10 | None | pupper | pupper | |||
| 1773 | 678255464182861824 | 2015-12-19 16:47:58 | This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv | 9 | 10 | Jessifer | |||||
| 1774 | 678023323247357953 | 2015-12-19 01:25:31 | After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 | 13 | 10 | None | |||||
| 1775 | 678021115718029313 | 2015-12-19 01:16:45 | This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh | 12 | 10 | Reese | |||||
| 1776 | 677961670166224897 | 2015-12-18 21:20:32 | This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi | 11 | 10 | Izzy | |||||
| 1777 | 677918531514703872 | 2015-12-18 18:29:07 | "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR | 10 | 10 | None | |||||
| 1778 | 677895101218201600 | 2015-12-18 16:56:01 | Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb | 9 | 10 | None | |||||
| 1779 | 677716515794329600 | 2015-12-18 05:06:23 | IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq | 12 | 10 | None | |||||
| 1780 | 677700003327029250 | 2015-12-18 04:00:46 | This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa | 10 | 10 | Ralph | |||||
| 1781 | 677698403548192770 | 2015-12-18 03:54:25 | This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK | 9 | 10 | Sadie | |||||
| 1782 | 677687604918272002 | 2015-12-18 03:11:30 | This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD | 11 | 10 | None | |||||
| 1783 | 677673981332312066 | 2015-12-18 02:17:22 | Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z | 9 | 10 | None | |||||
| 1784 | 677662372920729601 | 2015-12-18 01:31:14 | In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH | 12 | 10 | None | |||||
| 1785 | 677644091929329666 | 2015-12-18 00:18:36 | This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND | 11 | 10 | NaN | |||||
| 1786 | 677573743309385728 | 2015-12-17 19:39:03 | This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu | 10 | 10 | Sandy | |||||
| 1787 | 677565715327688705 | 2015-12-17 19:07:09 | Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe | 6 | 10 | None | |||||
| 1788 | 677557565589463040 | 2015-12-17 18:34:46 | Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j | 10 | 10 | None | pupper | pupper | |||
| 1789 | 677547928504967168 | 2015-12-17 17:56:29 | Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe | 12 | 10 | None | |||||
| 1790 | 677530072887205888 | 2015-12-17 16:45:31 | Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE | 9 | 10 | Axel | |||||
| 1791 | 677335745548390400 | 2015-12-17 03:53:20 | Downright inspiring 12/10 https://t.co/vSLtYBWHcQ | 12 | 10 | None | |||||
| 1792 | 677334615166730240 | 2015-12-17 03:48:51 | This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 | 9 | 10 | None | |||||
| 1793 | 677331501395156992 | 2015-12-17 03:36:28 | Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 | 9 | 10 | Humphrey | |||||
| 1794 | 677328882937298944 | 2015-12-17 03:26:04 | This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s | 10 | 10 | Derek | |||||
| 1795 | 677314812125323265 | 2015-12-17 02:30:09 | Meet Tassy & Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 & 11/10 respectively https://t.co/fgORpmTN9C | 10 | 10 | Tassy | |||||
| 1796 | 677301033169788928 | 2015-12-17 01:35:24 | This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak | 5 | 10 | Juckson | |||||
| 1797 | 677269281705472000 | 2015-12-16 23:29:14 | This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb | 10 | 10 | NaN | pupper | pupper | |||
| 1798 | 677228873407442944 | 2015-12-16 20:48:40 | Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 | 11 | 10 | Chuq | |||||
| 1799 | 677187300187611136 | 2015-12-16 18:03:28 | Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo | 9 | 10 | None | |||||
| 1800 | 676975532580409345 | 2015-12-16 04:01:59 | This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 | 11 | 10 | Cooper | |||||
| 1801 | 676957860086095872 | 2015-12-16 02:51:45 | 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L | 10 | 10 | None | |||||
| 1802 | 676949632774234114 | 2015-12-16 02:19:04 | This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa | 8 | 10 | Tyrus | |||||
| 1803 | 676948236477857792 | 2015-12-16 02:13:31 | This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 | 6 | 10 | Karl | |||||
| 1804 | 676946864479084545 | 2015-12-16 02:08:04 | This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV | 12 | 10 | None | |||||
| 1805 | 676942428000112642 | 2015-12-16 01:50:26 | Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a | 9 | 10 | None | |||||
| 1806 | 676936541936185344 | 2015-12-16 01:27:03 | Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz | 8 | 10 | None | pupper | pupper | |||
| 1807 | 676916996760600576 | 2015-12-16 00:09:23 | Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb | 10 | 10 | None | pupper | pupper | |||
| 1808 | 676897532954456065 | 2015-12-15 22:52:02 | Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk | 5 | 10 | None | |||||
| 1809 | 676864501615042560 | 2015-12-15 20:40:47 | Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK | 10 | 10 | Ash | |||||
| 1810 | 676821958043033607 | 2015-12-15 17:51:44 | Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb | 11 | 10 | None | |||||
| 1811 | 676819651066732545 | 2015-12-15 17:42:34 | Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C | 12 | 10 | None | pupper | pupper | |||
| 1812 | 676811746707918848 | 2015-12-15 17:11:09 | Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD | 9 | 10 | Penny | |||||
| 1813 | 676776431406465024 | 2015-12-15 14:50:49 | When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k | 10 | 10 | None | |||||
| 1814 | 676617503762681856 | 2015-12-15 04:19:18 | I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh | 13 | 10 | None | pupper | pupper | |||
| 1815 | 676613908052996102 | 2015-12-15 04:05:01 | This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF | 12 | 10 | NaN | |||||
| 1816 | 676606785097199616 | 2015-12-15 03:36:42 | *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx | 12 | 10 | None | |||||
| 1817 | 676603393314578432 | 2015-12-15 03:23:14 | This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr | 9 | 10 | Godzilla | pupper | pupper | |||
| 1818 | 676593408224403456 | 2015-12-15 02:43:33 | This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF | 11 | 10 | None | pupper | pupper | |||
| 1819 | 676590572941893632 | 2015-12-15 02:32:17 | After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you | 7 | 10 | None | |||||
| 1820 | 676588346097852417 | 2015-12-15 02:23:26 | This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT | 5 | 10 | Bubbles | |||||
| 1821 | 676582956622721024 | 2015-12-15 02:02:01 | Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH | 8 | 10 | Vinnie | |||||
| 1822 | 676575501977128964 | 2015-12-15 01:32:24 | This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 | 8 | 10 | None | pupper | pupper | |||
| 1823 | 676533798876651520 | 2015-12-14 22:46:41 | ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ | 12 | 10 | None | |||||
| 1824 | 676496375194980353 | 2015-12-14 20:17:59 | Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX | 9 | 10 | Griffin | |||||
| 1825 | 676470639084101634 | 2015-12-14 18:35:43 | Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau | 11 | 10 | None | pupper | pupper | |||
| 1826 | 676440007570247681 | 2015-12-14 16:34:00 | Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai | 11 | 10 | None | |||||
| 1827 | 676430933382295552 | 2015-12-14 15:57:56 | Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr | 10 | 10 | Duke | |||||
| 1828 | 676263575653122048 | 2015-12-14 04:52:55 | All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 | 10 | 10 | None | pupper | pupper | |||
| 1829 | 676237365392908289 | 2015-12-14 03:08:46 | Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ | 8 | 10 | Winston | |||||
| 1830 | 676219687039057920 | 2015-12-14 01:58:31 | This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ | 10 | 10 | Kenneth | |||||
| 1831 | 676215927814406144 | 2015-12-14 01:43:35 | This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv | 9 | 10 | Herm | |||||
| 1832 | 676191832485810177 | 2015-12-14 00:07:50 | These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC | 10 | 10 | None | |||||
| 1833 | 676146341966438401 | 2015-12-13 21:07:04 | This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu | 10 | 10 | Bert | |||||
| 1834 | 676121918416756736 | 2015-12-13 19:30:01 | Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs | 8 | 10 | None | |||||
| 1835 | 676101918813499392 | 2015-12-13 18:10:33 | Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH | 11 | 10 | Striker | |||||
| 1836 | 676098748976615425 | 2015-12-13 17:57:57 | Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb | 3 | 10 | None | |||||
| 1837 | 676089483918516224 | 2015-12-13 17:21:08 | "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp | 9 | 10 | None | |||||
| 1838 | 675898130735476737 | 2015-12-13 04:40:46 | I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O | 10 | 10 | None | pupper | pupper | |||
| 1839 | 675891555769696257 | 2015-12-13 04:14:39 | This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp | 6 | 10 | Donny | |||||
| 1840 | 675888385639251968 | 2015-12-13 04:02:03 | Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa | 10 | 10 | None | |||||
| 1841 | 675878199931371520 | 2015-12-13 03:21:34 | Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI | 11 | 10 | None | |||||
| 1842 | 675870721063669760 | 2015-12-13 02:51:51 | & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 | 11 | 10 | None | |||||
| 1843 | 675853064436391936 | 2015-12-13 01:41:41 | Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw | 11 | 10 | None | |||||
| 1844 | 675849018447167488 | 2015-12-13 01:25:37 | This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you | 9 | 10 | None | |||||
| 1845 | 675845657354215424 | 2015-12-13 01:12:15 | This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG | 10 | 10 | Pepper | pupper | pupper | |||
| 1846 | 675822767435051008 | 2015-12-12 23:41:18 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk | 10 | 10 | None | |||||
| 1847 | 675820929667219457 | 2015-12-12 23:34:00 | Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s | 11 | 10 | None | |||||
| 1848 | 675798442703122432 | 2015-12-12 22:04:39 | This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 | 10 | 10 | Bernie | |||||
| 1849 | 675781562965868544 | 2015-12-12 20:57:34 | Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 | 11 | 10 | Buddah | |||||
| 1850 | 675740360753160193 | 2015-12-12 18:13:51 | Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 | 12 | 10 | None | pupper | pupper | |||
| 1851 | 675710890956750848 | 2015-12-12 16:16:45 | This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 | 12 | 10 | Lenny | |||||
| 1852 | 675707330206547968 | 2015-12-12 16:02:36 | We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 | 11 | 10 | None | |||||
| 1853 | 675706639471788032 | 2015-12-12 15:59:51 | This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI | 10 | 10 | NaN | |||||
| 1854 | 675534494439489536 | 2015-12-12 04:35:48 | Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj | 11 | 10 | NaN | |||||
| 1855 | 675531475945709568 | 2015-12-12 04:23:49 | This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn | 10 | 10 | Ellie | |||||
| 1856 | 675522403582218240 | 2015-12-12 03:47:46 | Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 | 10 | 10 | Sammy | |||||
| 1857 | 675517828909424640 | 2015-12-12 03:29:35 | 12/10 stay woke https://t.co/XDiQw4Akiw | 12 | 10 | None | |||||
| 1858 | 675501075957489664 | 2015-12-12 02:23:01 | I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH | 13 | 10 | None | |||||
| 1859 | 675497103322386432 | 2015-12-12 02:07:14 | Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC | 11 | 10 | Reggie | |||||
| 1860 | 675489971617296384 | 2015-12-12 01:38:53 | RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn | 10 | 10 | None | |||||
| 1861 | 675483430902214656 | 2015-12-12 01:12:54 | Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO | 5 | 10 | None | |||||
| 1862 | 675432746517426176 | 2015-12-11 21:51:30 | Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG | 12 | 10 | None | |||||
| 1863 | 675372240448454658 | 2015-12-11 17:51:04 | The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju | 13 | 10 | None | |||||
| 1864 | 675362609739206656 | 2015-12-11 17:12:48 | This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn | 12 | 10 | Daisy | |||||
| 1865 | 675354435921575936 | 2015-12-11 16:40:19 | Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC | 13 | 10 | None | |||||
| 1866 | 675349384339542016 | 2015-12-11 16:20:15 | Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP | 13 | 10 | None | |||||
| 1867 | 675334060156301312 | 2015-12-11 15:19:21 | Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs | 12 | 10 | None | pupper | pupper | |||
| 1868 | 675166823650848770 | 2015-12-11 04:14:49 | This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C | 10 | 10 | Arnold | |||||
| 1869 | 675153376133427200 | 2015-12-11 03:21:23 | What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 | 1 | 10 | None | |||||
| 1870 | 675149409102012420 | 2015-12-11 03:05:37 | holy shit 12/10 https://t.co/p6O8X93bTQ | 12 | 10 | None | |||||
| 1871 | 675147105808306176 | 2015-12-11 02:56:28 | When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS | 10 | 10 | None | |||||
| 1872 | 675146535592706048 | 2015-12-11 02:54:12 | This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF | 7 | 10 | Coops | |||||
| 1873 | 675145476954566656 | 2015-12-11 02:49:59 | What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs | 9 | 10 | None | |||||
| 1874 | 675135153782571009 | 2015-12-11 02:08:58 | This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 | 5 | 10 | Steven | |||||
| 1875 | 675113801096802304 | 2015-12-11 00:44:07 | Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 | 10 | 10 | Zuzu | pupper | pupper | |||
| 1876 | 675111688094527488 | 2015-12-11 00:35:44 | Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 | 8 | 10 | Oliver | |||||
| 1877 | 675109292475830276 | 2015-12-11 00:26:12 | C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 | 9 | 10 | NaN | |||||
| 1878 | 675047298674663426 | 2015-12-10 20:19:52 | This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI | 11 | 10 | NaN | |||||
| 1879 | 675015141583413248 | 2015-12-10 18:12:05 | Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G | 10 | 10 | Moe | |||||
| 1880 | 675006312288268288 | 2015-12-10 17:37:00 | Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO | 10 | 10 | Mollie | pupper | pupper | |||
| 1881 | 675003128568291329 | 2015-12-10 17:24:21 | Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 | 12 | 10 | Laela | |||||
| 1882 | 674999807681908736 | 2015-12-10 17:11:09 | Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 | 13 | 10 | None | |||||
| 1883 | 674805413498527744 | 2015-12-10 04:18:42 | When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 | 10 | 10 | None | |||||
| 1884 | 674800520222154752 | 2015-12-10 03:59:15 | This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B | 11 | 10 | Tedders | |||||
| 1885 | 674793399141146624 | 2015-12-10 03:30:58 | I have found another. 13/10 https://t.co/HwroPYv8pY | 13 | 10 | None | |||||
| 1886 | 674790488185167872 | 2015-12-10 03:19:24 | ER... MER... GERD 13/10 https://t.co/L1puJISV1a | 13 | 10 | None | |||||
| 1887 | 674788554665512960 | 2015-12-10 03:11:43 | Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb | 9 | 10 | Maggie | |||||
| 1888 | 674781762103414784 | 2015-12-10 02:44:43 | Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj | 8 | 10 | None | |||||
| 1889 | 674774481756377088 | 2015-12-10 02:15:47 | This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm | 11 | 10 | Superpup | pupper | pupper | |||
| 1890 | 674767892831932416 | 2015-12-10 01:49:36 | This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD | 12 | 10 | None | |||||
| 1891 | 674764817387900928 | 2015-12-10 01:37:23 | These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr | 10 | 10 | None | |||||
| 1892 | 674754018082705410 | 2015-12-10 00:54:28 | Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc | 12 | 10 | None | |||||
| 1893 | 674752233200820224 | 2015-12-10 00:47:23 | Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO | 12 | 10 | None | |||||
| 1894 | 674743008475090944 | 2015-12-10 00:10:43 | This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT | 10 | 10 | Sophie | |||||
| 1895 | 674742531037511680 | 2015-12-10 00:08:50 | Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you | 11 | 10 | None | |||||
| 1896 | 674739953134403584 | 2015-12-09 23:58:35 | "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc | 11 | 10 | None | |||||
| 1897 | 674737130913071104 | 2015-12-09 23:47:22 | Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 & 4/10 https://t.co/KNfLnYPmYh | 10 | 10 | Rufio | pupper | pupper | |||
| 1898 | 674690135443775488 | 2015-12-09 20:40:38 | Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo | 3 | 10 | Patrick | |||||
| 1899 | 674670581682434048 | 2015-12-09 19:22:56 | Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm | 9 | 10 | Jeb | |||||
| 1900 | 674664755118911488 | 2015-12-09 18:59:46 | This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb | 10 | 10 | Rodman | |||||
| 1901 | 674646392044941312 | 2015-12-09 17:46:48 | Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 https://t.co/YPfw7oahbD | 5 | 10 | None | |||||
| 1902 | 674644256330530816 | 2015-12-09 17:38:19 | When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp | 11 | 10 | None | |||||
| 1903 | 674638615994089473 | 2015-12-09 17:15:54 | This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL | 12 | 10 | None | pupper | pupper | |||
| 1904 | 674632714662858753 | 2015-12-09 16:52:27 | Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE | 5 | 10 | None | |||||
| 1905 | 674606911342424069 | 2015-12-09 15:09:55 | The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass | 13 | 10 | None | |||||
| 1906 | 674468880899788800 | 2015-12-09 06:01:26 | This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx | 13 | 10 | Louis | |||||
| 1907 | 674447403907457024 | 2015-12-09 04:36:06 | This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f | 10 | 10 | None | pupper | pupper | |||
| 1908 | 674436901579923456 | 2015-12-09 03:54:22 | Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx | 9 | 10 | Bailey | |||||
| 1909 | 674422304705744896 | 2015-12-09 02:56:22 | This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk | 12 | 10 | Ava | |||||
| 1910 | 674416750885273600 | 2015-12-09 02:34:18 | This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY | 10 | 10 | Jonah | |||||
| 1911 | 674410619106390016 | 2015-12-09 02:09:56 | This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn | 10 | 10 | Lenny | |||||
| 1912 | 674394782723014656 | 2015-12-09 01:07:00 | This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi | 8 | 10 | Gary | |||||
| 1913 | 674372068062928900 | 2015-12-08 23:36:44 | Meet Chesney. On the outside he stays calm & collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc | 10 | 10 | Chesney | |||||
| 1914 | 674330906434379776 | 2015-12-08 20:53:11 | 13/10\n@ABC7 | 13 | 10 | None | |||||
| 1915 | 674318007229923329 | 2015-12-08 20:01:55 | This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv | 8 | 10 | Lennon | pupper | pupper | |||
| 1916 | 674307341513269249 | 2015-12-08 19:19:32 | This is life-changing. 12/10 https://t.co/SroTpI6psB | 12 | 10 | NaN | |||||
| 1917 | 674291837063053312 | 2015-12-08 18:17:56 | This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK | 11 | 10 | Kenny | |||||
| 1918 | 674271431610523648 | 2015-12-08 16:56:51 | "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it | 10 | 10 | None | |||||
| 1919 | 674269164442398721 | 2015-12-08 16:47:50 | This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N | 8 | 10 | Bob | |||||
| 1920 | 674265582246694913 | 2015-12-08 16:33:36 | This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ | 2 | 10 | Henry | |||||
| 1921 | 674262580978937856 | 2015-12-08 16:21:41 | This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 | 9 | 10 | Gus | pupper | pupper | |||
| 1922 | 674255168825880576 | 2015-12-08 15:52:13 | Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx | 10 | 10 | Bobbay | |||||
| 1923 | 674082852460433408 | 2015-12-08 04:27:30 | This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU | 11 | 10 | NaN | |||||
| 1924 | 674075285688614912 | 2015-12-08 03:57:26 | Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 | 11 | 10 | Mitch | |||||
| 1925 | 674063288070742018 | 2015-12-08 03:09:46 | This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 | 5 | 10 | Earl | |||||
| 1926 | 674053186244734976 | 2015-12-08 02:29:37 | This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 | 10 | 10 | Stanley | |||||
| 1927 | 674051556661161984 | 2015-12-08 02:23:09 | This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk | 10 | 10 | Lucy | |||||
| 1928 | 674045139690631169 | 2015-12-08 01:57:39 | Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 | 3 | 10 | None | |||||
| 1929 | 674042553264685056 | 2015-12-08 01:47:22 | Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX | 12 | 10 | None | |||||
| 1930 | 674038233588723717 | 2015-12-08 01:30:12 | This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk | 12 | 10 | Kaiya | pupper | pupper | |||
| 1931 | 674036086168010753 | 2015-12-08 01:21:40 | Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP | 9 | 10 | Daisy | |||||
| 1932 | 674024893172875264 | 2015-12-08 00:37:11 | When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ | 10 | 10 | None | |||||
| 1933 | 674019345211760640 | 2015-12-08 00:15:09 | This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs | 10 | 10 | Acro | |||||
| 1934 | 674014384960745472 | 2015-12-07 23:55:26 | Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD | 11 | 10 | Aiden | |||||
| 1935 | 674008982932058114 | 2015-12-07 23:33:58 | This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ | 10 | 10 | None | |||||
| 1936 | 673956914389192708 | 2015-12-07 20:07:04 | This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd | 10 | 10 | NaN | pupper | pupper | |||
| 1937 | 673919437611909120 | 2015-12-07 17:38:09 | This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb | 11 | 10 | Obie | pupper | pupper | |||
| 1938 | 673906403526995968 | 2015-12-07 16:46:21 | Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M | 3 | 10 | None | |||||
| 1939 | 673887867907739649 | 2015-12-07 15:32:42 | When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd | 10 | 10 | None | |||||
| 1940 | 673716320723169284 | 2015-12-07 04:11:02 | The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you | 1 | 10 | None | |||||
| 1941 | 673715861853720576 | 2015-12-07 04:09:13 | This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl | 4 | 10 | NaN | |||||
| 1942 | 673711475735838725 | 2015-12-07 03:51:47 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH | 10 | 10 | None | |||||
| 1943 | 673709992831262724 | 2015-12-07 03:45:53 | I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 | 12 | 10 | None | |||||
| 1944 | 673708611235921920 | 2015-12-07 03:40:24 | This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 | 12 | 10 | Riley | |||||
| 1945 | 673707060090052608 | 2015-12-07 03:34:14 | This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM | 10 | 10 | Raymond | pupper | pupper | |||
| 1946 | 673705679337693185 | 2015-12-07 03:28:45 | This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd | 8 | 10 | Dot | |||||
| 1947 | 673700254269775872 | 2015-12-07 03:07:12 | Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA | 3 | 10 | None | |||||
| 1948 | 673697980713705472 | 2015-12-07 02:58:09 | This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw | 8 | 10 | Pickles | pupper | pupper | |||
| 1949 | 673689733134946305 | 2015-12-07 02:25:23 | When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe | 11 | 10 | None | |||||
| 1950 | 673688752737402881 | 2015-12-07 02:21:29 | Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y | 9 | 10 | Larry | |||||
| 1951 | 673686845050527744 | 2015-12-07 02:13:55 | This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E | 11 | 10 | George | |||||
| 1952 | 673680198160809984 | 2015-12-07 01:47:30 | This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ | 13 | 10 | Shnuggles | |||||
| 1953 | 673662677122719744 | 2015-12-07 00:37:52 | This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj | 12 | 10 | Kendall | |||||
| 1954 | 673656262056419329 | 2015-12-07 00:12:23 | This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We | 10 | 10 | Albert | pupper | pupper | |||
| 1955 | 673636718965334016 | 2015-12-06 22:54:44 | This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 | 10 | 10 | NaN | |||||
| 1956 | 673612854080196609 | 2015-12-06 21:19:54 | This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 | 7 | 10 | Jeffri | pupper | pupper | |||
| 1957 | 673583129559498752 | 2015-12-06 19:21:47 | This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug | 11 | 10 | Sandy | |||||
| 1958 | 673580926094458881 | 2015-12-06 19:13:01 | When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP | 8 | 10 | None | |||||
| 1959 | 673576835670777856 | 2015-12-06 18:56:46 | Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w | 7 | 10 | None | |||||
| 1960 | 673363615379013632 | 2015-12-06 04:49:31 | This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 | 11 | 10 | None | pupper | pupper | |||
| 1961 | 673359818736984064 | 2015-12-06 04:34:25 | This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ | 8 | 10 | Steve | |||||
| 1962 | 673355879178194945 | 2015-12-06 04:18:46 | This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ | 11 | 10 | Koda | |||||
| 1963 | 673352124999274496 | 2015-12-06 04:03:51 | *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ | 12 | 10 | None | |||||
| 1964 | 673350198937153538 | 2015-12-06 03:56:12 | This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u | 9 | 10 | Bella | |||||
| 1965 | 673345638550134785 | 2015-12-06 03:38:05 | This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS | 7 | 10 | Gerald | |||||
| 1966 | 673343217010679808 | 2015-12-06 03:28:27 | IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW | 11 | 10 | None | |||||
| 1967 | 673342308415348736 | 2015-12-06 03:24:51 | This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a | 10 | 10 | Django | pupper | pupper | |||
| 1968 | 673320132811366400 | 2015-12-06 01:56:44 | This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf | 11 | 10 | Frankie | |||||
| 1969 | 673317986296586240 | 2015-12-06 01:48:12 | Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng | 10 | 10 | None | |||||
| 1970 | 673295268553605120 | 2015-12-06 00:17:55 | Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg | 8 | 10 | Eve | pupper | pupper | |||
| 1971 | 673270968295534593 | 2015-12-05 22:41:22 | This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum | 11 | 10 | Mac | |||||
| 1972 | 673240798075449344 | 2015-12-05 20:41:29 | Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 | 6 | 10 | None | |||||
| 1973 | 673213039743795200 | 2015-12-05 18:51:11 | This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI | 10 | 10 | Dexter | |||||
| 1974 | 673148804208660480 | 2015-12-05 14:35:56 | This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw | 8 | 10 | Fletcher | pupper | pupper | |||
| 1975 | 672997845381865473 | 2015-12-05 04:36:04 | Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg | 12 | 10 | Kenzie | |||||
| 1976 | 672995267319328768 | 2015-12-05 04:25:50 | This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq | 8 | 10 | Pumpkin | |||||
| 1977 | 672988786805112832 | 2015-12-05 04:00:04 | This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG | 10 | 10 | Schnozz | pupper | pupper | |||
| 1978 | 672984142909456390 | 2015-12-05 03:41:37 | Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs | 9 | 10 | None | |||||
| 1979 | 672980819271634944 | 2015-12-05 03:28:25 | Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu | 5 | 10 | None | |||||
| 1980 | 672975131468300288 | 2015-12-05 03:05:49 | This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 | 10 | 10 | Chuckles | pupper | pupper | |||
| 1981 | 672970152493887488 | 2015-12-05 02:46:02 | This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd | 7 | 10 | Chet | pupper | pupper | |||
| 1982 | 672968025906282496 | 2015-12-05 02:37:35 | This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ | 11 | 10 | Gustaf | |||||
| 1983 | 672964561327235073 | 2015-12-05 02:23:49 | This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT | 10 | 10 | Terry | |||||
| 1984 | 672902681409806336 | 2015-12-04 22:17:55 | This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E | 9 | 10 | Jimison | |||||
| 1985 | 672898206762672129 | 2015-12-04 22:00:08 | This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp | 11 | 10 | Cheryl | pupper | pupper | |||
| 1986 | 672884426393653248 | 2015-12-04 21:05:23 | Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg | 6 | 10 | None | |||||
| 1987 | 672877615439593473 | 2015-12-04 20:38:19 | This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 | 8 | 10 | Oscar | |||||
| 1988 | 672834301050937345 | 2015-12-04 17:46:12 | This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN | 10 | 10 | Ed | |||||
| 1989 | 672828477930868736 | 2015-12-04 17:23:04 | This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs | 9 | 10 | Jerry | |||||
| 1990 | 672640509974827008 | 2015-12-04 04:56:09 | This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M | 9 | 10 | Leonidas | |||||
| 1991 | 672622327801233409 | 2015-12-04 03:43:54 | This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ | 12 | 10 | None | pupper | pupper | |||
| 1992 | 672614745925664768 | 2015-12-04 03:13:46 | This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U | 6 | 10 | Norman | pupper | pupper | |||
| 1993 | 672609152938721280 | 2015-12-04 02:51:33 | This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois | 9 | 10 | Caryl | |||||
| 1994 | 672604026190569472 | 2015-12-04 02:31:10 | This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe | 11 | 10 | NaN | |||||
| 1995 | 672594978741354496 | 2015-12-04 01:55:13 | Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz | 9 | 10 | Scott | pupper | pupper | |||
| 1996 | 672591762242805761 | 2015-12-04 01:42:26 | This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w | 10 | 10 | Taz | |||||
| 1997 | 672591271085670400 | 2015-12-04 01:40:29 | Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI | 8 | 10 | None | |||||
| 1998 | 672538107540070400 | 2015-12-03 22:09:14 | Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap | 7 | 10 | Darby | |||||
| 1999 | 672523490734551040 | 2015-12-03 21:11:09 | When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi | 10 | 10 | None | |||||
| 2000 | 672488522314567680 | 2015-12-03 18:52:12 | This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK | 10 | 10 | Jackie | |||||
| 2001 | 672482722825261057 | 2015-12-03 18:29:09 | This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt | 10 | 10 | NaN | |||||
| 2002 | 672481316919734272 | 2015-12-03 18:23:34 | Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP | 12 | 10 | Jazz | pupper | pupper | |||
| 2003 | 672475084225949696 | 2015-12-03 17:58:48 | This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f | 8 | 10 | Buddy | |||||
| 2004 | 672466075045466113 | 2015-12-03 17:23:00 | This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 | 12 | 10 | Franq | |||||
| 2005 | 672272411274932228 | 2015-12-03 04:33:27 | This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 | 11 | 10 | Pippin | |||||
| 2006 | 672267570918129665 | 2015-12-03 04:14:13 | When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ | 10 | 10 | None | |||||
| 2007 | 672264251789176834 | 2015-12-03 04:01:02 | This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV | 10 | 10 | Kreg | |||||
| 2008 | 672256522047614977 | 2015-12-03 03:30:19 | Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd | 8 | 10 | None | |||||
| 2009 | 672254177670729728 | 2015-12-03 03:21:00 | This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 | 11 | 10 | Rolf | pupper | pupper | |||
| 2010 | 672248013293752320 | 2015-12-03 02:56:30 | 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k | 10 | 10 | None | |||||
| 2011 | 672245253877968896 | 2015-12-03 02:45:32 | Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr | 12 | 10 | Snickers | |||||
| 2012 | 672239279297454080 | 2015-12-03 02:21:48 | This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 | 7 | 10 | Ridley | |||||
| 2013 | 672231046314901505 | 2015-12-03 01:49:05 | Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA | 5 | 10 | None | |||||
| 2014 | 672222792075620352 | 2015-12-03 01:16:17 | This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O | 9 | 10 | Cal | |||||
| 2015 | 672205392827572224 | 2015-12-03 00:07:09 | This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D | 9 | 10 | Opal | pupper | pupper | |||
| 2016 | 672169685991993344 | 2015-12-02 21:45:16 | This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO | 10 | 10 | Bradley | |||||
| 2017 | 672160042234327040 | 2015-12-02 21:06:56 | This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W | 8 | 10 | Bubba | pupper | pupper | |||
| 2018 | 672139350159835138 | 2015-12-02 19:44:43 | This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ | 12 | 10 | None | |||||
| 2019 | 672125275208069120 | 2015-12-02 18:48:47 | This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP | 11 | 10 | NaN | |||||
| 2020 | 672095186491711488 | 2015-12-02 16:49:14 | This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe | 9 | 10 | Tuco | |||||
| 2021 | 672082170312290304 | 2015-12-02 15:57:30 | This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg | 11 | 10 | Patch | |||||
| 2022 | 672068090318987265 | 2015-12-02 15:01:33 | Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a | 7 | 10 | Gizmo | |||||
| 2023 | 671896809300709376 | 2015-12-02 03:40:57 | This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH | 10 | 10 | Lola | |||||
| 2024 | 671891728106971137 | 2015-12-02 03:20:45 | This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW | 11 | 10 | Mojo | |||||
| 2025 | 671882082306625538 | 2015-12-02 02:42:26 | This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O | 11 | 10 | Batdog | |||||
| 2026 | 671879137494245376 | 2015-12-02 02:30:43 | This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE | 5 | 10 | Brad | |||||
| 2027 | 671874878652489728 | 2015-12-02 02:13:48 | This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG | 10 | 10 | Mia | |||||
| 2028 | 671866342182637568 | 2015-12-02 01:39:53 | Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI | 10 | 10 | Dylan | |||||
| 2029 | 671855973984772097 | 2015-12-02 00:58:41 | Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg | 8 | 10 | None | |||||
| 2030 | 671789708968640512 | 2015-12-01 20:35:22 | This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq | 13 | 10 | NaN | |||||
| 2031 | 671768281401958400 | 2015-12-01 19:10:13 | When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S | 10 | 10 | None | |||||
| 2032 | 671763349865160704 | 2015-12-01 18:50:38 | Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 | 9 | 10 | Mark | |||||
| 2033 | 671744970634719232 | 2015-12-01 17:37:36 | Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl | 6 | 10 | None | |||||
| 2034 | 671743150407421952 | 2015-12-01 17:30:22 | This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 | 11 | 10 | NaN | |||||
| 2035 | 671735591348891648 | 2015-12-01 17:00:19 | This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr | 11 | 10 | Oscar | |||||
| 2036 | 671729906628341761 | 2015-12-01 16:37:44 | I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt | 13 | 10 | None | |||||
| 2037 | 671561002136281088 | 2015-12-01 05:26:34 | This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU | 13 | 10 | NaN | |||||
| 2038 | 671550332464455680 | 2015-12-01 04:44:10 | After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes | 1 | 10 | None | |||||
| 2039 | 671547767500775424 | 2015-12-01 04:33:59 | This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV | 10 | 10 | Marley | |||||
| 2040 | 671544874165002241 | 2015-12-01 04:22:29 | Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS | 6 | 10 | None | |||||
| 2041 | 671542985629241344 | 2015-12-01 04:14:59 | This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF | 10 | 10 | JD | |||||
| 2042 | 671538301157904385 | 2015-12-01 03:56:22 | This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD | 8 | 10 | Baxter | |||||
| 2043 | 671536543010570240 | 2015-12-01 03:49:23 | This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c | 9 | 10 | Reginald | |||||
| 2044 | 671533943490011136 | 2015-12-01 03:39:03 | Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K | 6 | 10 | None | |||||
| 2045 | 671528761649688577 | 2015-12-01 03:18:27 | Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi | 10 | 10 | Jax | |||||
| 2046 | 671520732782923777 | 2015-12-01 02:46:33 | Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF | 10 | 10 | Alejandro | |||||
| 2047 | 671518598289059840 | 2015-12-01 02:38:04 | This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 | 9 | 10 | Scruffers | |||||
| 2048 | 671511350426865664 | 2015-12-01 02:09:16 | Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 | 8 | 10 | Hammond | |||||
| 2049 | 671504605491109889 | 2015-12-01 01:42:28 | This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA | 11 | 10 | Charlie | |||||
| 2050 | 671497587707535361 | 2015-12-01 01:14:35 | This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ | 11 | 10 | Pip | |||||
| 2051 | 671488513339211776 | 2015-12-01 00:38:31 | This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD | 8 | 10 | Julius | |||||
| 2052 | 671486386088865792 | 2015-12-01 00:30:04 | This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx | 10 | 10 | Malcolm | |||||
| 2053 | 671485057807351808 | 2015-12-01 00:24:48 | Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS | 11 | 10 | Penelope | |||||
| 2054 | 671390180817915904 | 2015-11-30 18:07:47 | Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez | 7 | 10 | None | |||||
| 2055 | 671362598324076544 | 2015-11-30 16:18:11 | This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 | 11 | 10 | Tanner | |||||
| 2056 | 671357843010908160 | 2015-11-30 15:59:17 | Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb | 9 | 10 | None | |||||
| 2057 | 671355857343524864 | 2015-11-30 15:51:24 | This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD | 10 | 10 | Lou | |||||
| 2058 | 671347597085433856 | 2015-11-30 15:18:34 | This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH | 9 | 10 | Lola | |||||
| 2059 | 671186162933985280 | 2015-11-30 04:37:05 | This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt | 10 | 10 | Sparky | |||||
| 2060 | 671182547775299584 | 2015-11-30 04:22:44 | This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu | 12 | 10 | None | |||||
| 2061 | 671166507850801152 | 2015-11-30 03:18:59 | This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w | 10 | 10 | Herm | |||||
| 2062 | 671163268581498880 | 2015-11-30 03:06:07 | Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX | 8 | 10 | None | |||||
| 2063 | 671159727754231808 | 2015-11-30 02:52:03 | This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 | 5 | 10 | Anthony | |||||
| 2064 | 671154572044468225 | 2015-11-30 02:31:34 | Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 & 8/10 https://t.co/RcksaUrGNu | 11 | 10 | Holly | |||||
| 2065 | 671151324042559489 | 2015-11-30 02:18:39 | *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii | 12 | 10 | None | |||||
| 2066 | 671147085991960577 | 2015-11-30 02:01:49 | This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr | 9 | 10 | NaN | |||||
| 2067 | 671141549288370177 | 2015-11-30 01:39:49 | Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 | 9 | 10 | None | |||||
| 2068 | 671138694582165504 | 2015-11-30 01:28:28 | Me running from commitment. 10/10 https://t.co/ycVJyFFkES | 10 | 10 | None | |||||
| 2069 | 671134062904504320 | 2015-11-30 01:10:04 | Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY | 8 | 10 | Clarence | |||||
| 2070 | 671122204919246848 | 2015-11-30 00:22:57 | Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 | 4 | 10 | None | |||||
| 2071 | 671115716440031232 | 2015-11-29 23:57:10 | Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV | 6 | 10 | Phred | |||||
| 2072 | 671109016219725825 | 2015-11-29 23:30:32 | This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H | 8 | 10 | Toby | |||||
| 2073 | 670995969505435648 | 2015-11-29 16:01:20 | Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm | 12 | 10 | None | |||||
| 2074 | 670842764863651840 | 2015-11-29 05:52:33 | After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY | 11 | 10 | None | |||||
| 2075 | 670840546554966016 | 2015-11-29 05:43:44 | Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX | 10 | 10 | Colby | |||||
| 2076 | 670838202509447168 | 2015-11-29 05:34:25 | Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk | 4 | 10 | None | |||||
| 2077 | 670833812859932673 | 2015-11-29 05:16:59 | This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F | 7 | 10 | Jett | |||||
| 2078 | 670832455012716544 | 2015-11-29 05:11:35 | This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx | 10 | 10 | Amy | |||||
| 2079 | 670826280409919488 | 2015-11-29 04:47:03 | Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT | 2 | 10 | None | |||||
| 2080 | 670823764196741120 | 2015-11-29 04:37:03 | This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ | 12 | 10 | Remington | |||||
| 2081 | 670822709593571328 | 2015-11-29 04:32:51 | Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 | 10 | 10 | None | |||||
| 2082 | 670815497391357952 | 2015-11-29 04:04:12 | This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 | 10 | 10 | Sage | |||||
| 2083 | 670811965569282048 | 2015-11-29 03:50:10 | Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn | 10 | 10 | Maggie | |||||
| 2084 | 670807719151067136 | 2015-11-29 03:33:17 | Say hello to Andy. He can balance on one foot, obliterate u in checkers, & transform into a rug. 11/10 much talents https://t.co/idzH8JH06g | 11 | 10 | Andy | |||||
| 2085 | 670804601705242624 | 2015-11-29 03:20:54 | Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b | 10 | 10 | Mason | |||||
| 2086 | 670803562457407488 | 2015-11-29 03:16:46 | I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR | 10 | 10 | None | |||||
| 2087 | 670797304698376195 | 2015-11-29 02:51:54 | This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 | 11 | 10 | Trigger | |||||
| 2088 | 670792680469889025 | 2015-11-29 02:33:32 | This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l | 7 | 10 | Antony | |||||
| 2089 | 670789397210615808 | 2015-11-29 02:20:29 | Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY | 9 | 10 | None | |||||
| 2090 | 670786190031921152 | 2015-11-29 02:07:44 | This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa | 8 | 10 | Creg | |||||
| 2091 | 670783437142401025 | 2015-11-29 01:56:48 | Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO | 1 | 10 | None | |||||
| 2092 | 670782429121134593 | 2015-11-29 01:52:48 | This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP | 5 | 10 | None | |||||
| 2093 | 670780561024270336 | 2015-11-29 01:45:22 | This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP | 7 | 10 | Traviss | |||||
| 2094 | 670778058496974848 | 2015-11-29 01:35:26 | "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g | 10 | 10 | None | |||||
| 2095 | 670764103623966721 | 2015-11-29 00:39:59 | Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 | 10 | 10 | Vincent | |||||
| 2096 | 670755717859713024 | 2015-11-29 00:06:39 | Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E | 9 | 10 | Gin | |||||
| 2097 | 670733412878163972 | 2015-11-28 22:38:01 | This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z | 8 | 10 | Jerry | |||||
| 2098 | 670727704916926465 | 2015-11-28 22:15:21 | This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt | 10 | 10 | Jeffrie | |||||
| 2099 | 670717338665226240 | 2015-11-28 21:34:09 | *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed | 12 | 10 | None | |||||
| 2100 | 670704688707301377 | 2015-11-28 20:43:53 | Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH | 6 | 10 | Danny | |||||
| 2101 | 670691627984359425 | 2015-11-28 19:51:59 | This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V | 8 | 10 | Ester | |||||
| 2102 | 670679630144274432 | 2015-11-28 19:04:19 | This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN | 8 | 10 | Pluto | |||||
| 2103 | 670676092097810432 | 2015-11-28 18:50:15 | This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc | 8 | 10 | Bloo | |||||
| 2104 | 670668383499735048 | 2015-11-28 18:19:37 | This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU | 10 | 10 | Phineas | |||||
| 2105 | 670474236058800128 | 2015-11-28 05:28:09 | Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 | 10 | 10 | None | |||||
| 2106 | 670468609693655041 | 2015-11-28 05:05:47 | This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG | 10 | 10 | Edd | |||||
| 2107 | 670465786746662913 | 2015-11-28 04:54:34 | Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD | 7 | 10 | None | |||||
| 2108 | 670452855871037440 | 2015-11-28 04:03:11 | This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK | 11 | 10 | None | |||||
| 2109 | 670449342516494336 | 2015-11-28 03:49:14 | Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e | 5 | 10 | None | |||||
| 2110 | 670444955656130560 | 2015-11-28 03:31:48 | This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq | 10 | 10 | Paull | |||||
| 2111 | 670442337873600512 | 2015-11-28 03:21:24 | Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp | 11 | 10 | Koda | |||||
| 2112 | 670435821946826752 | 2015-11-28 02:55:30 | Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE | 10 | 10 | None | |||||
| 2113 | 670434127938719744 | 2015-11-28 02:48:46 | Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj | 11 | 10 | Hank | |||||
| 2114 | 670433248821026816 | 2015-11-28 02:45:17 | This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK | 10 | 10 | Sam | |||||
| 2115 | 670428280563085312 | 2015-11-28 02:25:32 | This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad | 11 | 10 | Willy | |||||
| 2116 | 670427002554466305 | 2015-11-28 02:20:27 | This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo | 9 | 10 | NaN | |||||
| 2117 | 670421925039075328 | 2015-11-28 02:00:17 | Meet Herb. 12/10 https://t.co/tLRyYvCci3 | 12 | 10 | Herb | |||||
| 2118 | 670420569653809152 | 2015-11-28 01:54:54 | This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi | 10 | 10 | Damon | |||||
| 2119 | 670417414769758208 | 2015-11-28 01:42:22 | Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn | 6 | 10 | None | |||||
| 2120 | 670411370698022913 | 2015-11-28 01:18:21 | Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN | 12 | 10 | Scooter | |||||
| 2121 | 670408998013820928 | 2015-11-28 01:08:55 | This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY | 10 | 10 | Peanut | |||||
| 2122 | 670403879788544000 | 2015-11-28 00:48:35 | This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I | 10 | 10 | Nigel | |||||
| 2123 | 670385711116361728 | 2015-11-27 23:36:23 | Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S | 8 | 10 | Larry | |||||
| 2124 | 670374371102445568 | 2015-11-27 22:51:19 | Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K | 12 | 10 | Daisy | |||||
| 2125 | 670361874861563904 | 2015-11-27 22:01:40 | This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj | 9 | 10 | NaN | |||||
| 2126 | 670338931251150849 | 2015-11-27 20:30:30 | This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY | 10 | 10 | Butters | |||||
| 2127 | 670319130621435904 | 2015-11-27 19:11:49 | AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA | 11 | 10 | None | |||||
| 2128 | 670303360680108032 | 2015-11-27 18:09:09 | This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN | 9 | 10 | NaN | |||||
| 2129 | 670290420111441920 | 2015-11-27 17:17:44 | This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF | 11 | 10 | Sandra | |||||
| 2130 | 670093938074779648 | 2015-11-27 04:16:59 | This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 | 9 | 10 | Wally | |||||
| 2131 | 670086499208155136 | 2015-11-27 03:47:25 | "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f | 10 | 10 | None | |||||
| 2132 | 670079681849372674 | 2015-11-27 03:20:20 | Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD | 10 | 10 | Fabio | |||||
| 2133 | 670073503555706880 | 2015-11-27 02:55:47 | Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 | 10 | 10 | Winston | |||||
| 2134 | 670069087419133954 | 2015-11-27 02:38:14 | This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd | 5 | 10 | Randall | |||||
| 2135 | 670061506722140161 | 2015-11-27 02:08:07 | This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn | 11 | 10 | Liam | |||||
| 2136 | 670055038660800512 | 2015-11-27 01:42:24 | This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 | 3 | 10 | Tommy | |||||
| 2137 | 670046952931721218 | 2015-11-27 01:10:17 | This is Ben & Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU | 11 | 10 | Ben | |||||
| 2138 | 670040295598354432 | 2015-11-27 00:43:49 | 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK | 10 | 10 | None | |||||
| 2139 | 670037189829525505 | 2015-11-27 00:31:29 | Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q | 5 | 10 | None | |||||
| 2140 | 670003130994700288 | 2015-11-26 22:16:09 | This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt | 10 | 10 | Raphael | |||||
| 2141 | 669993076832759809 | 2015-11-26 21:36:12 | This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK | 9 | 10 | Zoey | |||||
| 2142 | 669972011175813120 | 2015-11-26 20:12:29 | Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ | 10 | 10 | None | |||||
| 2143 | 669970042633789440 | 2015-11-26 20:04:40 | This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 | 10 | 10 | Julio | |||||
| 2144 | 669942763794931712 | 2015-11-26 18:16:16 | This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F | 11 | 10 | Andru | |||||
| 2145 | 669926384437997569 | 2015-11-26 17:11:11 | I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw | 12 | 10 | None | |||||
| 2146 | 669923323644657664 | 2015-11-26 16:59:01 | This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX | 10 | 10 | NaN | |||||
| 2147 | 669753178989142016 | 2015-11-26 05:42:55 | Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 | 10 | 10 | Chester | |||||
| 2148 | 669749430875258880 | 2015-11-26 05:28:02 | Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB | 8 | 10 | Clarence | |||||
| 2149 | 669684865554620416 | 2015-11-26 01:11:28 | After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 | 11 | 10 | None | |||||
| 2150 | 669683899023405056 | 2015-11-26 01:07:38 | This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA | 10 | 10 | Kloey | |||||
| 2151 | 669682095984410625 | 2015-11-26 01:00:28 | Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB | 9 | 10 | Louie | |||||
| 2152 | 669680153564442624 | 2015-11-26 00:52:45 | This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx | 8 | 10 | Shawwn | |||||
| 2153 | 669661792646373376 | 2015-11-25 23:39:47 | This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM | 5 | 10 | NaN | |||||
| 2154 | 669625907762618368 | 2015-11-25 21:17:12 | This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 | 12 | 10 | Penny | |||||
| 2155 | 669603084620980224 | 2015-11-25 19:46:30 | Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs | 10 | 10 | None | |||||
| 2156 | 669597912108789760 | 2015-11-25 19:25:57 | This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF | 10 | 10 | Skye | |||||
| 2157 | 669583744538451968 | 2015-11-25 18:29:39 | Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu | 6 | 10 | None | |||||
| 2158 | 669573570759163904 | 2015-11-25 17:49:14 | This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id | 10 | 10 | Linda | |||||
| 2159 | 669571471778410496 | 2015-11-25 17:40:53 | This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y | 7 | 10 | Keith | |||||
| 2160 | 669567591774625800 | 2015-11-25 17:25:28 | Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX | 9 | 10 | Kollin | |||||
| 2161 | 669564461267722241 | 2015-11-25 17:13:02 | This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl | 10 | 10 | NaN | |||||
| 2162 | 669393256313184256 | 2015-11-25 05:52:43 | Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD | 10 | 10 | Ronduh | |||||
| 2163 | 669375718304980992 | 2015-11-25 04:43:02 | This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY | 6 | 10 | Billl | |||||
| 2164 | 669371483794317312 | 2015-11-25 04:26:12 | This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk | 10 | 10 | Oliviér | |||||
| 2165 | 669367896104181761 | 2015-11-25 04:11:57 | This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP | 10 | 10 | Chip | |||||
| 2166 | 669363888236994561 | 2015-11-25 03:56:01 | Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m | 10 | 10 | None | |||||
| 2167 | 669359674819481600 | 2015-11-25 03:39:17 | Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi | 11 | 10 | Saydee | |||||
| 2168 | 669354382627049472 | 2015-11-25 03:18:15 | Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx | 8 | 10 | Dug | |||||
| 2169 | 669353438988365824 | 2015-11-25 03:14:30 | This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv | 10 | 10 | Tessa | |||||
| 2170 | 669351434509529089 | 2015-11-25 03:06:32 | This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA | 10 | 10 | Sully | |||||
| 2171 | 669328503091937280 | 2015-11-25 01:35:25 | This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP | 12 | 10 | Kirk | |||||
| 2172 | 669327207240699904 | 2015-11-25 01:30:16 | Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 | 13 | 10 | None | |||||
| 2173 | 669324657376567296 | 2015-11-25 01:20:08 | Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc | 11 | 10 | Ralf | |||||
| 2174 | 669216679721873412 | 2015-11-24 18:11:04 | This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ | 8 | 10 | Clarq | |||||
| 2175 | 669214165781868544 | 2015-11-24 18:01:05 | This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT | 10 | 10 | Jaspers | |||||
| 2176 | 669203728096960512 | 2015-11-24 17:19:36 | This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 | 9 | 10 | Samsom | |||||
| 2177 | 669037058363662336 | 2015-11-24 06:17:19 | Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 https://t.co/Lh1BsJrWPp | 10 | 10 | None | |||||
| 2178 | 669015743032369152 | 2015-11-24 04:52:37 | Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN | 10 | 10 | None | |||||
| 2179 | 669006782128353280 | 2015-11-24 04:17:01 | This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu | 12 | 10 | Tucker | |||||
| 2180 | 669000397445533696 | 2015-11-24 03:51:38 | Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD | 11 | 10 | Terrance | |||||
| 2181 | 668994913074286592 | 2015-11-24 03:29:51 | Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh | 5 | 10 | None | |||||
| 2182 | 668992363537309700 | 2015-11-24 03:19:43 | This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl | 8 | 10 | Harrison | |||||
| 2183 | 668989615043424256 | 2015-11-24 03:08:48 | This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX | 3 | 10 | Bernie | |||||
| 2184 | 668988183816871936 | 2015-11-24 03:03:06 | Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF | 7 | 10 | None | |||||
| 2185 | 668986018524233728 | 2015-11-24 02:54:30 | This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH | 9 | 10 | Ruby | |||||
| 2186 | 668981893510119424 | 2015-11-24 02:38:07 | Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW | 4 | 10 | None | |||||
| 2187 | 668979806671884288 | 2015-11-24 02:29:49 | This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 | 12 | 10 | Chaz | |||||
| 2188 | 668975677807423489 | 2015-11-24 02:13:25 | This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY | 11 | 10 | Jeremy | |||||
| 2189 | 668967877119254528 | 2015-11-24 01:42:25 | 12/10 good shit Bubka\n@wane15 | 12 | 10 | None | |||||
| 2190 | 668960084974809088 | 2015-11-24 01:11:27 | Meet Jaycob. He got scared of the vacuum. Hide & seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK | 10 | 10 | Jaycob | |||||
| 2191 | 668955713004314625 | 2015-11-24 00:54:05 | This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 | 10 | 10 | NaN | |||||
| 2192 | 668932921458302977 | 2015-11-23 23:23:31 | This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 | 9 | 10 | Herald | |||||
| 2193 | 668902994700836864 | 2015-11-23 21:24:36 | Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe | 11 | 10 | Lambeau | |||||
| 2194 | 668892474547511297 | 2015-11-23 20:42:48 | This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj | 11 | 10 | Ruffles | |||||
| 2195 | 668872652652679168 | 2015-11-23 19:24:02 | This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf | 11 | 10 | Amélie | |||||
| 2196 | 668852170888998912 | 2015-11-23 18:02:38 | Say hello to Bobb. Bobb is a Golden High Fescue & a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY | 11 | 10 | Bobb | |||||
| 2197 | 668826086256599040 | 2015-11-23 16:18:59 | This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI | 10 | 10 | Banditt | |||||
| 2198 | 668815180734689280 | 2015-11-23 15:35:39 | This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ | 7 | 10 | NaN | |||||
| 2199 | 668779399630725120 | 2015-11-23 13:13:28 | This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW | 10 | 10 | Kevon | |||||
| 2200 | 668655139528511488 | 2015-11-23 04:59:42 | Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt | 11 | 10 | Winifred | |||||
| 2201 | 668645506898350081 | 2015-11-23 04:21:26 | Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 | 11 | 10 | None | |||||
| 2202 | 668643542311546881 | 2015-11-23 04:13:37 | Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N | 3 | 10 | None | |||||
| 2203 | 668641109086707712 | 2015-11-23 04:03:57 | Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ | 10 | 10 | Hanz | |||||
| 2204 | 668636665813057536 | 2015-11-23 03:46:18 | This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg | 10 | 10 | NaN | |||||
| 2205 | 668633411083464705 | 2015-11-23 03:33:22 | This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG | 10 | 10 | Churlie | |||||
| 2206 | 668631377374486528 | 2015-11-23 03:25:17 | Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH | 5 | 10 | Zeek | |||||
| 2207 | 668627278264475648 | 2015-11-23 03:09:00 | This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo | 9 | 10 | Timofy | |||||
| 2208 | 668625577880875008 | 2015-11-23 03:02:14 | This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs | 10 | 10 | Maks | |||||
| 2209 | 668623201287675904 | 2015-11-23 02:52:48 | This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj | 10 | 10 | Jomathan | |||||
| 2210 | 668620235289837568 | 2015-11-23 02:41:01 | Say hello to Kallie. There was a tornado in the area & the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx | 10 | 10 | Kallie | |||||
| 2211 | 668614819948453888 | 2015-11-23 02:19:29 | Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm | 7 | 10 | NaN | |||||
| 2212 | 668587383441514497 | 2015-11-23 00:30:28 | Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 | 13 | 10 | NaN | |||||
| 2213 | 668567822092664832 | 2015-11-22 23:12:44 | This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 | 11 | 10 | Marvin | |||||
| 2214 | 668544745690562560 | 2015-11-22 21:41:02 | It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 | 10 | 10 | None | |||||
| 2215 | 668542336805281792 | 2015-11-22 21:31:28 | There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 | 10 | 10 | None | |||||
| 2216 | 668537837512433665 | 2015-11-22 21:13:35 | This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 https://t.co/stEodX9Aba | 8 | 10 | Spark | |||||
| 2217 | 668528771708952576 | 2015-11-22 20:37:34 | This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW | 12 | 10 | Gòrdón | |||||
| 2218 | 668507509523615744 | 2015-11-22 19:13:05 | This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt | 10 | 10 | NaN | |||||
| 2219 | 668496999348633600 | 2015-11-22 18:31:19 | This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 | 8 | 10 | Jo | |||||
| 2220 | 668484198282485761 | 2015-11-22 17:40:27 | Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB | 9 | 10 | None | |||||
| 2221 | 668480044826800133 | 2015-11-22 17:23:57 | Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 | 11 | 10 | DayZ | |||||
| 2222 | 668466899341221888 | 2015-11-22 16:31:42 | Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m | 4 | 10 | NaN | |||||
| 2223 | 668297328638447616 | 2015-11-22 05:17:54 | 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU | 9 | 10 | None | |||||
| 2224 | 668291999406125056 | 2015-11-22 04:56:43 | I can't do better than he did. 10/10 https://t.co/fM0KXns7Or | 10 | 10 | None | |||||
| 2225 | 668286279830867968 | 2015-11-22 04:33:59 | Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc | 11 | 10 | Rusty | |||||
| 2226 | 668274247790391296 | 2015-11-22 03:46:11 | Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB | 10 | 10 | Sophie | |||||
| 2227 | 668268907921326080 | 2015-11-22 03:24:58 | Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN | 10 | 10 | None | |||||
| 2228 | 668256321989451776 | 2015-11-22 02:34:57 | This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd | 13 | 10 | Jareld | |||||
| 2229 | 668248472370458624 | 2015-11-22 02:03:45 | Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K | 8 | 10 | Bisquick | |||||
| 2230 | 668237644992782336 | 2015-11-22 01:20:44 | This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i | 10 | 10 | Torque | |||||
| 2231 | 668226093875376128 | 2015-11-22 00:34:50 | Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 | 10 | 10 | None | |||||
| 2232 | 668221241640230912 | 2015-11-22 00:15:33 | These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh | 10 | 10 | None | |||||
| 2233 | 668204964695683073 | 2015-11-21 23:10:52 | This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK | 8 | 10 | Ron | |||||
| 2234 | 668190681446379520 | 2015-11-21 22:14:07 | This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 | 12 | 10 | Skittles | |||||
| 2235 | 668171859951755264 | 2015-11-21 20:59:20 | This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb | 7 | 10 | NaN | |||||
| 2236 | 668154635664932864 | 2015-11-21 19:50:53 | Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI | 9 | 10 | None | |||||
| 2237 | 668142349051129856 | 2015-11-21 19:02:04 | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 | 2 | 10 | None | |||||
| 2238 | 668113020489474048 | 2015-11-21 17:05:31 | This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX | 6 | 10 | Alfie | |||||
| 2239 | 667937095915278337 | 2015-11-21 05:26:27 | This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq | 3 | 10 | None | |||||
| 2240 | 667924896115245057 | 2015-11-21 04:37:59 | This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 | 9 | 10 | Jiminy | |||||
| 2241 | 667915453470232577 | 2015-11-21 04:00:28 | Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN | 10 | 10 | Otis | |||||
| 2242 | 667911425562669056 | 2015-11-21 03:44:27 | Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 | 5 | 10 | None | |||||
| 2243 | 667902449697558528 | 2015-11-21 03:08:47 | This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W | 9 | 10 | Cleopatricia | |||||
| 2244 | 667886921285246976 | 2015-11-21 02:07:05 | This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 | 11 | 10 | Erik | |||||
| 2245 | 667885044254572545 | 2015-11-21 01:59:37 | Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd | 10 | 10 | Stu | |||||
| 2246 | 667878741721415682 | 2015-11-21 01:34:35 | This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&2/10 https://t.co/LvP1TTYSCN | 2 | 10 | Tedrick | |||||
| 2247 | 667873844930215936 | 2015-11-21 01:15:07 | Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE | 10 | 10 | None | |||||
| 2248 | 667866724293877760 | 2015-11-21 00:46:50 | This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X | 10 | 10 | Shaggy | |||||
| 2249 | 667861340749471744 | 2015-11-21 00:25:26 | This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba | 9 | 10 | NaN | |||||
| 2250 | 667832474953625600 | 2015-11-20 22:30:44 | THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 | 12 | 10 | None | |||||
| 2251 | 667806454573760512 | 2015-11-20 20:47:20 | This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 | 10 | 10 | Filup | |||||
| 2252 | 667801013445750784 | 2015-11-20 20:25:43 | OMIGOD 12/10 https://t.co/SVMF4Frf1w | 12 | 10 | None | |||||
| 2253 | 667793409583771648 | 2015-11-20 19:55:30 | Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O | 8 | 10 | None | |||||
| 2254 | 667782464991965184 | 2015-11-20 19:12:01 | Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x | 9 | 10 | None | |||||
| 2255 | 667773195014021121 | 2015-11-20 18:35:10 | This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD | 8 | 10 | NaN | |||||
| 2256 | 667766675769573376 | 2015-11-20 18:09:16 | This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe | 9 | 10 | Calvin | |||||
| 2257 | 667728196545200128 | 2015-11-20 15:36:22 | Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB | 11 | 10 | Olive | |||||
| 2258 | 667724302356258817 | 2015-11-20 15:20:54 | What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ | 7 | 10 | None | |||||
| 2261 | 667549055577362432 | 2015-11-20 03:44:31 | Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx | 1 | 10 | None | |||||
| 2262 | 667546741521195010 | 2015-11-20 03:35:20 | Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb | 9 | 10 | George | |||||
| 2263 | 667544320556335104 | 2015-11-20 03:25:43 | This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR | 10 | 10 | Kial | |||||
| 2264 | 667538891197542400 | 2015-11-20 03:04:08 | This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe | 9 | 10 | NaN | |||||
| 2265 | 667534815156183040 | 2015-11-20 02:47:56 | This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV | 8 | 10 | Frank | |||||
| 2266 | 667530908589760512 | 2015-11-20 02:32:25 | Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy | 10 | 10 | Naphaniel | |||||
| 2267 | 667524857454854144 | 2015-11-20 02:08:22 | Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm | 12 | 10 | None | |||||
| 2268 | 667517642048163840 | 2015-11-20 01:39:42 | This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 | 8 | 10 | Dook | |||||
| 2269 | 667509364010450944 | 2015-11-20 01:06:48 | This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 | 12 | 10 | None | |||||
| 2270 | 667502640335572993 | 2015-11-20 00:40:05 | Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl | 11 | 10 | Hall | |||||
| 2271 | 667495797102141441 | 2015-11-20 00:12:54 | This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i | 9 | 10 | Philippe | |||||
| 2272 | 667491009379606528 | 2015-11-19 23:53:52 | Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y | 7 | 10 | None | |||||
| 2273 | 667470559035432960 | 2015-11-19 22:32:36 | This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk | 11 | 10 | NaN | |||||
| 2274 | 667455448082227200 | 2015-11-19 21:32:34 | This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK | 7 | 10 | Reese | |||||
| 2275 | 667453023279554560 | 2015-11-19 21:22:56 | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa | 11 | 10 | Cupcake | |||||
| 2276 | 667443425659232256 | 2015-11-19 20:44:47 | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N | 6 | 10 | None | |||||
| 2277 | 667437278097252352 | 2015-11-19 20:20:22 | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx | 10 | 10 | None | |||||
| 2278 | 667435689202614272 | 2015-11-19 20:14:03 | Ermergerd 12/10 https://t.co/PQni2sjPsm | 12 | 10 | None | |||||
| 2279 | 667405339315146752 | 2015-11-19 18:13:27 | This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 | 7 | 10 | Biden | |||||
| 2280 | 667393430834667520 | 2015-11-19 17:26:08 | This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS | 8 | 10 | Fwed | |||||
| 2281 | 667369227918143488 | 2015-11-19 15:49:57 | Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 | 10 | 10 | None | |||||
| 2282 | 667211855547486208 | 2015-11-19 05:24:37 | This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH | 9 | 10 | Genevieve | |||||
| 2283 | 667200525029539841 | 2015-11-19 04:39:35 | This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ | 11 | 10 | Joshwa | |||||
| 2284 | 667192066997374976 | 2015-11-19 04:05:59 | *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 | 12 | 10 | None | |||||
| 2285 | 667188689915760640 | 2015-11-19 03:52:34 | Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV | 10 | 10 | None | |||||
| 2286 | 667182792070062081 | 2015-11-19 03:29:07 | This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl | 10 | 10 | Timison | |||||
| 2287 | 667177989038297088 | 2015-11-19 03:10:02 | This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW | 8 | 10 | NaN | |||||
| 2288 | 667176164155375616 | 2015-11-19 03:02:47 | These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN | 4 | 10 | None | |||||
| 2289 | 667174963120574464 | 2015-11-19 02:58:01 | This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs | 9 | 10 | Clarence | |||||
| 2290 | 667171260800061440 | 2015-11-19 02:43:18 | Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY | 10 | 10 | Kenneth | |||||
| 2291 | 667165590075940865 | 2015-11-19 02:20:46 | This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY | 10 | 10 | Churlie | |||||
| 2292 | 667160273090932737 | 2015-11-19 01:59:39 | This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 | 11 | 10 | Bradlay | |||||
| 2293 | 667152164079423490 | 2015-11-19 01:27:25 | This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X | 12 | 10 | Pipsy | |||||
| 2294 | 667138269671505920 | 2015-11-19 00:32:12 | Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V | 10 | 10 | None | |||||
| 2295 | 667119796878725120 | 2015-11-18 23:18:48 | This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ | 10 | 10 | Gabe | |||||
| 2296 | 667090893657276420 | 2015-11-18 21:23:57 | This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr | 7 | 10 | Clybe | |||||
| 2297 | 667073648344346624 | 2015-11-18 20:15:26 | Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq | 10 | 10 | Dave | |||||
| 2298 | 667070482143944705 | 2015-11-18 20:02:51 | After much debate this dog is being upgraded to 10/10. I repeat 10/10 | 10 | 10 | None | |||||
| 2299 | 667065535570550784 | 2015-11-18 19:43:11 | Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR | 8 | 10 | None | |||||
| 2300 | 667062181243039745 | 2015-11-18 19:29:52 | This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA | 10 | 10 | Keet | |||||
| 2301 | 667044094246576128 | 2015-11-18 18:17:59 | 12/10 gimme now https://t.co/QZAnwgnOMB | 12 | 10 | None | |||||
| 2302 | 667012601033924608 | 2015-11-18 16:12:51 | This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m | 9 | 10 | Klevin | |||||
| 2303 | 666996132027977728 | 2015-11-18 15:07:24 | This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk | 10 | 10 | Carll | |||||
| 2304 | 666983947667116034 | 2015-11-18 14:18:59 | This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc | 11 | 10 | NaN | |||||
| 2305 | 666837028449972224 | 2015-11-18 04:35:11 | My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h | 3 | 10 | None | |||||
| 2306 | 666835007768551424 | 2015-11-18 04:27:09 | These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 https://t.co/ZnEMHBsAs1 | 10 | 10 | None | |||||
| 2307 | 666826780179869698 | 2015-11-18 03:54:28 | 12/10 simply brilliant pup https://t.co/V6ZzG45zzG | 12 | 10 | None | |||||
| 2308 | 666817836334096384 | 2015-11-18 03:18:55 | This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO | 9 | 10 | Jeph | |||||
| 2309 | 666804364988780544 | 2015-11-18 02:25:23 | This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK | 8 | 10 | Jockson | |||||
| 2310 | 666786068205871104 | 2015-11-18 01:12:41 | Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S | 2 | 10 | None | |||||
| 2311 | 666781792255496192 | 2015-11-18 00:55:42 | This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa | 10 | 10 | NaN | |||||
| 2312 | 666776908487630848 | 2015-11-18 00:36:17 | This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH | 5 | 10 | Josep | |||||
| 2313 | 666739327293083650 | 2015-11-17 22:06:57 | This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI | 10 | 10 | Lugan | |||||
| 2314 | 666701168228331520 | 2015-11-17 19:35:19 | This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB | 8 | 10 | NaN | |||||
| 2315 | 666691418707132416 | 2015-11-17 18:56:35 | This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF | 8 | 10 | Christoper | |||||
| 2316 | 666649482315059201 | 2015-11-17 16:09:56 | Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s | 4 | 10 | None | |||||
| 2317 | 666644823164719104 | 2015-11-17 15:51:26 | This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ | 9 | 10 | Jimothy | |||||
| 2318 | 666454714377183233 | 2015-11-17 03:16:00 | I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua | 10 | 10 | Kreggory | |||||
| 2319 | 666447344410484738 | 2015-11-17 02:46:43 | This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW | 9 | 10 | Scout | |||||
| 2320 | 666437273139982337 | 2015-11-17 02:06:42 | Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK | 7 | 10 | None | |||||
| 2321 | 666435652385423360 | 2015-11-17 02:00:15 | "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU | 10 | 10 | None | |||||
| 2322 | 666430724426358785 | 2015-11-17 01:40:41 | Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM | 6 | 10 | None | |||||
| 2323 | 666428276349472768 | 2015-11-17 01:30:57 | Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK | 7 | 10 | None | |||||
| 2324 | 666421158376562688 | 2015-11-17 01:02:40 | *internally screaming* 12/10 https://t.co/YMcrXC2Y6R | 12 | 10 | None | |||||
| 2325 | 666418789513326592 | 2015-11-17 00:53:15 | This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn | 10 | 10 | Walter | |||||
| 2326 | 666411507551481857 | 2015-11-17 00:24:19 | This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t | 2 | 10 | NaN | |||||
| 2327 | 666407126856765440 | 2015-11-17 00:06:54 | This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h | 7 | 10 | NaN | |||||
| 2328 | 666396247373291520 | 2015-11-16 23:23:41 | Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE | 9 | 10 | None | |||||
| 2329 | 666373753744588802 | 2015-11-16 21:54:18 | Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl | 11 | 10 | None | |||||
| 2330 | 666362758909284353 | 2015-11-16 21:10:36 | Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM | 6 | 10 | None | |||||
| 2331 | 666353288456101888 | 2015-11-16 20:32:58 | Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO | 8 | 10 | None | |||||
| 2332 | 666345417576210432 | 2015-11-16 20:01:42 | Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB | 10 | 10 | None | |||||
| 2333 | 666337882303524864 | 2015-11-16 19:31:45 | This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL | 9 | 10 | NaN | |||||
| 2334 | 666293911632134144 | 2015-11-16 16:37:02 | This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 | 3 | 10 | NaN | |||||
| 2335 | 666287406224695296 | 2015-11-16 16:11:11 | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv | 9 | 10 | NaN | |||||
| 2336 | 666273097616637952 | 2015-11-16 15:14:19 | Can take selfies 11/10 https://t.co/ws2AMaNwPW | 11 | 10 | None | |||||
| 2337 | 666268910803644416 | 2015-11-16 14:57:41 | Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk | 10 | 10 | None | |||||
| 2338 | 666104133288665088 | 2015-11-16 04:02:55 | Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX | 1 | 10 | None | |||||
| 2339 | 666102155909144576 | 2015-11-16 03:55:04 | Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq | 11 | 10 | None | |||||
| 2340 | 666099513787052032 | 2015-11-16 03:44:34 | Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C | 8 | 10 | None | |||||
| 2341 | 666094000022159362 | 2015-11-16 03:22:39 | This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP | 9 | 10 | None | |||||
| 2342 | 666082916733198337 | 2015-11-16 02:38:37 | Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 | 6 | 10 | None | |||||
| 2343 | 666073100786774016 | 2015-11-16 01:59:36 | Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY | 10 | 10 | None | |||||
| 2344 | 666071193221509120 | 2015-11-16 01:52:02 | Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx | 9 | 10 | None | |||||
| 2345 | 666063827256086533 | 2015-11-16 01:22:45 | This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK | 10 | 10 | NaN | |||||
| 2346 | 666058600524156928 | 2015-11-16 01:01:59 | Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p | 8 | 10 | NaN | |||||
| 2347 | 666057090499244032 | 2015-11-16 00:55:59 | My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O | 9 | 10 | NaN | |||||
| 2348 | 666055525042405380 | 2015-11-16 00:49:46 | Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt | 10 | 10 | NaN | |||||
| 2349 | 666051853826850816 | 2015-11-16 00:35:11 | This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc | 2 | 10 | NaN | |||||
| 2350 | 666050758794694657 | 2015-11-16 00:30:50 | This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe | 10 | 10 | NaN | |||||
| 2351 | 666049248165822465 | 2015-11-16 00:24:50 | Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq | 5 | 10 | None | |||||
| 2352 | 666044226329800704 | 2015-11-16 00:04:52 | This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx | 6 | 10 | NaN | |||||
| 2353 | 666033412701032449 | 2015-11-15 23:21:54 | Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR | 9 | 10 | NaN | |||||
| 2354 | 666029285002620928 | 2015-11-15 23:05:30 | This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI | 7 | 10 | NaN | |||||
| 2355 | 666020888022790149 | 2015-11-15 22:32:08 | Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj | 8 | 10 | None |
clean_TA.tweet_id.duplicated().sum()
0
#dropping the doggo,floofer.puppo and pupper columns since they are already in the dog stages column.
clean_TA.drop(['doggo','floofer','pupper','puppo'],axis = 1,inplace =True)
clean_TA.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 2175 entries, 0 to 2355 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2175 non-null int64 1 timestamp 2175 non-null datetime64[ns] 2 text 2175 non-null object 3 rating_numerator 2175 non-null int64 4 rating_denominator 2175 non-null int64 5 name 2071 non-null object 6 dog_stage 2175 non-null object dtypes: datetime64[ns](1), int64(3), object(3) memory usage: 200.5+ KB
#testing the change of data types
clean_images.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1484 entries, 0 to 1483 Data columns (total 8 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1484 non-null int64 1 jpg_url 1484 non-null object 2 img_num 1484 non-null int64 3 p1_dog 1484 non-null bool 4 p2_dog 1484 non-null bool 5 p3_dog 1484 non-null bool 6 dog_breed 1484 non-null object 7 confidence_levels 1484 non-null float64 dtypes: bool(3), float64(1), int64(2), object(2) memory usage: 73.9+ KB
clean_tweet_jason.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2354 entries, 0 to 2353 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2354 non-null int64 1 retweet_count 2354 non-null int64 2 favorite_count 2354 non-null int64 dtypes: int64(3) memory usage: 55.3 KB
#converting the tweet_id column into integers like the other dataframes before merging
clean_images['tweet_id'] = clean_images['tweet_id'].astype(np.int64)
# joining the tweet_jason df to twitter archive df
TA_FT= pd.merge(clean_tweet_jason,clean_TA)
TA_FT
| tweet_id | retweet_count | favorite_count | timestamp | text | rating_numerator | rating_denominator | name | dog_stage | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 8853 | 39467 | 2017-08-01 16:23:56 | This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU | 13 | 10 | Phineas | |
| 1 | 892177421306343426 | 6514 | 33819 | 2017-08-01 00:17:27 | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | 13 | 10 | Tilly | |
| 2 | 891815181378084864 | 4328 | 25461 | 2017-07-31 00:18:03 | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | 12 | 10 | Archie | |
| 3 | 891689557279858688 | 8964 | 42908 | 2017-07-30 15:58:51 | This is Darla. She commenced a snooze mid meal. 13/10 happens to the best of us https://t.co/tD36da7qLQ | 13 | 10 | Darla | |
| 4 | 891327558926688256 | 9774 | 41048 | 2017-07-29 16:00:24 | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | 12 | 10 | Franklin | |
| 5 | 891087950875897856 | 3261 | 20562 | 2017-07-29 00:08:17 | Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh | 13 | 10 | None | |
| 6 | 890971913173991426 | 2158 | 12041 | 2017-07-28 16:27:12 | Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl | 13 | 10 | Jax | |
| 7 | 890729181411237888 | 16716 | 56848 | 2017-07-28 00:22:40 | When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq | 13 | 10 | None | |
| 8 | 890609185150312448 | 4429 | 28226 | 2017-07-27 16:25:51 | This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b | 13 | 10 | Zoey | |
| 9 | 890240255349198849 | 7711 | 32467 | 2017-07-26 15:59:51 | This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A | 14 | 10 | Cassie | doggo |
| 10 | 890006608113172480 | 7624 | 31166 | 2017-07-26 00:31:25 | This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme | 13 | 10 | Koda | |
| 11 | 889880896479866881 | 5156 | 28268 | 2017-07-25 16:11:53 | This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g | 13 | 10 | Bruno | |
| 12 | 889665388333682689 | 8538 | 38818 | 2017-07-25 01:55:32 | Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm | 13 | 10 | None | puppo |
| 13 | 889638837579907072 | 4735 | 27672 | 2017-07-25 00:10:02 | This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR | 12 | 10 | Ted | |
| 14 | 889531135344209921 | 2321 | 15359 | 2017-07-24 17:02:04 | This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq | 13 | 10 | Stuart | puppo |
| 15 | 889278841981685760 | 5637 | 25652 | 2017-07-24 00:19:32 | This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb | 13 | 10 | Oliver | |
| 16 | 888917238123831296 | 4709 | 29611 | 2017-07-23 00:22:39 | This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN | 12 | 10 | Jim | |
| 17 | 888804989199671297 | 4559 | 26080 | 2017-07-22 16:56:37 | This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K | 13 | 10 | Zeke | |
| 18 | 888554962724278272 | 3732 | 20290 | 2017-07-22 00:23:06 | This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK | 13 | 10 | Ralphus | |
| 19 | 888078434458587136 | 3653 | 22201 | 2017-07-20 16:49:33 | This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX | 12 | 10 | Gerald | |
| 20 | 887705289381826560 | 5609 | 30779 | 2017-07-19 16:06:48 | This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 | 13 | 10 | Jeffrey | |
| 21 | 887517139158093824 | 12082 | 46959 | 2017-07-19 03:39:09 | I've yet to rate a Venezuelan Hover Wiener. This is such an honor. 14/10 paw-inspiring af (IG: roxy.thedoxy) https://t.co/20VrLAA8ba | 14 | 10 | NaN | |
| 22 | 887473957103951883 | 18781 | 69871 | 2017-07-19 00:47:34 | This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX | 13 | 10 | Canela | |
| 23 | 887343217045368832 | 10737 | 34222 | 2017-07-18 16:08:03 | You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV | 13 | 10 | None | |
| 24 | 887101392804085760 | 6167 | 31061 | 2017-07-18 00:07:08 | This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp | 12 | 10 | None | |
| 25 | 886983233522544640 | 8084 | 35859 | 2017-07-17 16:17:36 | This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT | 13 | 10 | Maya | |
| 26 | 886736880519319552 | 3443 | 12306 | 2017-07-16 23:58:41 | This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b | 13 | 10 | Mingus | |
| 27 | 886680336477933568 | 4610 | 22798 | 2017-07-16 20:14:00 | This is Derek. He's late for a dog meeting. 13/10 pet...al to the metal https://t.co/BCoWue0abA | 13 | 10 | Derek | |
| 28 | 886366144734445568 | 3316 | 21524 | 2017-07-15 23:25:31 | This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox | 12 | 10 | Roscoe | pupper |
| 29 | 886267009285017600 | 4 | 117 | 2017-07-15 16:51:35 | @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution | 12 | 10 | None | |
| 30 | 886258384151887873 | 6523 | 28469 | 2017-07-15 16:17:19 | This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O | 13 | 10 | Waffles | |
| 31 | 885984800019947520 | 7097 | 33382 | 2017-07-14 22:10:11 | Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 | 12 | 10 | Jimbo | |
| 32 | 885528943205470208 | 6683 | 36689 | 2017-07-13 15:58:47 | This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF | 13 | 10 | Maisey | |
| 33 | 885518971528720385 | 3899 | 20788 | 2017-07-13 15:19:09 | I have a new hero and his name is Howard. 14/10 https://t.co/gzLHboL7Sk | 14 | 10 | None | |
| 34 | 885167619883638784 | 4556 | 22367 | 2017-07-12 16:03:00 | Here we have a corgi undercover as a malamute. Pawbably doing important investigative work. Zero control over tongue happenings. 13/10 https://t.co/44ItaMubBf | 13 | 10 | None | |
| 35 | 884925521741709313 | 16439 | 68152 | 2017-07-12 00:01:00 | This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa | 12 | 10 | Earl | |
| 36 | 884876753390489601 | 6096 | 28514 | 2017-07-11 20:47:12 | This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO | 13 | 10 | Lola | |
| 37 | 884562892145688576 | 5100 | 24765 | 2017-07-11 00:00:02 | This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 | 13 | 10 | Kevin | |
| 38 | 884441805382717440 | 5856 | 27478 | 2017-07-10 15:58:53 | I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC | 14 | 10 | None | |
| 39 | 884247878851493888 | 21298 | 74423 | 2017-07-10 03:08:17 | OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LITTLE BARKOUR HE'S SUPER SORRY 13/10 WOULD FORGIVE IMMEDIATE https://t.co/uF3pQ8Wubj | 13 | 10 | None | |
| 40 | 884162670584377345 | 3128 | 20771 | 2017-07-09 21:29:42 | Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ | 12 | 10 | Yogi | doggo |
| 41 | 883838122936631299 | 3586 | 22349 | 2017-07-09 00:00:04 | This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY | 12 | 10 | Noah | |
| 42 | 883482846933004288 | 10407 | 46860 | 2017-07-08 00:28:19 | This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 | 5 | 10 | Bella | |
| 43 | 883360690899218434 | 3825 | 22986 | 2017-07-07 16:22:55 | Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP | 13 | 10 | Grizzwald | floofer |
| 44 | 883117836046086144 | 6949 | 37914 | 2017-07-07 00:17:54 | Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E | 13 | 10 | None | |
| 45 | 882992080364220416 | 4122 | 24445 | 2017-07-06 15:58:11 | This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj | 13 | 10 | Rusty | |
| 46 | 882762694511734784 | 5134 | 28903 | 2017-07-06 00:46:41 | This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu | 12 | 10 | Gus | pupper |
| 47 | 882627270321602560 | 6342 | 28382 | 2017-07-05 15:48:34 | This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 | 13 | 10 | Stanley | |
| 48 | 882268110199369728 | 12118 | 45880 | 2017-07-04 16:01:23 | This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA | 13 | 10 | Alfy | |
| 49 | 882045870035918850 | 5203 | 29900 | 2017-07-04 01:18:17 | This is Koko. Her owner, inspired by Barney, recently built a cart for her to use during walks if she got tired. 13/10 rest easy Koko https://t.co/zeDpnsKX7w | 13 | 10 | Koko | |
| 50 | 881906580714921986 | 3533 | 24773 | 2017-07-03 16:04:48 | This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ | 12 | 10 | Rey | |
| 51 | 881666595344535552 | 11099 | 51522 | 2017-07-03 00:11:11 | This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s | 13 | 10 | Gary | |
| 52 | 881633300179243008 | 7 | 129 | 2017-07-02 21:58:53 | @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s | 17 | 10 | None | |
| 53 | 881536004380872706 | 16570 | 50199 | 2017-07-02 15:32:16 | Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF | 14 | 10 | NaN | pupper |
| 54 | 881268444196462592 | 5358 | 23501 | 2017-07-01 21:49:04 | Meet Elliot. He's a Canadian Forrest Pup. Unusual number of antlers for a dog. Sneaky tongue slip to celebrate #Canada150. 12/10 would pet https://t.co/cgwJwowTMC | 12 | 10 | Elliot | |
| 55 | 880935762899988482 | 2886 | 17346 | 2017-06-30 23:47:07 | This is Louis. He's crossing. It's a big deal. 13/10 h*ckin breathtaking https://t.co/D0wb1GlKAt | 13 | 10 | Louis | |
| 56 | 880872448815771648 | 3989 | 21734 | 2017-06-30 19:35:32 | Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf | 12 | 10 | None | |
| 57 | 880465832366813184 | 6546 | 29075 | 2017-06-29 16:39:47 | This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw | 12 | 10 | Bella | |
| 58 | 880221127280381952 | 4436 | 27640 | 2017-06-29 00:27:25 | Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK | 12 | 10 | Jesse | |
| 59 | 880095782870896641 | 4533 | 28150 | 2017-06-28 16:09:20 | Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 | 11 | 10 | None | |
| 60 | 879862464715927552 | 3642 | 22667 | 2017-06-28 00:42:13 | This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 | 13 | 10 | Romeo | |
| 61 | 879674319642796034 | 10 | 315 | 2017-06-27 12:14:36 | @RealKentMurphy 14/10 confirmed | 14 | 10 | None | |
| 62 | 879492040517615616 | 3323 | 23822 | 2017-06-27 00:10:17 | This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 | 12 | 10 | Bailey | |
| 63 | 879415818425184262 | 45849 | 107956 | 2017-06-26 19:07:24 | This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY | 13 | 10 | Duddles | |
| 64 | 879376492567855104 | 3261 | 17099 | 2017-06-26 16:31:08 | This is Jack AKA Stephen Furry. You're not scoring on him. Unless he slips down the slide. 12/10 would happily get blocked by https://t.co/0gOi601EAa | 12 | 10 | Jack | |
| 65 | 879050749262655488 | 4941 | 23022 | 2017-06-25 18:56:45 | This is Steven. He has trouble relating to other dogs. Quite shy. Neck longer than average. Tropical probably. 11/10 would still pet https://t.co/2mJCDEJWdD | 11 | 10 | Steven | |
| 66 | 879008229531029506 | 2812 | 19317 | 2017-06-25 16:07:47 | This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN | 13 | 10 | Beau | |
| 67 | 878776093423087618 | 4319 | 19763 | 2017-06-25 00:45:22 | This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS | 13 | 10 | Snoopy | puppo |
| 68 | 878604707211726852 | 7582 | 30931 | 2017-06-24 13:24:20 | Martha is stunning how h*ckin dare you. 13/10 https://t.co/9uABQXgjwa | 13 | 10 | None | |
| 69 | 878281511006478336 | 1349 | 7913 | 2017-06-23 16:00:04 | Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 | 13 | 10 | Shadow | |
| 70 | 878057613040115712 | 7181 | 42876 | 2017-06-23 01:10:23 | This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe | 14 | 10 | Emmy | |
| 71 | 877736472329191424 | 17300 | 71144 | 2017-06-22 03:54:17 | This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r | 13 | 10 | Aja | |
| 72 | 877556246731214848 | 3994 | 23258 | 2017-06-21 15:58:08 | This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP | 12 | 10 | Penny | |
| 73 | 877316821321428993 | 5414 | 27907 | 2017-06-21 00:06:44 | Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc | 13 | 10 | Dante | |
| 74 | 877201837425926144 | 5880 | 27755 | 2017-06-20 16:29:50 | This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y | 12 | 10 | Nelly | |
| 75 | 876838120628539392 | 3506 | 21125 | 2017-06-19 16:24:33 | This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 | 12 | 10 | Ginger | pupper |
| 76 | 876537666061221889 | 4800 | 23869 | 2017-06-18 20:30:39 | I can say with the pupmost confidence that the doggos who assisted with this search are heroic as h*ck. 14/10 for all https://t.co/8yoc1CNTsu | 14 | 10 | None | |
| 77 | 876484053909872640 | 2511 | 19163 | 2017-06-18 16:57:37 | This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs | 13 | 10 | Benedict | |
| 78 | 876120275196170240 | 4903 | 28490 | 2017-06-17 16:52:05 | Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek | 13 | 10 | Venti | |
| 79 | 875747767867523072 | 4497 | 25773 | 2017-06-16 16:11:53 | This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN | 13 | 10 | Goose | |
| 80 | 875144289856114688 | 5081 | 22185 | 2017-06-15 00:13:52 | Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj | 13 | 10 | Nugget | |
| 81 | 875097192612077568 | 6342 | 27997 | 2017-06-14 21:06:43 | You'll get your package when that precious man is done appreciating the pups. 13/10 for everyone https://t.co/PFp4MghzBW | 13 | 10 | None | |
| 82 | 875021211251597312 | 4922 | 26022 | 2017-06-14 16:04:48 | Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW | 12 | 10 | None | |
| 83 | 874680097055178752 | 4875 | 28439 | 2017-06-13 17:29:20 | Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD | 12 | 10 | Cash | |
| 84 | 874296783580663808 | 4308 | 26651 | 2017-06-12 16:06:11 | This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm | 13 | 10 | Jed | pupper |
| 85 | 874057562936811520 | 4125 | 23134 | 2017-06-12 00:15:36 | I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 | 12 | 10 | None | |
| 86 | 874012996292530176 | 11007 | 35501 | 2017-06-11 21:18:31 | This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V | 13 | 10 | Sebastian | puppo |
| 87 | 873580283840344065 | 4143 | 24837 | 2017-06-10 16:39:04 | We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n | 13 | 10 | None | |
| 88 | 873213775632977920 | 1667 | 7467 | 2017-06-09 16:22:42 | This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ | 12 | 10 | Sierra | pupper |
| 89 | 872967104147763200 | 5669 | 28031 | 2017-06-09 00:02:31 | Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR | 12 | 10 | None | doggo |
| 90 | 872820683541237760 | 3884 | 15029 | 2017-06-08 14:20:41 | Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 | 13 | 10 | None | |
| 91 | 872620804844003328 | 3911 | 21309 | 2017-06-08 01:06:27 | This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 | 13 | 10 | Monkey | |
| 92 | 872486979161796608 | 9429 | 41606 | 2017-06-07 16:14:40 | We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ | 12 | 10 | None | |
| 93 | 872261713294495745 | 6649 | 35085 | 2017-06-07 01:19:32 | This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa | 13 | 10 | Harry | |
| 94 | 872122724285648897 | 8549 | 35324 | 2017-06-06 16:07:15 | This is Kody. He's a baller. Wishes he was a little bit taller. Double dribbles often. Still 12/10 would happily get dunked on https://t.co/PKSpmiefwN | 12 | 10 | Kody | |
| 95 | 871879754684805121 | 11918 | 39090 | 2017-06-06 00:01:46 | Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w | 13 | 10 | Lassie | |
| 96 | 871762521631449091 | 3678 | 20787 | 2017-06-05 16:15:56 | This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg | 12 | 10 | Rover | pupper |
| 97 | 871515927908634625 | 3628 | 20730 | 2017-06-04 23:56:03 | This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw | 12 | 10 | Napolean | doggo |
| 98 | 871102520638267392 | 5764 | 21461 | 2017-06-03 20:33:19 | Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH | 14 | 10 | None | doggo |
| 99 | 871032628920680449 | 3999 | 23255 | 2017-06-03 15:55:36 | This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo | 13 | 10 | Boomer | |
| 100 | 870804317367881728 | 6393 | 33791 | 2017-06-03 00:48:22 | Real funny guys. Sending in a pic without a dog in it. Hilarious. We'll rate the rug tho because it's giving off a very good vibe. 11/10 https://t.co/GCD1JccCyi | 11 | 10 | None | |
| 101 | 870726314365509632 | 3 | 121 | 2017-06-02 19:38:25 | @ComplicitOwl @ShopWeRateDogs >10/10 is reserved for dogs | 10 | 10 | None | |
| 102 | 870656317836468226 | 2817 | 12819 | 2017-06-02 15:00:16 | This is Cody. He zoomed too aggressively and tore his ACL. Happens to the best of us. Still 13/10\n\nHelp Cody here: https://t.co/4hxnDOt1CV https://t.co/42ryYRQ2Q4 | 13 | 10 | Cody | |
| 103 | 870374049280663552 | 27680 | 85011 | 2017-06-01 20:18:38 | This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm | 13 | 10 | Zoey | |
| 104 | 870308999962521604 | 4384 | 22453 | 2017-06-01 16:00:09 | This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 | 13 | 10 | Rumble | |
| 105 | 870063196459192321 | 8840 | 37771 | 2017-05-31 23:43:25 | Meet Clifford. He's quite large. Also red. Good w kids. Somehow never steps on them. Massive poops very inconvenient. Still 14/10 would ride https://t.co/apVOyDgOju | 14 | 10 | Clifford | |
| 106 | 869772420881756160 | 10663 | 43710 | 2017-05-31 04:27:59 | This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D | 13 | 10 | Dewey | |
| 107 | 869702957897576449 | 6728 | 29116 | 2017-05-30 23:51:58 | Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq | 13 | 10 | Stanley | |
| 108 | 869596645499047938 | 3327 | 16476 | 2017-05-30 16:49:31 | This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo | 12 | 10 | Scout | doggo |
| 109 | 869227993411051520 | 4023 | 21112 | 2017-05-29 16:24:37 | This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ | 13 | 10 | Gizmo | |
| 110 | 868880397819494401 | 12518 | 55098 | 2017-05-28 17:23:24 | This is Walter. He won't start hydrotherapy without his favorite floatie. 14/10 keep it pup Walter https://t.co/r28jFx9uyF | 14 | 10 | Walter | |
| 111 | 868622495443632128 | 6275 | 28295 | 2017-05-28 00:18:35 | Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM | 13 | 10 | None | |
| 112 | 868552278524837888 | 2240 | 10539 | 2017-05-27 19:39:34 | Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi | 12 | 10 | Cooper | |
| 113 | 867900495410671616 | 4439 | 24964 | 2017-05-26 00:29:37 | Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ | 12 | 10 | None | |
| 114 | 867774946302451713 | 7788 | 35179 | 2017-05-25 16:10:44 | Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa | 13 | 10 | Harold | |
| 115 | 867421006826221569 | 2697 | 16755 | 2017-05-24 16:44:18 | This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go | 12 | 10 | Shikha | puppo |
| 116 | 867051520902168576 | 8425 | 33420 | 2017-05-23 16:16:06 | Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ | 13 | 10 | None | |
| 117 | 866720684873056260 | 5168 | 20888 | 2017-05-22 18:21:28 | He was providing for his family 13/10 how dare you https://t.co/Q8mVwWN3f4 | 13 | 10 | None | |
| 118 | 866686824827068416 | 3727 | 20070 | 2017-05-22 16:06:55 | This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z | 12 | 10 | Lili | |
| 119 | 866450705531457537 | 32883 | 106827 | 2017-05-22 00:28:40 | This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr | 13 | 10 | Jamesy | pupper |
| 120 | 866334964761202691 | 15546 | 54720 | 2017-05-21 16:48:45 | This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c | 12 | 10 | Coco | |
| 121 | 865718153858494464 | 6008 | 26640 | 2017-05-19 23:57:46 | Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg | 13 | 10 | Boomer | |
| 122 | 865359393868664832 | 5384 | 27530 | 2017-05-19 00:12:11 | This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc | 13 | 10 | Sammy | |
| 123 | 865006731092295680 | 8209 | 29063 | 2017-05-18 00:50:50 | This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o | 13 | 10 | Nelly | |
| 124 | 864873206498414592 | 9361 | 33651 | 2017-05-17 16:00:15 | We only rate dogs. Please don't send in Jesus. We're trying to remain professional and legitimate. Thank you... 14/10 https://t.co/wr3xsjeCIR | 14 | 10 | None | |
| 125 | 864279568663928832 | 3266 | 15195 | 2017-05-16 00:41:21 | This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck | 12 | 10 | Meatball | |
| 126 | 864197398364647424 | 9616 | 31459 | 2017-05-15 19:14:50 | This is Paisley. She ate a flower just to prove she could. Savage af. 13/10 would pet so well https://t.co/cPq9fYvkzr | 13 | 10 | Paisley | |
| 127 | 863907417377173506 | 4441 | 21477 | 2017-05-15 00:02:33 | This is Albus. He's quite impressive at hide and seek. Knows he's been found this time. 13/10 usually elusive as h*ck https://t.co/ht47njyZ64 | 13 | 10 | Albus | |
| 128 | 863553081350529029 | 4489 | 15935 | 2017-05-14 00:34:33 | This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop | 13 | 10 | Neptune | |
| 129 | 863432100342583297 | 5664 | 24829 | 2017-05-13 16:33:49 | This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H | 12 | 10 | Belle | |
| 130 | 863427515083354112 | 105 | 2363 | 2017-05-13 16:15:35 | @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10 | 12 | 10 | None | |
| 131 | 863079547188785154 | 1195 | 9094 | 2017-05-12 17:12:53 | Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen | 14 | 10 | None | |
| 132 | 863062471531167744 | 2687 | 8945 | 2017-05-12 16:05:02 | Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt | 13 | 10 | Quinn | |
| 133 | 862831371563274240 | 5457 | 20011 | 2017-05-12 00:46:44 | This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE | 13 | 10 | Zooey | |
| 134 | 862722525377298433 | 3809 | 17779 | 2017-05-11 17:34:13 | This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 | 11 | 10 | Dave | |
| 135 | 862457590147678208 | 5388 | 21492 | 2017-05-11 00:01:27 | This is Jersey. He likes to watch movies, but only if you watch with him. Enjoys horror films like The Bababork and H*ckraiser. 13/10 https://t.co/jvSNASweNb | 13 | 10 | Jersey | |
| 136 | 862096992088072192 | 21840 | 66437 | 2017-05-10 00:08:34 | We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd | 13 | 10 | None | |
| 137 | 861383897657036800 | 11528 | 37744 | 2017-05-08 00:54:59 | This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 | 13 | 10 | Hobbes | |
| 138 | 861288531465048066 | 4479 | 18032 | 2017-05-07 18:36:02 | HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SAY. IT'S. H*CKIN. RIDICULOUS. THAT. DOGS. CAN'T VOTE. ABSOLUTE. CODSWALLUP. THANK. YOU. 13/10 https://t.co/SqKJPwbQ2g | 13 | 10 | None | |
| 139 | 861005113778896900 | 4119 | 17538 | 2017-05-06 23:49:50 | This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 | 12 | 10 | Burt | |
| 140 | 860563773140209665 | 2334 | 7878 | 2017-05-05 18:36:06 | Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt | 13 | 10 | Lorenzo | |
| 141 | 860524505164394496 | 5698 | 24678 | 2017-05-05 16:00:04 | This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I | 13 | 10 | Carl | |
| 142 | 860276583193509888 | 3745 | 19154 | 2017-05-04 23:34:55 | This is Jordy. He likes to go on adventures and watch the small scaly underwater dogs with fins pass him by. 12/10 peaceful as h*ck https://t.co/xJo6S2sfsN | 12 | 10 | Jordy | |
| 143 | 860184849394610176 | 6295 | 17474 | 2017-05-04 17:30:24 | Here we have perhaps the wisest dog of all. Above average with light sabers. Immortal as h*ck. 14/10 dog, or dog not, there is no try https://t.co/upRYxG4KbG | 14 | 10 | None | |
| 144 | 859924526012018688 | 4349 | 20021 | 2017-05-04 00:15:58 | Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 | 12 | 10 | Milky | |
| 145 | 859851578198683649 | 3780 | 16105 | 2017-05-03 19:26:06 | Meet Trooper. He picks pup recyclables that have blown out of bins in the neighborhood and puts them back. 13/10 environmentally savvy af https://t.co/BqSttrTuIl | 13 | 10 | Trooper | |
| 146 | 859607811541651456 | 1704 | 19476 | 2017-05-03 03:17:27 | Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 | 13 | 10 | None | puppo |
| 147 | 859196978902773760 | 25661 | 75193 | 2017-05-02 00:04:57 | We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 | 12 | 10 | NaN | |
| 148 | 859074603037188101 | 14740 | 35553 | 2017-05-01 15:58:40 | Here we have an exotic dog. Good at ukulele. Fashionable af. Has two more arms if needed. Is blue. Knows what 'ohana means. 13/10 would pet https://t.co/gEsymGTXCT | 13 | 10 | None | |
| 149 | 858843525470990336 | 3771 | 16304 | 2017-05-01 00:40:27 | I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq | 13 | 10 | None | doggo |
| 150 | 858471635011153920 | 5271 | 22640 | 2017-04-30 00:02:42 | This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy | 13 | 10 | Sophie | |
| 151 | 858107933456039936 | 3154 | 16524 | 2017-04-28 23:57:28 | This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF | 12 | 10 | Wyatt | |
| 152 | 857989990357356544 | 2812 | 16952 | 2017-04-28 16:08:49 | This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X | 12 | 10 | Rosie | |
| 153 | 857746408056729600 | 11524 | 36021 | 2017-04-28 00:00:54 | Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai | 13 | 10 | Thor | |
| 154 | 857393404942143489 | 1785 | 6236 | 2017-04-27 00:38:11 | Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV | 13 | 10 | None | |
| 155 | 857263160327368704 | 4934 | 21041 | 2017-04-26 16:00:39 | This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC | 13 | 10 | Oscar | |
| 156 | 857214891891077121 | 20 | 242 | 2017-04-26 12:48:51 | @Marc_IRL pixelated af 12/10 | 12 | 10 | None | |
| 157 | 857029823797047296 | 4364 | 19910 | 2017-04-26 00:33:27 | This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu | 12 | 10 | Zeke | |
| 158 | 856543823941562368 | 3131 | 17135 | 2017-04-24 16:22:16 | This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO | 12 | 10 | Callie | |
| 159 | 856526610513747968 | 2068 | 12446 | 2017-04-24 15:13:52 | THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA | 14 | 10 | None | |
| 160 | 856288084350160898 | 17 | 545 | 2017-04-23 23:26:03 | @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10 | 14 | 10 | None | |
| 161 | 856282028240666624 | 6841 | 29086 | 2017-04-23 23:01:59 | This is Cermet, Paesh, and Morple. They are absolute h*ckin superstars. Watered every day so they can grow. 14/10 for all https://t.co/GUefqUmZv8 | 14 | 10 | Cermet | |
| 162 | 855862651834028034 | 27 | 320 | 2017-04-22 19:15:32 | @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research | 11 | 10 | None | |
| 163 | 855860136149123072 | 1058 | 4407 | 2017-04-22 19:05:32 | @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 | 11 | 10 | None | |
| 164 | 855857698524602368 | 2313 | 12498 | 2017-04-22 18:55:51 | HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS AMAZING HI HUMAN I LOVE YOU AS WELL" 13/10 https://t.co/sb73bV5Y7S | 13 | 10 | None | |
| 165 | 855851453814013952 | 19196 | 47844 | 2017-04-22 18:31:02 | Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel | 13 | 10 | None | doggo, puppo |
| 166 | 855818117272018944 | 5943 | 28056 | 2017-04-22 16:18:34 | I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUST WANTS TO SAY HI AND MAYBE A NOGGIN PAT SHOW SOME RESPECT 13/10 https://t.co/5BEjzT2Tth | 13 | 10 | None | |
| 167 | 855459453768019968 | 8987 | 31657 | 2017-04-21 16:33:22 | Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x | 12 | 10 | NaN | |
| 168 | 854732716440526848 | 6690 | 24188 | 2017-04-19 16:25:34 | This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s | 12 | 10 | Marlee | |
| 169 | 854482394044301312 | 7608 | 31131 | 2017-04-18 23:50:52 | This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 | 13 | 10 | Arya | |
| 170 | 854365224396361728 | 5159 | 20046 | 2017-04-18 16:05:17 | This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 | 13 | 10 | Einstein | |
| 171 | 854120357044912130 | 8285 | 33911 | 2017-04-17 23:52:16 | Sometimes you guys remind me just how impactful a pupper can be. Cooper will be remembered as a good boy by so many. 14/10 rest easy friend https://t.co/oBL7LEJEzR | 14 | 10 | None | pupper |
| 172 | 854010172552949760 | 3433 | 17169 | 2017-04-17 16:34:26 | At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk | 11 | 10 | None | doggo, floofer |
| 173 | 853760880890318849 | 6403 | 30414 | 2017-04-17 00:03:50 | Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x | 12 | 10 | Alice | |
| 174 | 853639147608842240 | 11265 | 37198 | 2017-04-16 16:00:07 | A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe | 13 | 10 | None | |
| 175 | 853299958564483072 | 3928 | 16508 | 2017-04-15 17:32:18 | This is Rumpole. He'll be your Uber driver this evening. Won't start driving until you buckle pup. 13/10 h*ckin safe good boy https://t.co/EX9Z3EXlVP | 13 | 10 | Rumpole | |
| 176 | 852912242202992640 | 2037 | 9658 | 2017-04-14 15:51:39 | Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U | 12 | 10 | Benny | |
| 177 | 852672615818899456 | 2388 | 15939 | 2017-04-13 23:59:28 | This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW | 12 | 10 | Aspen | |
| 178 | 852553447878664193 | 3885 | 17492 | 2017-04-13 16:05:56 | This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC | 13 | 10 | Jarod | |
| 179 | 852311364735569921 | 10961 | 35325 | 2017-04-13 00:03:59 | This is Wiggles. She would like you to spot her. Probably won't need your help but just in case. 13/10 powerful as h*ck https://t.co/2d370P0OEg | 13 | 10 | Wiggles | |
| 180 | 852226086759018497 | 7570 | 21378 | 2017-04-12 18:25:07 | Meet General. He wasn't content with the quality of his room. Requested to pupgrade, but was ignored. 14/10 look who just lost a customer https://t.co/NP5JW8LnmW | 14 | 10 | General | |
| 181 | 852189679701164033 | 1741 | 12217 | 2017-04-12 16:00:27 | This is Sailor. He has collected the best dirt in the area. As any good boy would. Under the impression you know what to do next. 12/10 https://t.co/jrFzScKWEG | 12 | 10 | Sailor | |
| 182 | 851591660324737024 | 3819 | 17300 | 2017-04-11 00:24:08 | Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS | 11 | 10 | None | |
| 183 | 851464819735769094 | 7855 | 25944 | 2017-04-10 16:00:07 | This is Iggy. He was a rescue dog killed in the Stockholm attack. His memorial started with a collar and four bones. It's grown a bit. 14/10 https://t.co/E4a0R9my1M | 14 | 10 | Iggy | |
| 184 | 851224888060895234 | 6350 | 22090 | 2017-04-10 00:06:42 | Meet Snoop. His number one passion is sticking his head out of car windows, so he purchased some doggles. Stylish af. 13/10 happy travels https://t.co/iHYfZdz444 | 13 | 10 | Snoop | |
| 185 | 850753642995093505 | 10352 | 33348 | 2017-04-08 16:54:09 | This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN | 11 | 10 | Kyle | |
| 186 | 850380195714523136 | 2915 | 13994 | 2017-04-07 16:10:12 | This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO | 13 | 10 | Leo | |
| 187 | 850333567704068097 | 367 | 3647 | 2017-04-07 13:04:55 | @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS | 13 | 10 | None | |
| 188 | 850145622816686080 | 4244 | 17519 | 2017-04-07 00:38:06 | This is Riley. He's making new friends. Jubilant as h*ck for the fun times ahead. 11/10 for all pups pictured https://t.co/PCX25VV78l | 11 | 10 | Riley | |
| 189 | 850019790995546112 | 5459 | 21944 | 2017-04-06 16:18:05 | Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde | 12 | 10 | Boomer | pupper |
| 190 | 849776966551130114 | 8404 | 32390 | 2017-04-06 00:13:11 | Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT | 12 | 10 | None | |
| 191 | 849412302885593088 | 3487 | 17039 | 2017-04-05 00:04:08 | This is Noosh. He noticed you were in the shower and thought you could use some company. 12/10 h*ckin loyal https://t.co/Uq3ChFgWA3 | 12 | 10 | Noosh | |
| 192 | 849336543269576704 | 2101 | 12240 | 2017-04-04 19:03:06 | At first I thought this was a dog because of the sign, but it is clearly Wilson from Home Improvement. Please only send in dogs... 11/10 https://t.co/jqPk1BZ6xu | 11 | 10 | None | |
| 193 | 849051919805034497 | 7396 | 32617 | 2017-04-04 00:12:06 | This is Kevin. Kevin doesn't give a single h*ck. Will sit in the fountain if he wants to. 13/10 churlish af https://t.co/r6GjO6MbZz | 13 | 10 | Kevin | |
| 194 | 848690551926992896 | 4826 | 27104 | 2017-04-03 00:16:10 | Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU | 12 | 10 | None | |
| 195 | 848324959059550208 | 4037 | 20229 | 2017-04-02 00:03:26 | Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z | 12 | 10 | Odin | |
| 196 | 848213670039564288 | 832 | 8834 | 2017-04-01 16:41:12 | Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet | 11 | 10 | None | |
| 197 | 848212111729840128 | 3444 | 17618 | 2017-04-01 16:35:01 | This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 | 6 | 10 | Jerry | |
| 198 | 847962785489326080 | 5730 | 25296 | 2017-04-01 00:04:17 | This is Georgie. He's very shy. Only puppears when called. Aggressively average at fetch. Unique front paws. Looks slippery. 10/10 would pet https://t.co/rcDs5LkiSj | 10 | 10 | Georgie | |
| 199 | 847842811428974592 | 1522 | 5935 | 2017-03-31 16:07:33 | This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 | 12 | 10 | Rontu | |
| 200 | 847617282490613760 | 468 | 7558 | 2017-03-31 01:11:22 | .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10 | 13 | 10 | None | |
| 201 | 847606175596138505 | 3774 | 20208 | 2017-03-31 00:27:14 | This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 | 12 | 10 | Cannon | |
| 202 | 847251039262605312 | 4800 | 22036 | 2017-03-30 00:56:03 | This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq | 12 | 10 | Furzey | |
| 203 | 847157206088847362 | 6572 | 21588 | 2017-03-29 18:43:12 | Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r | 11 | 10 | Daisy | |
| 204 | 847116187444137987 | 3583 | 23108 | 2017-03-29 16:00:12 | Unbelievable... We. Only. Rate. Dogs. Please stop sending in other things like this Blossoming Flop Kangaroo. Thank you... 11/10 https://t.co/EeeErAbso0 | 11 | 10 | None | |
| 205 | 846874817362120707 | 4404 | 21685 | 2017-03-29 00:01:05 | This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe | 13 | 10 | Tuck | |
| 206 | 846514051647705089 | 13076 | 48410 | 2017-03-28 00:07:32 | This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK | 13 | 10 | Barney | doggo |
| 207 | 846505985330044928 | 3492 | 15304 | 2017-03-27 23:35:28 | THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 STILL A VERY GOOD DOG https://t.co/GJ8rozumsy | 11 | 10 | None | |
| 208 | 846153765933735936 | 10226 | 34394 | 2017-03-27 00:15:53 | This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR | 13 | 10 | Vixen | |
| 209 | 846139713627017216 | 10972 | 33188 | 2017-03-26 23:20:02 | SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON THE BRAKES 13/10 CANCEL THE GAME THIS IS ALL WE NEED https://t.co/4ctgpGcqAd | 13 | 10 | None | |
| 210 | 846042936437604353 | 3224 | 17256 | 2017-03-26 16:55:29 | Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW | 12 | 10 | Jarvis | |
| 211 | 845812042753855489 | 9894 | 31737 | 2017-03-26 01:38:00 | We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP | 13 | 10 | None | |
| 212 | 845677943972139009 | 5365 | 27154 | 2017-03-25 16:45:08 | C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo | 12 | 10 | None | |
| 213 | 845397057150107648 | 2072 | 8241 | 2017-03-24 22:08:59 | Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o | 13 | 10 | Mimosa | doggo |
| 214 | 845306882940190720 | 6039 | 25225 | 2017-03-24 16:10:40 | This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk | 12 | 10 | Pickles | pupper |
| 215 | 844979544864018432 | 2909 | 14738 | 2017-03-23 18:29:57 | PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B | 13 | 10 | None | |
| 216 | 844973813909606400 | 3617 | 16361 | 2017-03-23 18:07:10 | This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr | 12 | 10 | Brady | |
| 217 | 844704788403113984 | 11633 | 42022 | 2017-03-23 00:18:10 | This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN | 13 | 10 | Luna | |
| 218 | 844580511645339650 | 3533 | 17871 | 2017-03-22 16:04:20 | This is Charlie. He wants to know if you have a moment to talk about washing machine insurance policies. 11/10 would hear him out https://t.co/gAzPqT7uyk | 11 | 10 | Charlie | |
| 219 | 844223788422217728 | 2450 | 14753 | 2017-03-21 16:26:50 | This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx | 12 | 10 | Margo | |
| 220 | 843981021012017153 | 3285 | 16327 | 2017-03-21 00:22:10 | HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/10 https://t.co/Gu5wHx3CBd | 13 | 10 | None | |
| 221 | 843856843873095681 | 5220 | 23211 | 2017-03-20 16:08:44 | Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e | 12 | 10 | Sadie | |
| 222 | 843604394117681152 | 3081 | 18310 | 2017-03-19 23:25:35 | This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC | 11 | 10 | Hank | |
| 223 | 843235543001513987 | 6852 | 23315 | 2017-03-18 22:59:54 | This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL | 13 | 10 | Tycho | |
| 224 | 842846295480000512 | 4023 | 16440 | 2017-03-17 21:13:10 | This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs | 13 | 10 | Charlie | |
| 225 | 842765311967449089 | 1439 | 7321 | 2017-03-17 15:51:22 | Meet Indie. She's not a fan of baths but she's definitely a fan of hide & seek. 12/10 click the link to help Indie\n\nhttps://t.co/fvGkIuAlFK https://t.co/kiCFtmJd7l | 12 | 10 | Indie | |
| 226 | 842535590457499648 | 3937 | 19637 | 2017-03-17 00:38:32 | This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe | 13 | 10 | Winnie | |
| 227 | 842163532590374912 | 6568 | 26569 | 2017-03-16 00:00:07 | Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl | 12 | 10 | George | |
| 228 | 842115215311396866 | 3386 | 15204 | 2017-03-15 20:48:07 | This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy | 12 | 10 | Bentley | |
| 229 | 841680585030541313 | 8748 | 27854 | 2017-03-14 16:01:03 | This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj | 12 | 10 | Penny | |
| 230 | 841439858740625411 | 4168 | 13755 | 2017-03-14 00:04:30 | Here we have some incredible doggos for #K9VeteransDay. All brave as h*ck. Salute your dog in solidarity. 14/10 for all https://t.co/SVNMdFqKDL | 14 | 10 | None | |
| 231 | 841320156043304961 | 6080 | 21402 | 2017-03-13 16:08:50 | We don't rate penguins, but if we did, this one would get 12/10 https://t.co/cEORXhwZ5K | 12 | 10 | None | |
| 232 | 841314665196081154 | 5312 | 17305 | 2017-03-13 15:47:01 | This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 | 13 | 10 | Max | |
| 233 | 841077006473256960 | 5991 | 24926 | 2017-03-13 00:02:39 | This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ | 12 | 10 | Dawn | |
| 234 | 840698636975636481 | 3 | 197 | 2017-03-11 22:59:09 | @0_kelvin_0 >10/10 is reserved for puppos sorry Kevin | 10 | 10 | None | |
| 235 | 840696689258311684 | 1116 | 13377 | 2017-03-11 22:51:24 | I didn't even have to intervene. Took him 4 minutes to realize his error. 10/10 for Kevin https://t.co/2gclc1MNr7 | 10 | 10 | None | |
| 236 | 840632337062862849 | 1972 | 9761 | 2017-03-11 18:35:42 | Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o | 12 | 10 | Maddie | |
| 237 | 840370681858686976 | 5146 | 17918 | 2017-03-11 01:15:58 | You have been visited by the magical sugar jar puggo. He has granted you three boops. 13/10 would use immediately https://t.co/76iL7JUQdG | 13 | 10 | None | |
| 238 | 840268004936019968 | 6497 | 20950 | 2017-03-10 18:27:58 | This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE | 12 | 10 | Monty | |
| 239 | 839990271299457024 | 2597 | 14640 | 2017-03-10 00:04:21 | Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr | 13 | 10 | Sojourner | |
| 240 | 839549326359670784 | 8805 | 29957 | 2017-03-08 18:52:12 | Meet Winston. He knows he's a little too big for the swing, but he doesn't care. Kindly requests a push. 12/10 would happily oblige https://t.co/GuxEXTdnMu | 12 | 10 | Winston | |
| 241 | 839239871831150596 | 7422 | 29684 | 2017-03-07 22:22:32 | This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm | 13 | 10 | Odie | |
| 242 | 838952994649550848 | 4505 | 21289 | 2017-03-07 03:22:35 | SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN https://t.co/ngAxYLVYHP | 13 | 10 | None | |
| 243 | 838921590096166913 | 2357 | 12183 | 2017-03-07 01:17:48 | This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv | 13 | 10 | Arlo | |
| 244 | 838561493054533637 | 1504 | 11892 | 2017-03-06 01:26:54 | This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI | 13 | 10 | Walter | |
| 245 | 838476387338051585 | 5484 | 24664 | 2017-03-05 19:48:43 | This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI | 13 | 10 | Stanley | |
| 246 | 838150277551247360 | 370 | 1824 | 2017-03-04 22:12:52 | @markhoppus 182/10 | 11 | 10 | None | |
| 247 | 838085839343206401 | 0 | 150 | 2017-03-04 17:56:49 | @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10 | 15 | 10 | None | |
| 248 | 838083903487373313 | 3582 | 19183 | 2017-03-04 17:49:08 | This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO | 13 | 10 | Daisy | |
| 249 | 837820167694528512 | 8952 | 37277 | 2017-03-04 00:21:08 | Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH | 12 | 10 | None | pupper |
| 250 | 837482249356513284 | 495 | 4204 | 2017-03-03 01:58:22 | This is Waffles. He's a ship captain in real life and in @GoodDogsGame. Must've gotten to the max level (wink) 13/10 would sail with https://t.co/Z3LAaV2pKz | 13 | 10 | Waffles | |
| 251 | 837471256429613056 | 2631 | 13967 | 2017-03-03 01:14:41 | This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 | 12 | 10 | Vincent | |
| 252 | 837366284874571778 | 6005 | 23074 | 2017-03-02 18:17:34 | This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns | 13 | 10 | Lucy | |
| 253 | 837110210464448512 | 2731 | 17480 | 2017-03-02 01:20:01 | This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B | 13 | 10 | Clark | pupper |
| 254 | 836989968035819520 | 2610 | 13879 | 2017-03-01 17:22:13 | This is Mookie. He really enjoys shopping but not from such high altitudes. Doin him quite the concern. 12/10 someone lower him https://t.co/beWUzGVKRM | 12 | 10 | Mookie | |
| 255 | 836753516572119041 | 5237 | 21029 | 2017-03-01 01:42:39 | This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY | 12 | 10 | Meera | doggo |
| 256 | 836677758902222849 | 2522 | 13782 | 2017-02-28 20:41:37 | Say hello to Oliver. He's pretty exotic. Fairly pupset as well. Too many midterms coming pup. 11/10 would pet with extreme caution https://t.co/fGAPAsxjKs | 11 | 10 | Oliver | |
| 257 | 836380477523124226 | 3337 | 16037 | 2017-02-28 01:00:19 | This is Ava. She just blasted off. Streamline af. Aerodynamic as h*ck. One small step for pupper, one giant leap for pupkind. 12/10 https://t.co/W4KffrdX3Q | 12 | 10 | Ava | pupper |
| 258 | 836260088725786625 | 4850 | 23177 | 2017-02-27 17:01:56 | This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD | 13 | 10 | Lucy | |
| 259 | 836001077879255040 | 4935 | 20924 | 2017-02-26 23:52:43 | Atlas is back and this time he's prettier than the sunset. Seems to be aware of it too. 13/10 would give modeling contract https://t.co/uRdKlFArQE | 13 | 10 | None | |
| 260 | 835574547218894849 | 4121 | 19447 | 2017-02-25 19:37:50 | This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q | 11 | 10 | Eli | |
| 261 | 835297930240217089 | 3381 | 17847 | 2017-02-25 01:18:40 | Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO | 12 | 10 | Ash | |
| 262 | 835264098648616962 | 1939 | 8503 | 2017-02-24 23:04:14 | Meet Lola. Her hobbies include being precious af and using her foot as a toothbrush. 12/10 Lola requests your help\n\nhttps://t.co/FYFyHh7rir https://t.co/IiB7ggduoU | 12 | 10 | Lola | |
| 263 | 835246439529840640 | 83 | 2259 | 2017-02-24 21:54:03 | @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho | 11 | 10 | None | |
| 264 | 835172783151792128 | 6516 | 28552 | 2017-02-24 17:01:22 | We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL | 12 | 10 | None | |
| 265 | 835152434251116546 | 3443 | 24574 | 2017-02-24 15:40:31 | When you're so blinded by your systematic plagiarism that you forget what day it is. 0/10 https://t.co/YbEJPkg4Ag | 0 | 10 | None | |
| 266 | 834931633769889797 | 1878 | 11838 | 2017-02-24 01:03:08 | This is Tucker. He decided it was time to part ways with his favorite ball. We captured the emotional farewell on camera. 12/10 https://t.co/jTe7Y6P0HK | 12 | 10 | Tucker | |
| 267 | 834786237630337024 | 6159 | 22943 | 2017-02-23 15:25:23 | This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE | 13 | 10 | Tobi | |
| 268 | 834574053763584002 | 2882 | 14993 | 2017-02-23 01:22:14 | Here's a doggo fully pupared for a shower. H*ckin exquisite balance. Sneaky tongue slip too. 13/10 https://t.co/UtEVnQ1ZPg | 13 | 10 | None | doggo |
| 269 | 834458053273591808 | 1899 | 10512 | 2017-02-22 17:41:18 | Meet Chester (bottom) & Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe | 12 | 10 | Chester | |
| 270 | 834209720923721728 | 5476 | 22594 | 2017-02-22 01:14:30 | This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ | 12 | 10 | Wilson | |
| 271 | 834167344700198914 | 4130 | 17194 | 2017-02-21 22:26:07 | This is Sunshine. She doesn't believe in personal space. Eyes pretty far apart for a dog. Has horns (whoa). 11/10 would pet with wonder https://t.co/o3bhLguymB | 11 | 10 | Sunshine | |
| 272 | 834089966724603904 | 2427 | 10971 | 2017-02-21 17:18:39 | DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE 10/10 https://t.co/ffIH2WxwF0 | 10 | 10 | None | doggo |
| 273 | 834086379323871233 | 2512 | 14296 | 2017-02-21 17:04:24 | This is Lipton. He's a West Romanian Snuggle Pup. Only a few left of his kind. 12/10 would boop https://t.co/5KmXPIGgAG | 12 | 10 | Lipton | |
| 274 | 833863086058651648 | 2729 | 14661 | 2017-02-21 02:17:06 | This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ | 12 | 10 | Bentley | |
| 275 | 833826103416520705 | 3904 | 16728 | 2017-02-20 23:50:09 | Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY | 13 | 10 | Charlie | |
| 276 | 833722901757046785 | 3636 | 22585 | 2017-02-20 17:00:04 | This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET | 13 | 10 | Bronte | |
| 277 | 833479644947025920 | 2357 | 16258 | 2017-02-20 00:53:27 | This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu | 13 | 10 | Poppy | |
| 278 | 833124694597443584 | 5513 | 22133 | 2017-02-19 01:23:00 | This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa | 12 | 10 | Gidget | pupper |
| 279 | 832998151111966721 | 2522 | 14549 | 2017-02-18 17:00:10 | This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 | 13 | 10 | Rhino | doggo |
| 280 | 832757312314028032 | 4127 | 18423 | 2017-02-18 01:03:09 | This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ | 13 | 10 | Willow | |
| 281 | 832682457690300417 | 3368 | 13017 | 2017-02-17 20:05:43 | Prosperous good boy 13/10 socioeconomic af https://t.co/8YlD5lxPbQ | 13 | 10 | None | |
| 282 | 832645525019123713 | 594 | 3195 | 2017-02-17 17:38:57 | There's going to be a dog terminal at JFK Airport. This is not a drill. 10/10 \nhttps://t.co/dp5h9bCwU7 | 10 | 10 | NaN | |
| 283 | 832636094638288896 | 3220 | 17379 | 2017-02-17 17:01:29 | This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr | 12 | 10 | Orion | |
| 284 | 832397543355072512 | 2548 | 13126 | 2017-02-17 01:13:34 | This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt | 12 | 10 | Eevee | |
| 285 | 832369877331693569 | 3652 | 18792 | 2017-02-16 23:23:38 | This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d | 11 | 10 | Charlie | |
| 286 | 832273440279240704 | 2673 | 12385 | 2017-02-16 17:00:25 | Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz | 14 | 10 | Smiley | doggo |
| 287 | 832088576586297345 | 3 | 72 | 2017-02-16 04:45:50 | @docmisterio account started on 11/15/15 | 11 | 10 | None | |
| 288 | 832032802820481025 | 4746 | 13887 | 2017-02-16 01:04:13 | This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M | 12 | 10 | Miguel | doggo |
| 289 | 831939777352105988 | 7031 | 26404 | 2017-02-15 18:54:34 | This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT | 12 | 10 | Emanuel | doggo |
| 290 | 831926988323639298 | 39 | 369 | 2017-02-15 18:03:45 | @UNC can confirm 12/10 | 12 | 10 | None | |
| 291 | 831911600680497154 | 7458 | 30380 | 2017-02-15 17:02:36 | Meet Kuyu. He was trapped in a well for 10 days. Rescued yesterday using a device designed by a local robotics team. 14/10 for all involved https://t.co/l38R6IZNNg | 14 | 10 | Kuyu | |
| 292 | 831670449226514432 | 2059 | 11469 | 2017-02-15 01:04:21 | This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg | 13 | 10 | Daisy | |
| 293 | 831650051525054464 | 2243 | 7908 | 2017-02-14 23:43:18 | I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO | 13 | 10 | None | |
| 294 | 831552930092285952 | 2632 | 9872 | 2017-02-14 17:17:22 | This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse | 13 | 10 | Dutch | |
| 295 | 831322785565769729 | 1744 | 10042 | 2017-02-14 02:02:51 | This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK | 12 | 10 | Pete | doggo |
| 296 | 831315979191906304 | 1264 | 7117 | 2017-02-14 01:35:49 | I couldn't make it to the #WKCDogShow BUT I have people there on the ground relaying me the finest pupper pics possible. 13/10 for all https://t.co/jd6lYhfdH4 | 13 | 10 | None | pupper |
| 297 | 831309418084069378 | 2786 | 12819 | 2017-02-14 01:09:44 | This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V | 12 | 10 | Scooter | |
| 298 | 831262627380748289 | 2350 | 13066 | 2017-02-13 22:03:49 | This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY | 12 | 10 | Tucker | |
| 299 | 830956169170665475 | 1735 | 8735 | 2017-02-13 01:46:03 | Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 | 12 | 10 | Reggie | |
| 300 | 830583320585068544 | 19297 | 73397 | 2017-02-12 01:04:29 | This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 | 13 | 10 | Lilly | |
| 301 | 830097400375152640 | 3455 | 10804 | 2017-02-10 16:53:37 | Meet Samson. He's absolute fluffy perfection. Easily 13/10, but he needs your help. Click the link to find out more\n\nhttps://t.co/z82hCtwhpn https://t.co/KoWrMkbMbW | 13 | 10 | Samson | |
| 302 | 829861396166877184 | 2243 | 13441 | 2017-02-10 01:15:49 | This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU | 12 | 10 | Mia | |
| 303 | 829501995190984704 | 12224 | 34913 | 2017-02-09 01:27:41 | This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul | 12 | 10 | Leo | |
| 304 | 829449946868879360 | 2329 | 11519 | 2017-02-08 22:00:52 | Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB | 11 | 10 | None | doggo |
| 305 | 829374341691346946 | 10706 | 38074 | 2017-02-08 17:00:26 | This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao | 13 | 10 | Astrid | doggo |
| 306 | 829141528400556032 | 8530 | 26952 | 2017-02-08 01:35:19 | This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR | 12 | 10 | Malcolm | |
| 307 | 829011960981237760 | 18627 | 58302 | 2017-02-07 17:00:28 | This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is | 13 | 10 | Dexter | |
| 308 | 828770345708580865 | 6746 | 28085 | 2017-02-07 01:00:22 | This is Alfie. He's your Lyft for tonight. Kindly requests you buckle pup and remain reasonably calm during the ride. 13/10 he must focus https://t.co/AqPTHYUBFz | 13 | 10 | Alfie | |
| 309 | 828708714936930305 | 12882 | 40241 | 2017-02-06 20:55:28 | This is Fiona. She's an exotic dog. Seems rather impatient. Jaw extension on another level tho. Looks slippery. 10/10 would still pet https://t.co/vst2SEVJO3 | 10 | 10 | Fiona | |
| 310 | 828650029636317184 | 1544 | 10467 | 2017-02-06 17:02:17 | Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK | 14 | 10 | NaN | |
| 311 | 828409743546925057 | 1305 | 6898 | 2017-02-06 01:07:28 | This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt | 12 | 10 | Mutt | |
| 312 | 828408677031882754 | 1477 | 8398 | 2017-02-06 01:03:14 | This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 | 12 | 10 | Bear | |
| 313 | 828381636999917570 | 2554 | 13864 | 2017-02-05 23:15:47 | Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 | 14 | 10 | Doobert | doggo |
| 314 | 828376505180889089 | 1216 | 8112 | 2017-02-05 22:55:23 | This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR | 13 | 10 | Beebop | |
| 315 | 828372645993398273 | 3344 | 13756 | 2017-02-05 22:40:03 | This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS | 12 | 10 | Alexander | |
| 316 | 828361771580813312 | 195 | 2408 | 2017-02-05 21:56:51 | Beebop and Doobert should start a band 12/10 would listen | 12 | 10 | None | |
| 317 | 828046555563323392 | 3260 | 12923 | 2017-02-05 01:04:17 | This is Sailer. He waits on the roof for his owners to come home. Nobody knows how he gets up there. H*ckin loyal af. 13/10 https://t.co/O37z4jaMG9 | 13 | 10 | Sailer | |
| 318 | 828011680017821696 | 2451 | 11411 | 2017-02-04 22:45:42 | Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB | 11 | 10 | Brutus | |
| 319 | 827933404142436356 | 5987 | 22180 | 2017-02-04 17:34:40 | This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ | 12 | 10 | Kona | pupper |
| 320 | 827653905312006145 | 3433 | 16983 | 2017-02-03 23:04:02 | This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 | 12 | 10 | Boots | |
| 321 | 827600520311402496 | 1082 | 8143 | 2017-02-03 19:31:54 | Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb | 13 | 10 | Tucker | |
| 322 | 827324948884643840 | 3510 | 17523 | 2017-02-03 01:16:53 | This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 | 12 | 10 | Ralphie | |
| 323 | 827199976799354881 | 2579 | 11659 | 2017-02-02 17:00:17 | This is Charlie. He wins every game of chess he plays. Won't let opponent pet him until they forfeit. 13/10 you win again Charlie https://t.co/UkyQibIBzZ | 13 | 10 | Charlie | |
| 324 | 826958653328592898 | 5757 | 23767 | 2017-02-02 01:01:21 | This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR | 12 | 10 | Loki | doggo |
| 325 | 826848821049180160 | 11878 | 40325 | 2017-02-01 17:44:55 | This is Cupid. He was found in the trash. Now he's well on his way to prosthetic front legs and a long happy doggo life. 13/10 heroic af https://t.co/WS0Gha8vRh | 13 | 10 | Cupid | doggo |
| 326 | 826598799820865537 | 292 | 5637 | 2017-02-01 01:11:25 | I was going to do 007/10, but the joke wasn't worth the <10 rating | 7 | 10 | None | |
| 327 | 826598365270007810 | 2709 | 11117 | 2017-02-01 01:09:42 | This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I | 13 | 10 | Pawnd | |
| 328 | 826476773533745153 | 4821 | 20275 | 2017-01-31 17:06:32 | This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh | 12 | 10 | Pilot | doggo |
| 329 | 826240494070030336 | 2965 | 14614 | 2017-01-31 01:27:39 | We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C | 11 | 10 | None | |
| 330 | 826204788643753985 | 1075 | 5361 | 2017-01-30 23:05:46 | Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX | 13 | 10 | None | doggo |
| 331 | 826115272272650244 | 3599 | 17299 | 2017-01-30 17:10:04 | This is Ike. He's demonstrating the pupmost restraint. 13/10 super good boy https://t.co/6gHoGah9nm | 13 | 10 | Ike | |
| 332 | 825876512159186944 | 2146 | 11525 | 2017-01-30 01:21:19 | This is Mo. No one will push him around in the grocery cart. He's quite pupset about it. 11/10 I volunteer https://t.co/feNwTq12S5 | 11 | 10 | Mo | |
| 333 | 825829644528148480 | 2848 | 14025 | 2017-01-29 22:15:05 | This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM | 12 | 10 | Toby | |
| 334 | 825535076884762624 | 19669 | 56413 | 2017-01-29 02:44:34 | Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 | 14 | 10 | None | puppo |
| 335 | 825147591692263424 | 5244 | 20181 | 2017-01-28 01:04:51 | This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD | 13 | 10 | Sweet | |
| 336 | 825026590719483904 | 1483 | 7020 | 2017-01-27 17:04:02 | Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc | 12 | 10 | Pablo | puppo |
| 337 | 824775126675836928 | 4069 | 16508 | 2017-01-27 00:24:48 | This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI | 12 | 10 | Scooter | |
| 338 | 824663926340194305 | 1993 | 11113 | 2017-01-26 17:02:56 | This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM | 13 | 10 | Wilson | |
| 339 | 824325613288833024 | 11848 | 12999 | 2017-01-25 18:38:36 | Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS | 13 | 10 | None | pupper |
| 340 | 824297048279236611 | 4463 | 16625 | 2017-01-25 16:45:05 | This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt | 11 | 10 | Nala | |
| 341 | 824025158776213504 | 679 | 5255 | 2017-01-24 22:44:42 | "I wish we were dogs" 14/10 for @BadlandsNPS https://t.co/50qq2DItPW | 14 | 10 | None | |
| 342 | 823939628516474880 | 3123 | 11755 | 2017-01-24 17:04:50 | This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw | 12 | 10 | Cash | |
| 343 | 823699002998870016 | 2772 | 13826 | 2017-01-24 01:08:40 | This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL | 12 | 10 | Winston | |
| 344 | 823581115634085888 | 3031 | 14376 | 2017-01-23 17:20:14 | This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U | 11 | 10 | Crawford | |
| 345 | 823333489516937216 | 31 | 777 | 2017-01-23 00:56:15 | @HistoryInPics 13/10 | 13 | 10 | None | |
| 346 | 823322678127919110 | 4637 | 17437 | 2017-01-23 00:13:17 | This is Wyatt. He's got the fastest paws in the West. H*ckin deadly. 11/10 would ride into the sunset with https://t.co/stkJ377KK7 | 11 | 10 | Wyatt | |
| 347 | 822975315408461824 | 3958 | 19139 | 2017-01-22 01:12:59 | This is Albus. He's soaked as h*ck. Seems to have misplaced an ear as well. Still in good spirits tho. 12/10 would dry https://t.co/yUM8jYStuG | 12 | 10 | Albus | |
| 348 | 822872901745569793 | 48265 | 132810 | 2017-01-21 18:26:02 | Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc | 13 | 10 | None | puppo |
| 349 | 822859134160621569 | 2622 | 14576 | 2017-01-21 17:31:20 | This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS | 12 | 10 | Hobbes | |
| 350 | 822610361945911296 | 3423 | 16327 | 2017-01-21 01:02:48 | Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh | 12 | 10 | None | |
| 351 | 822489057087389700 | 7390 | 20083 | 2017-01-20 17:00:46 | This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E | 13 | 10 | Paisley | |
| 352 | 822462944365645825 | 17209 | 31800 | 2017-01-20 15:17:01 | This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO | 14 | 10 | Gabe | pupper |
| 353 | 822244816520155136 | 11421 | 38832 | 2017-01-20 00:50:15 | We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 | 11 | 10 | None | |
| 354 | 821886076407029760 | 2692 | 12582 | 2017-01-19 01:04:45 | This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV | 13 | 10 | Jimison | |
| 355 | 821765923262631936 | 1899 | 9317 | 2017-01-18 17:07:18 | This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 | 13 | 10 | Duchess | doggo |
| 356 | 821522889702862852 | 2030 | 8871 | 2017-01-18 01:01:34 | This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn | 13 | 10 | Harlso | |
| 357 | 821407182352777218 | 5053 | 13075 | 2017-01-17 17:21:47 | This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG | 14 | 10 | Sundance | doggo |
| 358 | 821153421864615936 | 10 | 280 | 2017-01-17 00:33:26 | @imgur for a polar bear tho I'd say 13/10 is appropriate | 13 | 10 | None | |
| 359 | 821149554670182400 | 2320 | 9718 | 2017-01-17 00:18:04 | This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 | 12 | 10 | Luca | |
| 360 | 821107785811234820 | 2487 | 10645 | 2017-01-16 21:32:06 | Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl | 11 | 10 | None | doggo |
| 361 | 821044531881721856 | 2636 | 14021 | 2017-01-16 17:20:45 | This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu | 12 | 10 | Flash | |
| 362 | 820749716845686786 | 11525 | 34984 | 2017-01-15 21:49:15 | Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 | 13 | 10 | Sunny | |
| 363 | 820690176645140481 | 3716 | 13518 | 2017-01-15 17:52:40 | The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd | 12 | 10 | None | |
| 364 | 820314633777061888 | 648 | 3706 | 2017-01-14 17:00:24 | We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE | 14 | 10 | None | |
| 365 | 820078625395449857 | 7246 | 21979 | 2017-01-14 01:22:35 | I've never wanted to go to a camp more in my entire life. 12/10 for all on board https://t.co/wJZlpGFEbD | 12 | 10 | None | |
| 366 | 819952236453363712 | 1369 | 5927 | 2017-01-13 17:00:21 | This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb | 13 | 10 | Oliver | puppo |
| 367 | 819924195358416896 | 5607 | 14305 | 2017-01-13 15:08:56 | Here we have a doggo who has messed up. He was hoping you wouldn't notice. 11/10 someone help him https://t.co/XdRNXNYD4E | 11 | 10 | None | doggo |
| 368 | 819711362133872643 | 3604 | 14916 | 2017-01-13 01:03:12 | This is Howie. He just bloomed. 11/10 revolutionary af https://t.co/m5fYxrO3IU | 11 | 10 | Howie | |
| 369 | 819588359383371776 | 2271 | 10606 | 2017-01-12 16:54:26 | This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO | 13 | 10 | Jazzy | |
| 370 | 819347104292290561 | 1383 | 8008 | 2017-01-12 00:55:47 | Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W | 12 | 10 | Anna | |
| 371 | 819238181065359361 | 462 | 2550 | 2017-01-11 17:42:57 | Some happy pupper news to share. 10/10 for everyone involved \nhttps://t.co/MefMAZX2uv | 10 | 10 | None | pupper |
| 372 | 819227688460238848 | 7733 | 25652 | 2017-01-11 17:01:16 | This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT | 12 | 10 | Finn | |
| 373 | 819006400881917954 | 21794 | 49960 | 2017-01-11 02:21:57 | This is Sunny. She was also a very good First Doggo. 14/10 would also be an absolute honor to pet https://t.co/YOC1fHFCSb | 14 | 10 | Sunny | doggo |
| 374 | 819004803107983360 | 42228 | 95450 | 2017-01-11 02:15:36 | This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 | 14 | 10 | Bo | doggo |
| 375 | 818627210458333184 | 8564 | 24597 | 2017-01-10 01:15:10 | Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG | 13 | 10 | Wafer | |
| 376 | 818614493328580609 | 2982 | 10971 | 2017-01-10 00:24:38 | This is Bear. He's a passionate believer of the outdoors. Leaves excite him. 12/10 would hug softly https://t.co/FOF0hBDxP8 | 12 | 10 | Bear | |
| 377 | 818536468981415936 | 2873 | 12127 | 2017-01-09 19:14:36 | This is Tom. He's a silly dog. Known for his unconventional swing style. One h*ck of a sneaky tongue slip too. 11/10 would push https://t.co/6fSVcn9HAU | 11 | 10 | Tom | |
| 378 | 818259473185828864 | 2621 | 12197 | 2017-01-09 00:53:55 | This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib | 12 | 10 | Florence | |
| 379 | 818145370475810820 | 3014 | 13671 | 2017-01-08 17:20:31 | This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z | 11 | 10 | Autumn | |
| 380 | 817908911860748288 | 906 | 5356 | 2017-01-08 01:40:55 | Looks like he went cross-eyed trying way too hard to use the force. 12/10 \nhttps://t.co/bbuKxk0fM8 | 12 | 10 | None | |
| 381 | 817827839487737858 | 31314 | 57622 | 2017-01-07 20:18:46 | This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA | 13 | 10 | Buddy | |
| 382 | 817777686764523521 | 3084 | 11901 | 2017-01-07 16:59:28 | This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 | 13 | 10 | Dido | doggo, pupper |
| 383 | 817536400337801217 | 3505 | 13105 | 2017-01-07 01:00:41 | Say hello to Eugene & Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu | 12 | 10 | Eugene | |
| 384 | 817423860136083457 | 17504 | 38260 | 2017-01-06 17:33:29 | This is Ken. His cheeks are magic. 13/10 (IG: ken_shiba) https://t.co/btzf1zTDeQ | 13 | 10 | Ken | |
| 385 | 817415592588222464 | 1131 | 6267 | 2017-01-06 17:00:38 | Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 | 11 | 10 | Strudel | |
| 386 | 817171292965273600 | 2326 | 9690 | 2017-01-06 00:49:53 | This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw | 13 | 10 | Tebow | |
| 387 | 817120970343411712 | 3011 | 13367 | 2017-01-05 21:29:55 | Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T | 13 | 10 | None | |
| 388 | 817056546584727552 | 1927 | 9517 | 2017-01-05 17:13:55 | This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH | 11 | 10 | Chloe | |
| 389 | 816816676327063552 | 2361 | 11071 | 2017-01-05 01:20:46 | This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 | 12 | 10 | Timber | |
| 390 | 816697700272001025 | 2545 | 10905 | 2017-01-04 17:27:59 | This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF | 12 | 10 | Binky | |
| 391 | 816450570814898180 | 9366 | 33961 | 2017-01-04 01:05:59 | Meet Moose. He doesn't want his friend to go back to college. 13/10 looks like you're staying home John https://t.co/LIhmM7i70k | 13 | 10 | Moose | |
| 392 | 816336735214911488 | 2269 | 9564 | 2017-01-03 17:33:39 | This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY | 11 | 10 | Dudley | |
| 393 | 816091915477250048 | 2500 | 9927 | 2017-01-03 01:20:49 | This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi | 12 | 10 | Comet | |
| 394 | 815990720817401858 | 1207 | 5545 | 2017-01-02 18:38:42 | Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p | 11 | 10 | Jack | |
| 395 | 815966073409433600 | 9907 | 25057 | 2017-01-02 17:00:46 | Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k | 13 | 10 | None | pupper |
| 396 | 815736392542261248 | 2625 | 10937 | 2017-01-02 01:48:06 | This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 | 11 | 10 | Akumi | |
| 397 | 815639385530101762 | 1918 | 9161 | 2017-01-01 19:22:38 | This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy | 12 | 10 | Titan | |
| 398 | 815390420867969024 | 4407 | 11467 | 2017-01-01 02:53:20 | Happy New Year from the squad! 13/10 for all https://t.co/9njRxyUd5L | 13 | 10 | None | |
| 399 | 814986499976527872 | 1505 | 8485 | 2016-12-31 00:08:17 | This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 | 11 | 10 | Cooper | pupper |
| 400 | 814638523311648768 | 3130 | 12511 | 2016-12-30 01:05:33 | This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv | 12 | 10 | Olivia | |
| 401 | 814530161257443328 | 2156 | 9629 | 2016-12-29 17:54:58 | This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G | 12 | 10 | Alf | |
| 402 | 814153002265309185 | 10080 | 32000 | 2016-12-28 16:56:16 | This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J | 12 | 10 | Oshie | |
| 403 | 813910438903693312 | 2194 | 10342 | 2016-12-28 00:52:25 | This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf | 11 | 10 | Chubbs | doggo |
| 404 | 813812741911748608 | 16267 | 40402 | 2016-12-27 18:24:12 | Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg | 14 | 10 | Gary | |
| 405 | 813800681631023104 | 2060 | 9300 | 2016-12-27 17:36:16 | This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 | 12 | 10 | Sky | |
| 406 | 813217897535406080 | 8476 | 20783 | 2016-12-26 03:00:30 | Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 | 13 | 10 | Atlas | |
| 407 | 813202720496779264 | 2090 | 10192 | 2016-12-26 02:00:11 | Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn | 11 | 10 | None | doggo |
| 408 | 813187593374461952 | 5096 | 22085 | 2016-12-26 01:00:05 | We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ | 13 | 10 | None | |
| 409 | 813172488309972993 | 2236 | 10384 | 2016-12-26 00:00:03 | This is Eleanor. She winks like she knows many things that you don't. 12/10 https://t.co/bxGwkJa2kE | 12 | 10 | Eleanor | |
| 410 | 813157409116065792 | 2557 | 8588 | 2016-12-25 23:00:08 | This is Layla. It is her first Christmas. She got to be one of the presents. 12/10 I wish my presents would bark https://t.co/hwhCbhCjnV | 12 | 10 | Layla | |
| 411 | 813142292504645637 | 2728 | 9361 | 2016-12-25 22:00:04 | Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi | 13 | 10 | None | |
| 412 | 813130366689148928 | 513 | 4968 | 2016-12-25 21:12:41 | I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10 | 12 | 10 | None | |
| 413 | 813127251579564032 | 3652 | 13242 | 2016-12-25 21:00:18 | Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA | 11 | 10 | None | doggo |
| 414 | 813112105746448384 | 3225 | 11515 | 2016-12-25 20:00:07 | Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq | 12 | 10 | Toby | |
| 415 | 813096984823349248 | 4207 | 11694 | 2016-12-25 19:00:02 | This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu | 11 | 10 | Rocky | doggo |
| 416 | 813081950185472002 | 3220 | 10989 | 2016-12-25 18:00:17 | This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg | 11 | 10 | Baron | |
| 417 | 813066809284972545 | 2276 | 8865 | 2016-12-25 17:00:08 | This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN | 12 | 10 | Tyr | |
| 418 | 813051746834595840 | 8503 | 23337 | 2016-12-25 16:00:16 | This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl | 13 | 10 | Bauer | |
| 419 | 812781120811126785 | 2191 | 8380 | 2016-12-24 22:04:54 | This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG | 10 | 10 | Swagger | |
| 420 | 812709060537683968 | 1665 | 7373 | 2016-12-24 17:18:34 | This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp | 12 | 10 | Brandi | |
| 421 | 812503143955202048 | 1424 | 6787 | 2016-12-24 03:40:19 | I'm happy to inform you all that Jake is in excellent hands. 13/10 for him and his new family \nhttps://t.co/LRCTJpnCnS https://t.co/wZz7fI6XO1 | 13 | 10 | None | |
| 422 | 812466873996607488 | 2231 | 8900 | 2016-12-24 01:16:12 | This is Mary. She's desperately trying to recreate her Coachella experience. 12/10 downright h*ckin adorable https://t.co/BAJrfPvtux | 12 | 10 | Mary | |
| 423 | 812372279581671427 | 4252 | 15224 | 2016-12-23 19:00:19 | This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT | 13 | 10 | Moe | |
| 424 | 811985624773361665 | 1647 | 8102 | 2016-12-22 17:23:53 | Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop | 11 | 10 | Ted | |
| 425 | 811744202451197953 | 1884 | 8429 | 2016-12-22 01:24:33 | This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 | 13 | 10 | Halo | |
| 426 | 811647686436880384 | 872 | 6215 | 2016-12-21 19:01:02 | PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10 | 11 | 10 | None | |
| 427 | 811627233043480576 | 3650 | 14265 | 2016-12-21 17:39:46 | This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn | 10 | 10 | Augie | |
| 428 | 811386762094317568 | 7444 | 23302 | 2016-12-21 01:44:13 | This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy | 11 | 10 | Craig | pupper |
| 429 | 810984652412424192 | 1655 | 5927 | 2016-12-19 23:06:23 | Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx | 10 | 10 | Sam | |
| 430 | 810896069567610880 | 2090 | 10093 | 2016-12-19 17:14:23 | This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV | 11 | 10 | Hunter | |
| 431 | 810657578271330305 | 3057 | 12192 | 2016-12-19 01:26:42 | This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ | 11 | 10 | Pavlov | |
| 432 | 810284430598270976 | 13369 | 39640 | 2016-12-18 00:43:57 | This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu | 13 | 10 | Phil | |
| 433 | 810254108431155201 | 3901 | 16380 | 2016-12-17 22:43:27 | This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb | 12 | 10 | Gus | |
| 434 | 809920764300447744 | 4521 | 17250 | 2016-12-17 00:38:52 | Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo | 10 | 10 | None | |
| 435 | 809448704142938112 | 1696 | 7727 | 2016-12-15 17:23:04 | I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo | 12 | 10 | None | |
| 436 | 809220051211603969 | 6554 | 22246 | 2016-12-15 02:14:29 | This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p | 12 | 10 | Kyro | |
| 437 | 809084759137812480 | 4046 | 14685 | 2016-12-14 17:16:53 | This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h | 11 | 10 | Wallace | |
| 438 | 808838249661788160 | 3536 | 11271 | 2016-12-14 00:57:20 | This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 | 13 | 10 | Ito | |
| 439 | 808733504066486276 | 2509 | 8784 | 2016-12-13 18:01:07 | Here's a pupper in a onesie. Quite pupset about it. Currently plotting revenge. 12/10 would rescue https://t.co/xQfrbNK3HD | 12 | 10 | None | pupper |
| 440 | 808501579447930884 | 3007 | 12595 | 2016-12-13 02:39:32 | This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px | 12 | 10 | Koda | |
| 441 | 808344865868283904 | 24069 | 47281 | 2016-12-12 16:16:49 | This is Seamus. He's very bad at entering pools. Still a very good boy tho 11/10 https://t.co/hfi264QwYM | 11 | 10 | Seamus | |
| 442 | 808106460588765185 | 2525 | 9701 | 2016-12-12 00:29:28 | Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho | 12 | 10 | None | doggo, pupper |
| 443 | 808001312164028416 | 4098 | 14015 | 2016-12-11 17:31:39 | This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl | 12 | 10 | Cooper | |
| 444 | 807621403335917568 | 4288 | 16236 | 2016-12-10 16:22:02 | This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 | 14 | 10 | Ollie | pupper |
| 445 | 807106840509214720 | 56625 | 107015 | 2016-12-09 06:17:20 | This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d | 13 | 10 | Stephan | |
| 446 | 807010152071229440 | 4418 | 14514 | 2016-12-08 23:53:08 | This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX | 12 | 10 | Lennon | |
| 447 | 806629075125202948 | 37911 | 75639 | 2016-12-07 22:38:52 | "Good afternoon class today we're going to learn what makes a good boy so good" 13/10 https://t.co/f1h2Fsalv9 | 13 | 10 | None | |
| 448 | 806576416489959424 | 2230 | 5370 | 2016-12-07 19:09:37 | Hooman catch successful. Massive hit by dog. Fumble ensued. Possession to dog. 13/10 https://t.co/QrFkqgHR1G | 13 | 10 | None | |
| 449 | 806542213899489280 | 2752 | 11363 | 2016-12-07 16:53:43 | This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h | 11 | 10 | Waffles | |
| 450 | 806219024703037440 | 1388 | 7145 | 2016-12-06 19:29:28 | We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi | 11 | 10 | NaN | |
| 451 | 805932879469572096 | 2209 | 9178 | 2016-12-06 00:32:26 | This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 | 12 | 10 | Major | |
| 452 | 805826884734976000 | 2132 | 7335 | 2016-12-05 17:31:15 | This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 | 12 | 10 | Duke | |
| 453 | 805520635690676224 | 1905 | 6368 | 2016-12-04 21:14:20 | This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ | 13 | 10 | Zeke | |
| 454 | 805487436403003392 | 2929 | 9773 | 2016-12-04 19:02:24 | Meet Sansa and Gary. They run along the fence together everyday, so the owners installed a window for them. Both 12/10 h*ckin romantic af https://t.co/1JUduNuaWl | 12 | 10 | Sansa | |
| 455 | 805207613751304193 | 1972 | 8680 | 2016-12-04 00:30:29 | This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 | 12 | 10 | Shooter | |
| 456 | 804738756058218496 | 4480 | 15326 | 2016-12-02 17:27:25 | This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ | 12 | 10 | Django | |
| 457 | 804475857670639616 | 2355 | 6886 | 2016-12-02 00:02:45 | HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13/10\nhttps://t.co/LEZ8jR5txd | 13 | 10 | None | |
| 458 | 804026241225523202 | 18876 | 49774 | 2016-11-30 18:16:08 | This is Bo. He's going to make me cry. 13/10 please get off the bus for him Carly https://t.co/U7FvBZo6Bq | 13 | 10 | Bo | |
| 459 | 803773340896923648 | 3220 | 11203 | 2016-11-30 01:31:12 | This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt | 12 | 10 | Diogi | puppo |
| 460 | 803638050916102144 | 4828 | 12270 | 2016-11-29 16:33:36 | Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX | 13 | 10 | None | pupper |
| 461 | 803380650405482500 | 2169 | 8601 | 2016-11-28 23:30:47 | Meet Sonny. He's an in-home movie critic. That is his collection. He's very proud of it. 12/10 https://t.co/yPbCALoy2n | 12 | 10 | Sonny | |
| 462 | 803276597545603072 | 2887 | 11207 | 2016-11-28 16:37:19 | This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL | 11 | 10 | Winston | |
| 463 | 802952499103731712 | 2336 | 10085 | 2016-11-27 19:09:28 | This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh | 12 | 10 | Marley | |
| 464 | 802600418706604034 | 1714 | 7938 | 2016-11-26 19:50:26 | This is Bailey. She has mastered the head tilt. 11/10 rather h*ckin adorable https://t.co/urhl90ZE1O | 11 | 10 | Bailey | |
| 465 | 802572683846291456 | 2926 | 9959 | 2016-11-26 18:00:13 | This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv | 12 | 10 | Winnie | |
| 466 | 802323869084381190 | 6808 | 18124 | 2016-11-26 01:31:31 | This is Severus. He's here to fix your cable. Looks like he succeeded. Even offered to pupgrade your plan. 13/10 h*ckin helpful https://t.co/aX4brLLpWZ | 13 | 10 | Severus | |
| 467 | 802265048156610565 | 1573 | 7039 | 2016-11-25 21:37:47 | Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze | 11 | 10 | None | doggo, pupper |
| 468 | 802239329049477120 | 3040 | 10132 | 2016-11-25 19:55:35 | This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 | 12 | 10 | Loki | puppo |
| 469 | 801958328846974976 | 1992 | 8608 | 2016-11-25 01:18:59 | This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 | 12 | 10 | Ronnie | |
| 470 | 801854953262350336 | 275 | 1958 | 2016-11-24 18:28:13 | .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC | 11 | 10 | None | |
| 471 | 801538201127157760 | 2391 | 9141 | 2016-11-23 21:29:33 | This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe | 12 | 10 | Wallace | |
| 472 | 801285448605831168 | 960 | 6802 | 2016-11-23 04:45:12 | oh h*ck 10/10 https://t.co/bC69RrW559 | 10 | 10 | None | |
| 473 | 801167903437357056 | 6961 | 27386 | 2016-11-22 20:58:07 | This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey | 13 | 10 | Milo | |
| 474 | 801115127852503040 | 2429 | 8992 | 2016-11-22 17:28:25 | This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj | 12 | 10 | Bones | doggo, pupper |
| 475 | 800859414831898624 | 113 | 778 | 2016-11-22 00:32:18 | @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets | 11 | 10 | None | doggo |
| 476 | 800751577355128832 | 3214 | 11701 | 2016-11-21 17:23:47 | Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG | 12 | 10 | Mauve | |
| 477 | 800513324630806528 | 3495 | 14685 | 2016-11-21 01:37:04 | This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm | 11 | 10 | Chef | |
| 478 | 800459316964663297 | 2489 | 10538 | 2016-11-20 22:02:27 | Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca | 12 | 10 | None | pupper |
| 479 | 800388270626521089 | 3265 | 12456 | 2016-11-20 17:20:08 | This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 | 12 | 10 | Doc | floofer |
| 480 | 800141422401830912 | 2980 | 17092 | 2016-11-20 00:59:15 | This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg | 13 | 10 | Peaches | |
| 481 | 800018252395122689 | 15351 | 31768 | 2016-11-19 16:49:49 | Here's a doggo doin a struggle. 11/10 much determined https://t.co/gQqRBfkX4I | 11 | 10 | None | doggo |
| 482 | 799757965289017345 | 2506 | 9390 | 2016-11-18 23:35:32 | This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 | 13 | 10 | Sobe | doggo |
| 483 | 799422933579902976 | 2213 | 8965 | 2016-11-18 01:24:14 | This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ | 12 | 10 | Longfellow | |
| 484 | 799297110730567681 | 3227 | 11065 | 2016-11-17 17:04:16 | This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf | 11 | 10 | Jeffrey | |
| 485 | 799063482566066176 | 2863 | 9058 | 2016-11-17 01:35:54 | This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm | 11 | 10 | Mister | |
| 486 | 798933969379225600 | 5203 | 14712 | 2016-11-16 17:01:16 | This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL | 12 | 10 | Iroh | |
| 487 | 798925684722855936 | 1663 | 8246 | 2016-11-16 16:28:21 | This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu | 11 | 10 | Shadow | |
| 488 | 798209839306514432 | 2954 | 11548 | 2016-11-14 17:03:50 | This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 | 13 | 10 | Cooper | |
| 489 | 797971864723324932 | 3652 | 13018 | 2016-11-14 01:18:12 | Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z | 12 | 10 | None | pupper |
| 490 | 797545162159308800 | 5656 | 16198 | 2016-11-12 21:02:38 | This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB | 12 | 10 | Cassie | |
| 491 | 797236660651966464 | 7726 | 22328 | 2016-11-12 00:36:46 | This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi | 12 | 10 | Pancake | |
| 492 | 797165961484890113 | 32 | 256 | 2016-11-11 19:55:50 | @JODYHiGHROLLER it may be an 11/10 but what do I know 😉 | 11 | 10 | None | |
| 493 | 796865951799083009 | 2198 | 8564 | 2016-11-11 00:03:42 | This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 | 12 | 10 | Tyr | |
| 494 | 796759840936919040 | 3562 | 13256 | 2016-11-10 17:02:03 | Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI | 11 | 10 | Romeo | |
| 495 | 796484825502875648 | 2042 | 8472 | 2016-11-09 22:49:15 | Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV | 12 | 10 | None | doggo |
| 496 | 796387464403357696 | 4861 | 12334 | 2016-11-09 16:22:22 | This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 | 12 | 10 | Snicku | |
| 497 | 796149749086875649 | 16628 | 36177 | 2016-11-09 00:37:46 | This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt | 11 | 10 | Ruby | |
| 498 | 796125600683540480 | 2079 | 5511 | 2016-11-08 23:01:49 | #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 | 13 | 10 | None | |
| 499 | 796116448414461957 | 2813 | 10139 | 2016-11-08 22:25:27 | I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN | 11 | 10 | None | |
| 500 | 796080075804475393 | 2703 | 9469 | 2016-11-08 20:00:55 | This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm | 12 | 10 | Yogi | |
| 501 | 796031486298386433 | 4284 | 12071 | 2016-11-08 16:47:50 | This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL | 13 | 10 | Daisy | |
| 502 | 795464331001561088 | 27728 | 55683 | 2016-11-07 03:14:10 | Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz | 13 | 10 | None | doggo |
| 503 | 795400264262053889 | 3323 | 11270 | 2016-11-06 22:59:35 | This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ | 12 | 10 | Brody | |
| 504 | 795076730285391872 | 6288 | 18139 | 2016-11-06 01:33:58 | This is Bailey. She loves going down slides but is very bad at it. Still 11/10 https://t.co/ivPWhspN3E | 11 | 10 | Bailey | |
| 505 | 794926597468000259 | 2697 | 11492 | 2016-11-05 15:37:24 | This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH | 12 | 10 | Mack | |
| 506 | 794332329137291264 | 3088 | 10686 | 2016-11-04 00:15:59 | This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU | 12 | 10 | Nimbus | |
| 507 | 794205286408003585 | 3895 | 10314 | 2016-11-03 15:51:10 | This is Laika. She was a space pupper. The first space pupper actually. Orbited earth like a h*ckin boss. 14/10 hero af https://t.co/trSjgY3h4g | 14 | 10 | Laika | pupper |
| 508 | 793962221541933056 | 5711 | 18910 | 2016-11-02 23:45:19 | This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR | 12 | 10 | Maximus | |
| 509 | 793845145112371200 | 2187 | 10295 | 2016-11-02 16:00:06 | This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 | 13 | 10 | Clark | |
| 510 | 793601777308463104 | 1908 | 8926 | 2016-11-01 23:53:02 | This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv | 12 | 10 | Dobby | |
| 511 | 793500921481273345 | 2786 | 11953 | 2016-11-01 17:12:16 | This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN | 12 | 10 | Fiona | |
| 512 | 793286476301799424 | 10723 | 27597 | 2016-11-01 03:00:09 | This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 | 13 | 10 | Moreton | |
| 513 | 793271401113350145 | 2763 | 9677 | 2016-11-01 02:00:14 | Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN | 12 | 10 | Dave | |
| 514 | 793256262322548741 | 9714 | 22350 | 2016-11-01 01:00:05 | Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 | 12 | 10 | None | |
| 515 | 793241302385262592 | 3812 | 11780 | 2016-11-01 00:00:38 | This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt | 13 | 10 | Tucker | |
| 516 | 793226087023144960 | 3338 | 11001 | 2016-10-31 23:00:11 | This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj | 11 | 10 | Juno | |
| 517 | 793210959003287553 | 3301 | 9997 | 2016-10-31 22:00:04 | This is Maude. She's the h*ckin happiest wasp you've ever seen. 10/10 would pet with caution https://t.co/etL8FHBrh8 | 10 | 10 | Maude | |
| 518 | 793195938047070209 | 6547 | 17063 | 2016-10-31 21:00:23 | Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY | 12 | 10 | Lily | puppo |
| 519 | 793180763617361921 | 2310 | 7740 | 2016-10-31 20:00:05 | This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q | 11 | 10 | Newt | |
| 520 | 793165685325201412 | 3238 | 10478 | 2016-10-31 19:00:10 | This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo | 12 | 10 | Benji | |
| 521 | 793150605191548928 | 1984 | 6909 | 2016-10-31 18:00:14 | This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf | 11 | 10 | Nida | |
| 522 | 793135492858580992 | 2893 | 7214 | 2016-10-31 17:00:11 | Your favorite squad is looking extra h*ckin spooky today. 13/10 for all https://t.co/PrgvOyPtDT | 13 | 10 | None | |
| 523 | 793120401413079041 | 4551 | 14202 | 2016-10-31 16:00:13 | This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb | 11 | 10 | Robin | |
| 524 | 792913359805018113 | 4715 | 16063 | 2016-10-31 02:17:31 | Here is a perfect example of someone who has their priorities in order. 13/10 for both owner and Forrest https://t.co/LRyMrU7Wfq | 13 | 10 | NaN | |
| 525 | 792883833364439040 | 4964 | 12666 | 2016-10-31 00:20:11 | This is Bailey. She's rather h*ckin hype for Halloween tomorrow. Carved those pupkins herself. 12/10 https://t.co/v17mFm0Ftz | 12 | 10 | Bailey | |
| 526 | 792773781206999040 | 1963 | 8209 | 2016-10-30 17:02:53 | This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL | 12 | 10 | Monster | |
| 527 | 792394556390137856 | 4998 | 15128 | 2016-10-29 15:55:58 | Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 | 12 | 10 | BeBe | |
| 528 | 792050063153438720 | 2088 | 8029 | 2016-10-28 17:07:05 | This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu | 11 | 10 | Remus | |
| 529 | 791774931465953280 | 21156 | 37818 | 2016-10-27 22:53:48 | Vine will be deeply missed. This was by far my favorite one. 14/10 https://t.co/roqIxCvEB3 | 14 | 10 | None | |
| 530 | 791672322847637504 | 3661 | 13129 | 2016-10-27 16:06:04 | When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh | 13 | 10 | None | |
| 531 | 791406955684368384 | 4797 | 14670 | 2016-10-26 22:31:36 | Say hello to Levi. He's a Madagascan Butterbop. One of the more docile Butterbops I've seen. 12/10 would give all the pets https://t.co/Zcw9Sccctc | 12 | 10 | Levi | |
| 532 | 791312159183634433 | 2963 | 9841 | 2016-10-26 16:14:55 | This is Mabel. She's super h*ckin smol. Portable af. Comes with the smol shoe. 12/10 would keep in frocket https://t.co/GGJvxYt3xK | 12 | 10 | Mabel | |
| 533 | 790987426131050500 | 2483 | 11089 | 2016-10-25 18:44:32 | This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr | 12 | 10 | Misty | |
| 534 | 790946055508652032 | 5496 | 18601 | 2016-10-25 16:00:09 | This is Betty. She's assisting with the dishes. Such a good puppo. 12/10 h*ckin helpful af https://t.co/dgvTPZ9tgI | 12 | 10 | Betty | puppo |
| 535 | 790698755171364864 | 2203 | 9158 | 2016-10-24 23:37:28 | This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 | 12 | 10 | Mosby | |
| 536 | 790581949425475584 | 8183 | 22473 | 2016-10-24 15:53:19 | This is Duke. He sneaks into the fridge sometimes. It's his safe place. 11/10 would give little jacket if necessary https://t.co/Fd5WFDTMH4 | 11 | 10 | Duke | |
| 537 | 790337589677002753 | 2167 | 8740 | 2016-10-23 23:42:19 | Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV | 12 | 10 | Maggie | |
| 538 | 790277117346975746 | 3732 | 14081 | 2016-10-23 19:42:02 | This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 | 11 | 10 | Bruce | |
| 539 | 789986466051088384 | 2704 | 10369 | 2016-10-23 00:27:05 | This is Happy. He's a bathtub reviewer. Seems to be pleased with this one. 12/10 https://t.co/Ln89R4FP7v | 12 | 10 | Happy | |
| 540 | 789903600034189313 | 4858 | 11673 | 2016-10-22 18:57:48 | This is Ralphy. His dreams were just shattered. Poor pupper. 13/10 it'll be ok Ralphy https://t.co/P0kSN6rT6H | 13 | 10 | Ralphy | pupper |
| 541 | 789628658055020548 | 2080 | 8448 | 2016-10-22 00:45:17 | This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI | 13 | 10 | Eli | |
| 542 | 789599242079838210 | 2279 | 7620 | 2016-10-21 22:48:24 | This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx | 12 | 10 | Brownie | |
| 543 | 789530877013393408 | 3942 | 13188 | 2016-10-21 18:16:44 | This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq | 12 | 10 | Rizzy | |
| 544 | 789314372632018944 | 2666 | 9615 | 2016-10-21 03:56:25 | HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOOD DOGGI ALL THE TIME MISTAKES HAPPEN 13/10\nhttps://t.co/G2ms0A5jWM | 13 | 10 | None | |
| 545 | 789268448748703744 | 3014 | 10196 | 2016-10-21 00:53:56 | This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS | 10 | 10 | Stella | |
| 546 | 789137962068021249 | 3244 | 10875 | 2016-10-20 16:15:26 | This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN | 12 | 10 | Bo | |
| 547 | 788908386943430656 | 14409 | 30653 | 2016-10-20 01:03:11 | This is Lucy. She destroyed not one, but two remotes trying to turn off the debate. 11/10 relatable af https://t.co/3BXh073tDm | 11 | 10 | Lucy | |
| 548 | 788765914992902144 | 12014 | 30658 | 2016-10-19 15:37:03 | This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq | 12 | 10 | Butter | |
| 549 | 788412144018661376 | 5990 | 16060 | 2016-10-18 16:11:17 | This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S | 11 | 10 | Dexter | |
| 550 | 788178268662984705 | 2488 | 8100 | 2016-10-18 00:41:57 | Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc | 13 | 10 | None | |
| 551 | 788150585577050112 | 1510 | 6865 | 2016-10-17 22:51:57 | This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc | 13 | 10 | Leo | |
| 552 | 788039637453406209 | 1535 | 6867 | 2016-10-17 15:31:05 | Did... did they pick out that license plate? 12/10 for both https://t.co/lRmUUOxgbQ | 12 | 10 | None | |
| 553 | 787810552592695296 | 3540 | 9717 | 2016-10-17 00:20:47 | This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc | 11 | 10 | Frank | |
| 554 | 787717603741622272 | 3240 | 11416 | 2016-10-16 18:11:26 | This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp | 13 | 10 | Tonks | puppo |
| 555 | 787397959788929025 | 3300 | 12120 | 2016-10-15 21:01:17 | This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 | 11 | 10 | Moose | |
| 556 | 787322443945877504 | 2032 | 8726 | 2016-10-15 16:01:13 | This is Lincoln. He forgot to use his blinker when he changed lanes just now. Guilty as h*ck. Still 10/10 https://t.co/lsrR83SiVp | 10 | 10 | Lincoln | |
| 557 | 786963064373534720 | 9327 | 29725 | 2016-10-14 16:13:10 | This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj | 12 | 10 | Rory | |
| 558 | 786709082849828864 | 7069 | 20296 | 2016-10-13 23:23:56 | This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS | 11 | 10 | Logan | |
| 559 | 786664955043049472 | 2996 | 11957 | 2016-10-13 20:28:35 | "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r | 12 | 10 | None | |
| 560 | 786595970293370880 | 3601 | 10497 | 2016-10-13 15:54:28 | This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX | 11 | 10 | Dale | |
| 561 | 786363235746385920 | 4072 | 12189 | 2016-10-13 00:29:39 | This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn | 13 | 10 | Rizzo | doggo |
| 562 | 786286427768250368 | 3352 | 8930 | 2016-10-12 19:24:27 | This is Arnie. He's afraid of his own bark. 12/10 would comfort https://t.co/ObT2tSxXit | 12 | 10 | Arnie | |
| 563 | 786233965241827333 | 5571 | 17178 | 2016-10-12 15:55:59 | This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh | 11 | 10 | Mattie | |
| 564 | 786051337297522688 | 179 | 1614 | 2016-10-12 03:50:17 | 13/10 for breakdancing puppo @shibbnbot | 13 | 10 | None | puppo |
| 565 | 785927819176054784 | 3652 | 12696 | 2016-10-11 19:39:28 | This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y | 12 | 10 | Lucy | |
| 566 | 785872687017132033 | 2130 | 7489 | 2016-10-11 16:00:24 | Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV | 12 | 10 | Rusty | |
| 567 | 785639753186217984 | 2561 | 8735 | 2016-10-11 00:34:48 | This is Pinot. He's a sophisticated doggo. You can tell by the hat. Also pointier than your average pupper. Still 10/10 would pet cautiously https://t.co/f2wmLZTPHd | 10 | 10 | Pinot | doggo, pupper |
| 568 | 785533386513321988 | 2334 | 10183 | 2016-10-10 17:32:08 | This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG | 11 | 10 | Dallas | |
| 569 | 785515384317313025 | 1477 | 6800 | 2016-10-10 16:20:36 | Today, 10/10, should be National Dog Rates Day | 10 | 10 | None | |
| 570 | 785264754247995392 | 1911 | 8128 | 2016-10-09 23:44:41 | This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx | 12 | 10 | Doc | |
| 571 | 785170936622350336 | 5639 | 13491 | 2016-10-09 17:31:53 | This is Hero. He was enjoying the car ride until he remembered that bees are dying globally at an alarming rate. 11/10 https://t.co/cubFg7F4qQ | 11 | 10 | Hero | |
| 572 | 784826020293709826 | 3712 | 11310 | 2016-10-08 18:41:19 | This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ | 13 | 10 | Rusty | |
| 573 | 784517518371221505 | 2970 | 10039 | 2016-10-07 22:15:26 | This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 | 11 | 10 | Frankie | |
| 574 | 784431430411685888 | 1491 | 6329 | 2016-10-07 16:33:21 | This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt | 12 | 10 | Stormy | |
| 575 | 784183165795655680 | 9374 | 22513 | 2016-10-07 00:06:50 | This is Reginald. He's one magical puppo. Aerodynamic af. 12/10 would catch https://t.co/t0cEeRbcXJ | 12 | 10 | Reginald | puppo |
| 576 | 784057939640352768 | 12953 | 33505 | 2016-10-06 15:49:14 | This is Balto. He's very content. Legendary tongue slippage. 12/10 would pet forever https://t.co/T7Jr4Gw4sC | 12 | 10 | Balto | |
| 577 | 783839966405230592 | 12643 | 33689 | 2016-10-06 01:23:05 | This is Riley. His owner put a donut pillow around him and he loves it so much he won't let anyone take it off. 13/10 https://t.co/8TCQcsZCZ8 | 13 | 10 | Riley | |
| 578 | 783821107061198850 | 2269 | 8209 | 2016-10-06 00:08:09 | This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp | 12 | 10 | Mairi | |
| 579 | 783695101801398276 | 3737 | 11650 | 2016-10-05 15:47:27 | This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY | 12 | 10 | Loomis | |
| 580 | 783466772167098368 | 2608 | 9468 | 2016-10-05 00:40:09 | This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ | 11 | 10 | Finn | |
| 581 | 783391753726550016 | 6441 | 18908 | 2016-10-04 19:42:03 | Meet Godi. He's an avid beachgoer and part time rainbow summoner. Eyeliner flawless af. 13/10 would snug well https://t.co/BO936YdJdi | 13 | 10 | Godi | |
| 582 | 783334639985389568 | 13616 | 32651 | 2016-10-04 15:55:06 | This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu | 12 | 10 | Dave | |
| 583 | 783085703974514689 | 2565 | 9112 | 2016-10-03 23:25:55 | This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM | 11 | 10 | Earl | |
| 584 | 782969140009107456 | 8521 | 26949 | 2016-10-03 15:42:44 | This is Cali. She arrived preassembled. Convenient af. 12/10 appears to be rather h*ckin pettable https://t.co/vOBV1ZqVcX | 12 | 10 | Cali | |
| 585 | 782747134529531904 | 1604 | 8310 | 2016-10-03 01:00:34 | This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H | 11 | 10 | Deacon | doggo |
| 586 | 782722598790725632 | 6238 | 19250 | 2016-10-02 23:23:04 | This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 | 10 | 10 | Penny | |
| 587 | 782598640137187329 | 2184 | 8694 | 2016-10-02 15:10:30 | This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn | 11 | 10 | Timmy | |
| 588 | 782305867769217024 | 6470 | 18630 | 2016-10-01 19:47:08 | This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 | 12 | 10 | Sampson | doggo |
| 589 | 781955203444699136 | 3920 | 12357 | 2016-09-30 20:33:43 | This is Chipson. He weighed in at .3 ounces and is officially super h*ckin smol. Space-saving af. 11/10 would snug delicately https://t.co/FjEsk7A1JV | 11 | 10 | Chipson | |
| 590 | 781661882474196992 | 3129 | 11634 | 2016-09-30 01:08:10 | Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC | 5 | 10 | None | |
| 591 | 781655249211752448 | 1314 | 4466 | 2016-09-30 00:41:48 | This is Combo. The daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/LOKrNo0OM7 | 11 | 10 | Combo | doggo |
| 592 | 781524693396357120 | 6426 | 23163 | 2016-09-29 16:03:01 | Idk why this keeps happening. We only rate dogs. Not Bangladeshi Couch Chipmunks. Please only send dogs... 12/10 https://t.co/ya7bviQUUf | 12 | 10 | None | |
| 593 | 781308096455073793 | 2961 | 7973 | 2016-09-29 01:42:20 | Pupper butt 1, Doggo 0. Both 12/10 https://t.co/WQvcPEpH2u | 12 | 10 | None | doggo, pupper |
| 594 | 781251288990355457 | 2458 | 9428 | 2016-09-28 21:56:36 | This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 | 11 | 10 | Oakley | |
| 595 | 781163403222056960 | 3168 | 10895 | 2016-09-28 16:07:23 | We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy | 10 | 10 | None | |
| 596 | 780931614150983680 | 8536 | 24192 | 2016-09-28 00:46:20 | I want to finally rate this iconic puppo who thinks the parade is all for him. 13/10 would absolutely attend https://t.co/5dUYOu4b8d | 13 | 10 | None | puppo |
| 597 | 780858289093574656 | 2328 | 8033 | 2016-09-27 19:54:58 | This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 | 10 | 10 | Dash | |
| 598 | 780800785462489090 | 1505 | 6141 | 2016-09-27 16:06:28 | This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw | 11 | 10 | Koda | |
| 599 | 780601303617732608 | 3839 | 13525 | 2016-09-27 02:53:48 | Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG | 12 | 10 | Hercules | |
| 600 | 780543529827336192 | 2032 | 7040 | 2016-09-26 23:04:13 | Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q | 12 | 10 | None | |
| 601 | 780459368902959104 | 1224 | 5892 | 2016-09-26 17:29:48 | This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm | 11 | 10 | Bear | |
| 602 | 780192070812196864 | 2589 | 9712 | 2016-09-25 23:47:39 | We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni | 11 | 10 | None | |
| 603 | 780074436359819264 | 5815 | 13723 | 2016-09-25 16:00:13 | Here's a doggo questioning his entire existence. 10/10 someone tell him he's a good boy https://t.co/dVm5Hgdpeb | 10 | 10 | None | doggo |
| 604 | 779834332596887552 | 8237 | 21252 | 2016-09-25 00:06:08 | This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD | 11 | 10 | Scout | |
| 605 | 779377524342161408 | 3613 | 9831 | 2016-09-23 17:50:56 | Have you ever seen such a smol pupper? Portable af. 12/10 would keep in shirt pocket https://t.co/KsqaIzlQ12 | 12 | 10 | None | pupper |
| 606 | 779123168116150273 | 4207 | 13206 | 2016-09-23 01:00:13 | This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate | 12 | 10 | Reggie | |
| 607 | 779056095788752897 | 5247 | 16500 | 2016-09-22 20:33:42 | Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 | 13 | 10 | None | |
| 608 | 778990705243029504 | 8437 | 22342 | 2016-09-22 16:13:51 | This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI | 11 | 10 | Jay | |
| 609 | 778764940568104960 | 426 | 955 | 2016-09-22 01:16:45 | Oh my god it's Narcos but Barkos. 13/10 someone please make this happen\nhttps://t.co/tird9cIlzB | 13 | 10 | None | |
| 610 | 778748913645780993 | 1562 | 7717 | 2016-09-22 00:13:04 | This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 | 11 | 10 | Mya | |
| 611 | 778650543019483137 | 1729 | 6430 | 2016-09-21 17:42:10 | Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l | 10 | 10 | Strider | |
| 612 | 778624900596654080 | 1176 | 5177 | 2016-09-21 16:00:17 | This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 | 11 | 10 | Penny | |
| 613 | 778408200802557953 | 5023 | 15135 | 2016-09-21 01:39:11 | RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A | 14 | 10 | None | |
| 614 | 778383385161035776 | 1271 | 6515 | 2016-09-21 00:00:35 | This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv | 13 | 10 | Nala | |
| 615 | 778286810187399168 | 3836 | 11576 | 2016-09-20 17:36:50 | This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb | 11 | 10 | Stanley | |
| 616 | 778039087836069888 | 3065 | 9417 | 2016-09-20 01:12:28 | Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD | 12 | 10 | None | pupper |
| 617 | 778027034220126208 | 1885 | 7320 | 2016-09-20 00:24:34 | This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/10 would smile back https://t.co/QFaUiIHxHq | 11 | 10 | Sophie | pupper |
| 618 | 777885040357281792 | 1893 | 7078 | 2016-09-19 15:00:20 | This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M | 3 | 10 | Wesley | |
| 619 | 777684233540206592 | 3403 | 12518 | 2016-09-19 01:42:24 | "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ | 12 | 10 | None | |
| 620 | 777621514455814149 | 2910 | 9742 | 2016-09-18 21:33:11 | This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 | 12 | 10 | Derek | |
| 621 | 777189768882946048 | 4999 | 15921 | 2016-09-17 16:57:35 | This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 | 12 | 10 | Jeffrey | |
| 622 | 776813020089548800 | 1405 | 5444 | 2016-09-16 16:00:31 | Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA | 12 | 10 | Solomon | |
| 623 | 776477788987613185 | 3249 | 9858 | 2016-09-15 17:48:25 | This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW | 11 | 10 | Huck | pupper |
| 624 | 776218204058357768 | 18497 | 33345 | 2016-09-15 00:36:55 | Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 | 13 | 10 | None | floofer |
| 625 | 776201521193218049 | 2919 | 10681 | 2016-09-14 23:30:38 | This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC | 10 | 10 | O | |
| 626 | 776113305656188928 | 5068 | 13102 | 2016-09-14 17:40:06 | This is Sampson. He's about to get hit with a vicious draw 2. Has no idea. 11/10 poor pupper https://t.co/FYT9QBEnKG | 11 | 10 | Sampson | pupper |
| 627 | 776088319444877312 | 179 | 2045 | 2016-09-14 16:00:49 | I can't tap the screen to make the hearts appear fast enough. 10/10 for the source of all future unproductiveness https://t.co/wOhuABgj6I | 10 | 10 | None | |
| 628 | 775842724423557120 | 3116 | 13022 | 2016-09-13 23:44:54 | This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH | 12 | 10 | Blue | |
| 629 | 775733305207554048 | 4627 | 15413 | 2016-09-13 16:30:07 | This is Anakin. He strives to reach his full doggo potential. Born with blurry tail tho. 11/10 would still pet well https://t.co/9CcBSxCXXG | 11 | 10 | Anakin | doggo |
| 630 | 775729183532220416 | 5302 | 14361 | 2016-09-13 16:13:44 | This girl straight up rejected a guy because he doesn't like dogs. She is my hero and I give her 13/10 https://t.co/J39lT3b0rH | 13 | 10 | None | |
| 631 | 775364825476165632 | 3472 | 8295 | 2016-09-12 16:05:54 | This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci | 11 | 10 | Finley | doggo |
| 632 | 775350846108426240 | 4532 | 11309 | 2016-09-12 15:10:21 | This is Maximus. A little rain won't stop him. He will persevere. 12/10 innovative af https://t.co/2OmDMAkkou | 12 | 10 | Maximus | |
| 633 | 775085132600442880 | 5488 | 17281 | 2016-09-11 21:34:30 | This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT | 13 | 10 | Tucker | |
| 634 | 774757898236878852 | 2035 | 9462 | 2016-09-10 23:54:11 | This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P | 12 | 10 | Finley | |
| 635 | 774639387460112384 | 2013 | 7508 | 2016-09-10 16:03:16 | This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu | 10 | 10 | Sprinkles | |
| 636 | 774314403806253056 | 6478 | 24167 | 2016-09-09 18:31:54 | I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH | 14 | 10 | None | |
| 637 | 773985732834758656 | 4492 | 11925 | 2016-09-08 20:45:53 | Meet Winnie. She just made awkward eye contact with the driver beside her. Poor pupper panicked. 11/10 would comfort https://t.co/RFWtDqTnAz | 11 | 10 | Winnie | pupper |
| 638 | 773922284943896577 | 1999 | 7110 | 2016-09-08 16:33:46 | This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg | 12 | 10 | Heinrich | |
| 639 | 773704687002451968 | 1891 | 7317 | 2016-09-08 02:09:06 | This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio | 12 | 10 | Loki | |
| 640 | 773670353721753600 | 1501 | 5935 | 2016-09-07 23:52:41 | This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr | 10 | 10 | Shakespeare | |
| 641 | 773547596996571136 | 7126 | 24553 | 2016-09-07 15:44:53 | This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb | 11 | 10 | Chelsea | pupper |
| 642 | 773308824254029826 | 8640 | 25846 | 2016-09-06 23:56:05 | This is Bungalo. She uses that face to get what she wants. It works unbelievably well. 12/10 would never say no to https://t.co/0Fcft7jl4N | 12 | 10 | Bungalo | |
| 643 | 773247561583001600 | 3699 | 10414 | 2016-09-06 19:52:39 | This is Chip. He's a pupholder. Comes with the car. Requires frequent pettings. Shifts for you. 10/10 innovative af https://t.co/hG5WYT9ECn | 10 | 10 | Chip | |
| 644 | 773191612633579521 | 4736 | 11117 | 2016-09-06 16:10:20 | This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD | 12 | 10 | Grey | |
| 645 | 772877495989305348 | 4501 | 9555 | 2016-09-05 19:22:09 | You need to watch these two doggos argue through a cat door. Both 11/10 https://t.co/qEP31epKEV | 11 | 10 | None | |
| 646 | 772826264096874500 | 2669 | 8842 | 2016-09-05 15:58:34 | Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright & licked position\n11/10 https://t.co/7CQkn3gHOQ | 11 | 10 | Roosevelt | |
| 647 | 772581559778025472 | 1968 | 7192 | 2016-09-04 23:46:12 | Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn | 10 | 10 | NaN | |
| 648 | 772193107915964416 | 1612 | 6665 | 2016-09-03 22:02:38 | This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK | 12 | 10 | Willem | pupper |
| 649 | 772152991789019136 | 1300 | 4181 | 2016-09-03 19:23:13 | Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A | 10 | 10 | None | |
| 650 | 772117678702071809 | 848 | 4165 | 2016-09-03 17:02:54 | Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti | 12 | 10 | Jack | |
| 651 | 772114945936949249 | 546 | 3005 | 2016-09-03 16:52:02 | This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT | 10 | 10 | Finn | |
| 652 | 772102971039580160 | 1065 | 4448 | 2016-09-03 16:04:27 | This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c | 11 | 10 | Penny | |
| 653 | 771908950375665664 | 2181 | 7298 | 2016-09-03 03:13:29 | Doggo will persevere. 13/10\nhttps://t.co/yOVzAomJ6k | 13 | 10 | None | doggo |
| 654 | 771770456517009408 | 3924 | 13356 | 2016-09-02 18:03:10 | This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm | 11 | 10 | Davey | |
| 655 | 771500966810099713 | 3018 | 9167 | 2016-09-02 00:12:18 | This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv | 12 | 10 | Dakota | |
| 656 | 771380798096281600 | 5912 | 11746 | 2016-09-01 16:14:48 | Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn | 11 | 10 | Fizz | |
| 657 | 771136648247640064 | 3357 | 10223 | 2016-09-01 00:04:38 | This is Dixie. She wants to be a ship captain. Won't let anything get in between her and her dreams. 11/10 https://t.co/8VEDZKHddR | 11 | 10 | Dixie | |
| 658 | 771102124360998913 | 1663 | 6898 | 2016-08-31 21:47:27 | This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA | 12 | 10 | Charlie | |
| 659 | 771014301343748096 | 1782 | 7032 | 2016-08-31 15:58:28 | Another pic without a dog in it? What am I supposed to do? Rate the carpet? Fine I will. 7/10 looks adequately comfy https://t.co/OJZQ6I4gGd | 7 | 10 | None | |
| 660 | 770787852854652928 | 1415 | 5498 | 2016-08-31 00:58:39 | This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi | 10 | 10 | Winston | |
| 661 | 770772759874076672 | 1626 | 5749 | 2016-08-30 23:58:40 | This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo | 11 | 10 | Sebastian | |
| 662 | 770655142660169732 | 2013 | 8130 | 2016-08-30 16:11:18 | We only rate dogs. Pls stop sending in non-canines like this Arctic Floof Kangaroo. This is very frustrating. 11/10 https://t.co/qlUDuPoE3d | 11 | 10 | NaN | |
| 663 | 770414278348247044 | 2390 | 6987 | 2016-08-30 00:14:12 | Meet Al Cabone. He's a gangsta puppa. Rather h*ckin ruthless. Shows no mercy sometimes. 11/10 pet w extreme caution https://t.co/OUwWbEKOUV | 11 | 10 | Al | |
| 664 | 770293558247038976 | 1718 | 6923 | 2016-08-29 16:14:30 | This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw | 10 | 10 | Jackson | |
| 665 | 770069151037685760 | 2651 | 8385 | 2016-08-29 01:22:47 | Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS | 10 | 10 | Carbon | |
| 666 | 769940425801170949 | 11131 | 34948 | 2016-08-28 16:51:16 | This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV | 12 | 10 | Klein | |
| 667 | 769695466921623552 | 1926 | 7101 | 2016-08-28 00:37:54 | This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v | 13 | 10 | Titan | |
| 668 | 769212283578875904 | 1969 | 5980 | 2016-08-26 16:37:54 | This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE | 12 | 10 | DonDon | |
| 669 | 768970937022709760 | 7574 | 16017 | 2016-08-26 00:38:52 | This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs | 12 | 10 | Kirby | |
| 670 | 768855141948723200 | 1034 | 4660 | 2016-08-25 16:58:45 | This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 | 11 | 10 | Jesse | |
| 671 | 768609597686943744 | 1382 | 4580 | 2016-08-25 00:43:02 | This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr | 10 | 10 | Lou | |
| 672 | 768596291618299904 | 1473 | 5592 | 2016-08-24 23:50:10 | Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH | 12 | 10 | Oakley | |
| 673 | 768473857036525572 | 3958 | 15110 | 2016-08-24 15:43:39 | Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 | 11 | 10 | Chevy | |
| 674 | 768193404517830656 | 4080 | 12157 | 2016-08-23 21:09:14 | Meet Gerald. He's a fairly exotic doggo. Floofy af. Inadequate knees tho. Self conscious about large forehead. 8/10 https://t.co/WmczvjCWJq | 8 | 10 | Gerald | doggo |
| 675 | 767884188863397888 | 1634 | 5309 | 2016-08-23 00:40:31 | This is Tito. He's on the lookout. Nobody knows for what. 10/10 https://t.co/Qai481H6RA | 10 | 10 | Tito | |
| 676 | 767754930266464257 | 6221 | 17814 | 2016-08-22 16:06:54 | This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O | 11 | 10 | Philbert | |
| 677 | 767500508068192258 | 2688 | 8295 | 2016-08-21 23:15:55 | This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 | 12 | 10 | Louie | |
| 678 | 767191397493538821 | 4406 | 13643 | 2016-08-21 02:47:37 | I don't know any of the backstory behind this picture but for some reason I'm crying. 13/10 for owner and doggo https://t.co/QOKZdus9TT | 13 | 10 | None | doggo |
| 679 | 767122157629476866 | 3261 | 11227 | 2016-08-20 22:12:29 | This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC | 13 | 10 | Rupert | |
| 680 | 766793450729734144 | 1565 | 5650 | 2016-08-20 00:26:19 | This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO | 10 | 10 | Rufus | |
| 681 | 766714921925144576 | 438 | 2872 | 2016-08-19 19:14:16 | His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley | 13 | 10 | None | |
| 682 | 766693177336135680 | 918 | 4484 | 2016-08-19 17:47:52 | This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 | 11 | 10 | Brudge | |
| 683 | 766423258543644672 | 1825 | 6671 | 2016-08-18 23:55:18 | This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG | 9 | 10 | Shadoe | |
| 684 | 766313316352462849 | 2166 | 7493 | 2016-08-18 16:38:26 | This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 | 12 | 10 | Oscar | |
| 685 | 766069199026450432 | 1003 | 4765 | 2016-08-18 00:28:24 | This is Juno. She can see your future. 12/10 h*ckin mesmerizing af https://t.co/Z69mShifuk | 12 | 10 | Juno | |
| 686 | 766008592277377025 | 571 | 4149 | 2016-08-17 20:27:34 | This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL | 11 | 10 | Angel | |
| 687 | 765719909049503744 | 2475 | 8021 | 2016-08-17 01:20:27 | This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 | 12 | 10 | Brat | |
| 688 | 765669560888528897 | 1407 | 5760 | 2016-08-16 22:00:23 | This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR | 12 | 10 | Tove | |
| 689 | 765395769549590528 | 3127 | 20539 | 2016-08-16 03:52:26 | This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB | 13 | 10 | NaN | |
| 690 | 765371061932261376 | 2475 | 7842 | 2016-08-16 02:14:15 | This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 | 11 | 10 | Louie | pupper |
| 691 | 765222098633691136 | 3914 | 12902 | 2016-08-15 16:22:20 | This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH | 10 | 10 | Gromit | |
| 692 | 764857477905154048 | 2029 | 7099 | 2016-08-14 16:13:27 | This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 | 12 | 10 | Aubie | |
| 693 | 764259802650378240 | 1745 | 6718 | 2016-08-13 00:38:30 | This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ | 10 | 10 | Kota | |
| 694 | 763956972077010945 | 61 | 812 | 2016-08-12 04:35:10 | @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10 | 12 | 10 | None | doggo |
| 695 | 763837565564780549 | 4858 | 14041 | 2016-08-11 20:40:41 | This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo | 11 | 10 | Alfie | |
| 696 | 763183847194451968 | 1702 | 6004 | 2016-08-10 01:23:03 | This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU | 8 | 10 | Clark | |
| 697 | 763103485927849985 | 2602 | 8163 | 2016-08-09 20:03:43 | This is Belle. She's a Butterflop Hufflepoof. Rarer than most. Having trouble with car seat. 10/10 perturbed af https://t.co/VIXT3D26VM | 10 | 10 | Belle | |
| 698 | 762699858130116608 | 4190 | 13518 | 2016-08-08 17:19:51 | This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD | 11 | 10 | Leela | |
| 699 | 762471784394268675 | 7612 | 12571 | 2016-08-08 02:13:34 | Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci | 12 | 10 | Glenn | |
| 700 | 762464539388485633 | 4839 | 11503 | 2016-08-08 01:44:46 | This is Buddy. His father was a bear and his mother was a perfectly toasted marshmallow. 12/10 would snug so well https://t.co/zGSj1oUgxx | 12 | 10 | Buddy | |
| 701 | 762316489655476224 | 1298 | 5350 | 2016-08-07 15:56:28 | This is Scout. He specializes in mid-air freeze frames. 11/10 https://t.co/sAHmwRtfSq | 11 | 10 | Scout | |
| 702 | 762035686371364864 | 17919 | 35400 | 2016-08-06 21:20:40 | This left me speechless. 14/10 heckin heroic af https://t.co/3td8P3o0mB | 14 | 10 | None | |
| 703 | 761976711479193600 | 2310 | 5992 | 2016-08-06 17:26:19 | This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP | 12 | 10 | Shelby | |
| 704 | 761745352076779520 | 979 | 4707 | 2016-08-06 02:06:59 | Guys.. we only rate dogs. Pls don't send any more pics of the Loch Ness Monster. Only send in dogs. Thank you. 11/10 https://t.co/obH5vMbm1j | 11 | 10 | None | |
| 705 | 761672994376806400 | 33421 | 55016 | 2016-08-05 21:19:27 | Ohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboyohboy. 10/10 for all (by happytailsresort) https://t.co/EY8kEFuzK7 | 10 | 10 | None | |
| 706 | 761599872357261312 | 1336 | 4578 | 2016-08-05 16:28:54 | This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo | 11 | 10 | Sephie | |
| 707 | 761334018830917632 | 1669 | 5792 | 2016-08-04 22:52:29 | This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc | 10 | 10 | Bruce | |
| 708 | 761292947749015552 | 1265 | 4957 | 2016-08-04 20:09:17 | Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo | 11 | 10 | Bonaparte | |
| 709 | 761227390836215808 | 1775 | 5908 | 2016-08-04 15:48:47 | This is Albert. He just found out that bees are dying globally at an alarming rate. 10/10 heckin worried af now https://t.co/nhLX27WsDY | 10 | 10 | Albert | |
| 710 | 761004547850530816 | 3952 | 12482 | 2016-08-04 01:03:17 | This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK | 11 | 10 | Bo | |
| 711 | 760893934457552897 | 1104 | 4228 | 2016-08-03 17:43:45 | This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa | 11 | 10 | Wishes | doggo |
| 712 | 760656994973933572 | 2210 | 7343 | 2016-08-03 02:02:14 | This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 | 11 | 10 | Rose | |
| 713 | 760641137271070720 | 1481 | 5485 | 2016-08-03 00:59:13 | This is Theo. He can walk on water. Still coming to terms with it. 12/10 magical af https://t.co/8Kmuj6SFbC | 12 | 10 | Theo | |
| 714 | 760539183865880579 | 4168 | 8399 | 2016-08-02 18:14:06 | This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ | 12 | 10 | Atlas | |
| 715 | 760521673607086080 | 1608 | 4681 | 2016-08-02 17:04:31 | Doggo want what doggo cannot have. Temptation strong, dog stronger. 12/10 https://t.co/IqyTF6qik6 | 12 | 10 | None | doggo |
| 716 | 760290219849637889 | 13140 | 29618 | 2016-08-02 01:44:48 | This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv | 13 | 10 | Rocco | |
| 717 | 760252756032651264 | 995 | 4338 | 2016-08-01 23:15:56 | This is Fido. He can tell the weather. Not good at fetch tho. Never comes when called. 4/10 would probably still pet https://t.co/4gOv2Q3iKP | 4 | 10 | Fido | |
| 718 | 760190180481531904 | 2079 | 6334 | 2016-08-01 19:07:17 | Meet Sadie. She's addicted to balloons. It's tearing her family apart. Won't admit she has a problem. Still 10/10 https://t.co/h6s9Rch0gZ | 10 | 10 | Sadie | |
| 719 | 759943073749200896 | 2382 | 6581 | 2016-08-01 02:45:22 | Here's a wicked fast pupper. 12/10 camera could barely keep pup https://t.co/HtAR6gpUAu | 12 | 10 | None | pupper |
| 720 | 759923798737051648 | 6521 | 16284 | 2016-08-01 01:28:46 | We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi | 10 | 10 | None | |
| 721 | 759846353224826880 | 2265 | 7433 | 2016-07-31 20:21:02 | This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 | 11 | 10 | Kirby | |
| 722 | 759793422261743616 | 2173 | 6620 | 2016-07-31 16:50:42 | Meet Maggie & Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll | 12 | 10 | Maggie | doggo, pupper |
| 723 | 759557299618865152 | 1341 | 5202 | 2016-07-31 01:12:26 | This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu | 10 | 10 | Emma | |
| 724 | 759447681597108224 | 2827 | 9418 | 2016-07-30 17:56:51 | This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 | 11 | 10 | Oakley | |
| 725 | 759446261539934208 | 561 | 1846 | 2016-07-30 17:51:13 | No no no this is all wrong. The Walmart had to have run into the dog driving the car. 10/10 someone tell him it's ok\nhttps://t.co/fRaTGcj68A | 10 | 10 | None | |
| 726 | 759197388317847553 | 2221 | 6725 | 2016-07-30 01:22:17 | This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW | 12 | 10 | Luna | |
| 727 | 759099523532779520 | 4813 | 16101 | 2016-07-29 18:53:24 | Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi | 7 | 10 | Toby | |
| 728 | 759047813560868866 | 2302 | 7227 | 2016-07-29 15:27:55 | This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx | 11 | 10 | Spencer | |
| 729 | 758854675097526272 | 1027 | 3904 | 2016-07-29 02:40:28 | This is Lilli Bee & Honey Bear. Unfortunately, they were both born with no eyes. So heckin sad. Both 11/10 https://t.co/4UrfOZhztW | 11 | 10 | Lilli | |
| 730 | 758828659922702336 | 4376 | 12376 | 2016-07-29 00:57:05 | This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q | 13 | 10 | None | doggo |
| 731 | 758740312047005698 | 1824 | 6339 | 2016-07-28 19:06:01 | Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj | 12 | 10 | Boston | |
| 732 | 758474966123810816 | 1132 | 4227 | 2016-07-28 01:31:38 | This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM | 11 | 10 | Brandonald | |
| 733 | 758467244762497024 | 2539 | 5316 | 2016-07-28 01:00:57 | Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE | 11 | 10 | None | |
| 734 | 758405701903519748 | 2204 | 5756 | 2016-07-27 20:56:24 | This is Odie. He falls asleep wherever he wants. Must be nice. 10/10 https://t.co/M9BXCSDVjh | 10 | 10 | Odie | |
| 735 | 758355060040593408 | 1245 | 3797 | 2016-07-27 17:35:10 | This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr | 11 | 10 | Corey | |
| 736 | 758099635764359168 | 11550 | 21302 | 2016-07-27 00:40:12 | In case you haven't seen the most dramatic sneeze ever... 13/10 https://t.co/iy7ylyZcsE | 13 | 10 | None | |
| 737 | 758041019896193024 | 433 | 3001 | 2016-07-26 20:47:17 | Teagan reads entire books in store so they're free. Loved 50 Shades of Grey (how dare I make that joke so late) 9/10 https://t.co/l46jwv5WYv | 9 | 10 | None | |
| 738 | 757741869644341248 | 3710 | 7613 | 2016-07-26 00:58:34 | This is Leonard. He hides in bushes to escape his problems. 10/10 relatable af https://t.co/TdyGTcX0uo | 10 | 10 | Leonard | |
| 739 | 757725642876129280 | 1391 | 5022 | 2016-07-25 23:54:05 | This is Beckham. He fell asleep at the wheel. Very churlish. Looks to have a backpup driver tho. That's good. 11/10 https://t.co/rptsOm73Wr | 11 | 10 | Beckham | |
| 740 | 757611664640446465 | 1272 | 5026 | 2016-07-25 16:21:11 | This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB | 12 | 10 | Cooper | |
| 741 | 757596066325864448 | 1219 | 4808 | 2016-07-25 15:19:12 | Here's another picture without a dog in it. Idk why you guys keep sending these. 4/10 just because that's a neat rug https://t.co/mOmnL19Wsl | 4 | 10 | None | |
| 742 | 757400162377592832 | 7759 | 16743 | 2016-07-25 02:20:45 | She walks herself up and down the train to be petted by all the passengers. 13/10 I can't handle this https://t.co/gwKCspY8N2 | 13 | 10 | None | |
| 743 | 757393109802180609 | 2009 | 6462 | 2016-07-25 01:52:43 | Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV | 10 | 10 | None | doggo |
| 744 | 757354760399941633 | 1637 | 4995 | 2016-07-24 23:20:20 | This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO | 8 | 10 | Devón | |
| 745 | 756998049151549440 | 2271 | 6923 | 2016-07-23 23:42:53 | This is Oliver. He's an English Creamschnitzel. The rarest of schnitzels. 11/10 would pet quite firmly https://t.co/qbO5X6dYuj | 11 | 10 | Oliver | |
| 746 | 756939218950160384 | 2295 | 7342 | 2016-07-23 19:49:07 | This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH | 12 | 10 | Jax | pupper |
| 747 | 756651752796094464 | 1511 | 5612 | 2016-07-23 00:46:50 | This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW | 11 | 10 | Gert | |
| 748 | 756526248105566208 | 4169 | 11506 | 2016-07-22 16:28:07 | All hail sky doggo. 13/10 would jump super high to pet https://t.co/CsLRpqdeTF | 13 | 10 | None | doggo |
| 749 | 756303284449767430 | 1231 | 4359 | 2016-07-22 01:42:09 | Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I | 11 | 10 | None | |
| 750 | 756288534030475264 | 15071 | 28519 | 2016-07-22 00:43:32 | Here's a heartwarming scene of a single father raising his two pups. Downright awe-inspiring af. 12/10 for everyone https://t.co/hfddJ0OiNR | 12 | 10 | None | |
| 751 | 756275833623502848 | 1738 | 7114 | 2016-07-21 23:53:04 | When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 | 10 | 10 | None | puppo |
| 752 | 755955933503782912 | 3285 | 8092 | 2016-07-21 02:41:54 | Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr | 12 | 10 | None | pupper |
| 753 | 755206590534418437 | 6148 | 18212 | 2016-07-19 01:04:16 | This is one of the most inspirational stories I've ever come across. I have no words. 14/10 for both doggo and owner https://t.co/I5ld3eKD5k | 14 | 10 | NaN | doggo |
| 754 | 755110668769038337 | 12621 | 23446 | 2016-07-18 18:43:07 | This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN | 13 | 10 | Watson | |
| 755 | 754856583969079297 | 2870 | 7616 | 2016-07-18 01:53:28 | This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR | 11 | 10 | Winnie | |
| 756 | 754747087846248448 | 591 | 2854 | 2016-07-17 18:38:22 | This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU | 12 | 10 | Keith | |
| 757 | 754482103782404096 | 2220 | 5852 | 2016-07-17 01:05:25 | This is Milo. He's currently plotting his revenge. 10/10 https://t.co/ca0q9HM8II | 10 | 10 | Milo | |
| 758 | 754449512966619136 | 846 | 4147 | 2016-07-16 22:55:55 | This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge | 11 | 10 | Dex | |
| 759 | 754120377874386944 | 2670 | 8655 | 2016-07-16 01:08:03 | When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA | 10 | 10 | None | |
| 760 | 754011816964026368 | 4079 | 9726 | 2016-07-15 17:56:40 | This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh | 12 | 10 | Charlie | |
| 761 | 753655901052166144 | 2492 | 6458 | 2016-07-14 18:22:23 | "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg | 10 | 10 | None | |
| 762 | 753420520834629632 | 4071 | 8731 | 2016-07-14 02:47:04 | Here we are witnessing an isolated squad of bouncing doggos. Unbelievably rare for this time of year. 11/10 for all https://t.co/CCdlwiTwQf | 11 | 10 | None | |
| 763 | 753398408988139520 | 2186 | 6384 | 2016-07-14 01:19:12 | This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX | 12 | 10 | Scout | |
| 764 | 753375668877008896 | 2655 | 8411 | 2016-07-13 23:48:51 | This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc | 8 | 10 | Hank | |
| 765 | 753294487569522689 | 1191 | 3758 | 2016-07-13 18:26:16 | This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv | 11 | 10 | Ace | |
| 766 | 753039830821511168 | 24013 | 41080 | 2016-07-13 01:34:21 | So this just changed my life. 13/10 please enjoy https://t.co/dsv4xAtfv7 | 13 | 10 | None | |
| 767 | 753026973505581056 | 1109 | 4283 | 2016-07-13 00:43:15 | Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV | 10 | 10 | Tayzie | |
| 768 | 752932432744185856 | 7798 | 13970 | 2016-07-12 18:27:35 | This is Carl. He's very powerful. 12/10 don't mess with Carl https://t.co/v5m2bIukXc | 12 | 10 | Carl | |
| 769 | 752917284578922496 | 1790 | 7592 | 2016-07-12 17:27:23 | This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW | 11 | 10 | Grizzie | |
| 770 | 752682090207055872 | 1846 | 6642 | 2016-07-12 01:52:49 | Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS | 10 | 10 | None | doggo |
| 771 | 752660715232722944 | 1794 | 4878 | 2016-07-12 00:27:52 | Hooman used Pokeball\n*wiggle*\n*wiggle*\nDoggo broke free \n10/10 https://t.co/bWSgqnwSHr | 10 | 10 | None | doggo |
| 772 | 752568224206688256 | 2605 | 6140 | 2016-07-11 18:20:21 | Here are three doggos completely misjudging an airborne stick. Decent efforts tho. All 9/10 https://t.co/HCXQL4fGVZ | 9 | 10 | None | |
| 773 | 752519690950500352 | 3917 | 8157 | 2016-07-11 15:07:30 | Hopefully this puppo on a swing will help get you through your Monday. 11/10 would push https://t.co/G54yClasz2 | 11 | 10 | None | puppo |
| 774 | 752334515931054080 | 1263 | 4238 | 2016-07-11 02:51:40 | Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE | 8 | 10 | None | doggo |
| 775 | 752173152931807232 | 2106 | 6569 | 2016-07-10 16:10:29 | This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 | 12 | 10 | Brody | |
| 776 | 751950017322246144 | 1060 | 3415 | 2016-07-10 01:23:49 | This is Lola. She's a surfing pupper. 13/10 magical af https://t.co/BlGQkhM5EV | 13 | 10 | Lola | pupper |
| 777 | 751937170840121344 | 1530 | 5770 | 2016-07-10 00:32:46 | This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q | 11 | 10 | Ruby | |
| 778 | 751830394383790080 | 2227 | 6428 | 2016-07-09 17:28:29 | This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w | 12 | 10 | Tucker | |
| 779 | 751793661361422336 | 3320 | 6479 | 2016-07-09 15:02:31 | This is Fred. He's having one heck of a summer. 11/10 https://t.co/I7SFchkNk4 | 11 | 10 | Fred | |
| 780 | 751598357617971201 | 3440 | 8699 | 2016-07-09 02:06:27 | This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC | 13 | 10 | Toby | |
| 781 | 751583847268179968 | 1265 | 4849 | 2016-07-09 01:08:47 | Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 | 5 | 10 | None | doggo, pupper |
| 782 | 751538714308972544 | 1445 | 5547 | 2016-07-08 22:09:27 | This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY | 10 | 10 | Max | |
| 783 | 751456908746354688 | 1127 | 3516 | 2016-07-08 16:44:23 | Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex | 12 | 10 | None | pupper |
| 784 | 751251247299190784 | 6695 | 13791 | 2016-07-08 03:07:09 | This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG | 10 | 10 | Gilbert | |
| 785 | 751205363882532864 | 2086 | 6948 | 2016-07-08 00:04:50 | "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy | 12 | 10 | None | |
| 786 | 751132876104687617 | 1480 | 5610 | 2016-07-07 19:16:47 | This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA | 10 | 10 | Cooper | puppo |
| 787 | 750868782890057730 | 1595 | 5306 | 2016-07-07 01:47:22 | Meet Milo. He hauled ass until he ran out of treadmill and then passed out from exhaustion. 11/10 sleep tight pupper https://t.co/xe1aGZNkcC | 11 | 10 | Milo | pupper |
| 788 | 750719632563142656 | 5747 | 14621 | 2016-07-06 15:54:42 | This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL | 12 | 10 | Meyer | |
| 789 | 750506206503038976 | 1316 | 4934 | 2016-07-06 01:46:38 | This is Malcolm. He's absolutely terrified of heights. 8/10 hang in there pupper https://t.co/SVU00Sc9U2 | 8 | 10 | Malcolm | pupper |
| 790 | 750429297815552001 | 4947 | 14569 | 2016-07-05 20:41:01 | This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS | 12 | 10 | Arnie | |
| 791 | 750383411068534784 | 1309 | 5005 | 2016-07-05 17:38:41 | This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta | 9 | 10 | Zoe | pupper |
| 792 | 750381685133418496 | 39 | 758 | 2016-07-05 17:31:49 | 13/10 such a good doggo\n@spaghemily | 13 | 10 | None | doggo |
| 793 | 750147208377409536 | 1095 | 3409 | 2016-07-05 02:00:06 | And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe | 13 | 10 | None | |
| 794 | 750132105863102464 | 1440 | 3990 | 2016-07-05 01:00:05 | This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo | 11 | 10 | Stewie | |
| 795 | 750117059602808832 | 1466 | 4740 | 2016-07-05 00:00:18 | This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm | 10 | 10 | Calvin | |
| 796 | 750101899009982464 | 959 | 3344 | 2016-07-04 23:00:03 | Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD | 11 | 10 | Lilah | |
| 797 | 750086836815486976 | 613 | 2383 | 2016-07-04 22:00:12 | This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd | 12 | 10 | Spanky | |
| 798 | 750071704093859840 | 3802 | 8653 | 2016-07-04 21:00:04 | Pause your cookout and admire this pupper's nifty hat. 10/10 https://t.co/RG4C9IdNJM | 10 | 10 | None | pupper |
| 799 | 750056684286914561 | 1011 | 3444 | 2016-07-04 20:00:23 | This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 | 11 | 10 | Jameson | |
| 800 | 750041628174217216 | 703 | 3502 | 2016-07-04 19:00:33 | This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI | 13 | 10 | Beau | |
| 801 | 750026558547456000 | 888 | 2986 | 2016-07-04 18:00:41 | Meet Jax & Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI | 10 | 10 | Jax | |
| 802 | 750011400160841729 | 1035 | 3568 | 2016-07-04 17:00:26 | Meet Piper. She's an airport doggo. Please return your tray table to its full pupright and locked position. 11/10 https://t.co/D17IAcetmM | 11 | 10 | Piper | doggo |
| 803 | 749996283729883136 | 919 | 3331 | 2016-07-04 16:00:22 | This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR | 12 | 10 | Bo | |
| 804 | 749981277374128128 | 2772 | 5569 | 2016-07-04 15:00:45 | This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh | 11 | 10 | Atticus | |
| 805 | 749774190421639168 | 1493 | 5114 | 2016-07-04 01:17:51 | This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl | 12 | 10 | Lucy | |
| 806 | 749417653287129088 | 1904 | 6721 | 2016-07-03 01:41:06 | This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v | 11 | 10 | Finn | pupper |
| 807 | 749403093750648834 | 622 | 2892 | 2016-07-03 00:43:15 | Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx | 10 | 10 | None | |
| 808 | 749395845976588288 | 3951 | 9488 | 2016-07-03 00:14:27 | This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc | 10 | 10 | George | |
| 809 | 749317047558017024 | 2509 | 6076 | 2016-07-02 19:01:20 | This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB | 12 | 10 | Blu | floofer |
| 810 | 749075273010798592 | 2360 | 6353 | 2016-07-02 03:00:36 | This is Boomer. He's self-baptizing. Other doggo not ready to renounce sins. 11/10 spiritually awakened af https://t.co/cRTJiQQk9o | 11 | 10 | Boomer | doggo |
| 811 | 749064354620928000 | 1714 | 5277 | 2016-07-02 02:17:13 | Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF | 11 | 10 | Winston | |
| 812 | 749036806121881602 | 896 | 3425 | 2016-07-02 00:27:45 | This is Dietrich. He hops at random. Other doggos don't understand him. It upsets him greatly. 8/10 would comfort https://t.co/U8cSRz8wzC | 8 | 10 | Dietrich | |
| 813 | 748977405889503236 | 3759 | 11235 | 2016-07-01 20:31:43 | What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX | 10 | 10 | NaN | |
| 814 | 748932637671223296 | 2564 | 6461 | 2016-07-01 17:33:49 | Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb | 13 | 10 | Divine | doggo |
| 815 | 748705597323898880 | 1067 | 3047 | 2016-07-01 02:31:39 | #BarkWeek is getting rather heckin terrifying over here. Doin me quite the spooken. 13/10 (vid by @corgi_zero) https://t.co/eA7k1ZQslA | 13 | 10 | None | |
| 816 | 748699167502000129 | 1814 | 5213 | 2016-07-01 02:06:06 | Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c | 11 | 10 | Tripp | |
| 817 | 748692773788876800 | 1504 | 4659 | 2016-07-01 01:40:41 | That is Quizno. This is his beach. He does not tolerate human shenanigans on his beach. 10/10 reclaim ur land doggo https://t.co/vdr7DaRSa7 | 10 | 10 | NaN | doggo |
| 818 | 748575535303884801 | 2272 | 6696 | 2016-06-30 17:54:50 | This is one of the most reckless puppers I've ever seen. How she got a license in the first place is beyond me. 6/10 https://t.co/z5bAdtn9kd | 6 | 10 | NaN | |
| 819 | 748568946752774144 | 776 | 2411 | 2016-06-30 17:28:39 | This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 | 12 | 10 | Cora | |
| 820 | 748346686624440324 | 1413 | 5735 | 2016-06-30 02:45:28 | "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa | 10 | 10 | None | |
| 821 | 748337862848962560 | 4701 | 8462 | 2016-06-30 02:10:24 | SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek https://t.co/QGGhZoTcwy | 13 | 10 | None | pupper |
| 822 | 748324050481647620 | 867 | 4078 | 2016-06-30 01:15:31 | This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO | 11 | 10 | Duke | |
| 823 | 748307329658011649 | 810 | 4027 | 2016-06-30 00:09:04 | This sherk must've leapt out of the water and into the canoe, trapping the human. Won't even help paddle smh. 7/10 https://t.co/KubWEqOIgO | 7 | 10 | None | |
| 824 | 748220828303695873 | 8825 | 15549 | 2016-06-29 18:25:21 | Stop what you're doing and watch this heckin masterpiece right here. Both 13/10 https://t.co/3BOVI2WZoH | 13 | 10 | None | |
| 825 | 747963614829678593 | 2444 | 6397 | 2016-06-29 01:23:16 | PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q | 10 | 10 | None | pupper |
| 826 | 747933425676525569 | 2894 | 7310 | 2016-06-28 23:23:19 | Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R | 11 | 10 | None | |
| 827 | 747885874273214464 | 1116 | 3243 | 2016-06-28 20:14:22 | This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW | 8 | 10 | NaN | |
| 828 | 747844099428986880 | 851 | 3084 | 2016-06-28 17:28:22 | This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz | 11 | 10 | Huxley | |
| 829 | 747816857231626240 | 1316 | 5346 | 2016-06-28 15:40:07 | Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R | 4 | 10 | NaN | |
| 830 | 747651430853525504 | 179 | 1520 | 2016-06-28 04:42:46 | Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup | 12 | 10 | None | pupper |
| 831 | 747648653817413632 | 6614 | 14182 | 2016-06-28 04:31:44 | This is Keurig. He apparently headbutts other dogs to greet them. Not cool Keurig. So fluffy tho 12/10 https://t.co/zexdr61Q5M | 12 | 10 | Keurig | |
| 832 | 747600769478692864 | 619 | 2545 | 2016-06-28 01:21:27 | This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ | 10 | 10 | Bookstore | |
| 833 | 747594051852075008 | 1205 | 4065 | 2016-06-28 00:54:46 | Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr | 11 | 10 | None | |
| 834 | 747512671126323200 | 1803 | 6110 | 2016-06-27 19:31:23 | Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP | 10 | 10 | None | |
| 835 | 747461612269887489 | 1169 | 4249 | 2016-06-27 16:08:30 | Never seen a shark hold another shark like this before. Must be evolving. Both 10/10 please only send dogs though https://t.co/x4IUNKV79Y | 10 | 10 | None | |
| 836 | 747439450712596480 | 2184 | 5965 | 2016-06-27 14:40:26 | This is Linus. He just wanted to say hello but no one's paying attention. 12/10 (vid by @rebeccacollinzz) https://t.co/VCijm2eVpR | 12 | 10 | Linus | |
| 837 | 747219827526344708 | 1791 | 5792 | 2016-06-27 00:07:44 | This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U | 11 | 10 | Atticus | |
| 838 | 747204161125646336 | 1038 | 3722 | 2016-06-26 23:05:29 | This is Clark. He's deadly af. Clearly part shark (see pic 2). 10/10 would totally still try to pet https://t.co/dmdEBOEctC | 10 | 10 | Clark | |
| 839 | 747103485104099331 | 4548 | 10534 | 2016-06-26 16:25:26 | Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 | 11 | 10 | None | |
| 840 | 746906459439529985 | 336 | 3168 | 2016-06-26 03:22:31 | PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX | 0 | 10 | None | |
| 841 | 746872823977771008 | 2429 | 6593 | 2016-06-26 01:08:52 | This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 | 11 | 10 | NaN | |
| 842 | 746818907684614144 | 1944 | 5807 | 2016-06-25 21:34:37 | Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ | 13 | 10 | None | |
| 843 | 746790600704425984 | 1806 | 5345 | 2016-06-25 19:42:08 | When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf | 10 | 10 | None | |
| 844 | 746757706116112384 | 4432 | 10520 | 2016-06-25 17:31:25 | This is Maddie. She gets some wicked air time. Hardcore barkour. 11/10 nimble af https://t.co/bROYbceZ1u | 11 | 10 | Maddie | |
| 845 | 746726898085036033 | 2037 | 6648 | 2016-06-25 15:29:00 | Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp | 12 | 10 | Abby | |
| 846 | 746542875601690625 | 2104 | 5520 | 2016-06-25 03:17:46 | Here's a golden floofer helping with the groceries. Bed got in way. Still 11/10 helpful af (vid by @categoen) https://t.co/6ZRoZUWFmd | 11 | 10 | None | floofer |
| 847 | 746507379341139972 | 1226 | 5094 | 2016-06-25 00:56:43 | This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 | 10 | 10 | Shiloh | |
| 848 | 746369468511756288 | 1854 | 6637 | 2016-06-24 15:48:42 | This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt | 9 | 10 | NaN | |
| 849 | 746131877086527488 | 2511 | 7565 | 2016-06-24 00:04:36 | This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX | 10 | 10 | Gustav | |
| 850 | 746056683365994496 | 931 | 3904 | 2016-06-23 19:05:49 | This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx | 11 | 10 | Arlen | |
| 851 | 745789745784041472 | 1207 | 4437 | 2016-06-23 01:25:06 | This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu | 10 | 10 | Gus | |
| 852 | 745712589599014916 | 2636 | 7652 | 2016-06-22 20:18:30 | This is Percy. He fell asleep at the wheel. Irresponsible af. 7/10 absolute menace on the roadway https://t.co/QHbvtvaw8E | 7 | 10 | Percy | |
| 853 | 745433870967832576 | 2894 | 7824 | 2016-06-22 01:50:58 | This is Lenox. She's in a wheelbarrow. Silly doggo. You don't belong there. 10/10 would push around https://t.co/oYbVR4nBsR | 10 | 10 | Lenox | doggo |
| 854 | 745422732645535745 | 2768 | 9412 | 2016-06-22 01:06:43 | We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ | 9 | 10 | NaN | |
| 855 | 745314880350101504 | 3131 | 7863 | 2016-06-21 17:58:09 | This is Sugar. She excels underwater. 12/10 photogenic af https://t.co/AWMeXJJz64 | 12 | 10 | Sugar | |
| 856 | 745074613265149952 | 3976 | 8605 | 2016-06-21 02:03:25 | This is Jeffrey. He wasn't prepared to execute such advanced barkour. Still 11/10 would totally pet https://t.co/MuuwkkLrHh | 11 | 10 | Jeffrey | |
| 857 | 745057283344719872 | 2585 | 7945 | 2016-06-21 00:54:33 | This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA | 12 | 10 | Oliver | |
| 858 | 744995568523612160 | 716 | 3277 | 2016-06-20 20:49:19 | This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK | 9 | 10 | Abby | puppo |
| 859 | 744971049620602880 | 3042 | 8652 | 2016-06-20 19:11:53 | Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r | 12 | 10 | Indie | |
| 860 | 744709971296780288 | 1771 | 6150 | 2016-06-20 01:54:27 | This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT | 10 | 10 | Harvey | |
| 861 | 744334592493166593 | 2412 | 7443 | 2016-06-19 01:02:50 | This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z | 11 | 10 | Blanket | |
| 862 | 744234799360020481 | 79515 | 131075 | 2016-06-18 18:26:18 | Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 | 13 | 10 | None | doggo |
| 863 | 744223424764059648 | 424 | 1868 | 2016-06-18 17:41:06 | This is actually a pupper and I'd pet it so well. 12/10\nhttps://t.co/RNqS7C4Y4N | 12 | 10 | NaN | pupper |
| 864 | 743980027717509120 | 1231 | 4551 | 2016-06-18 01:33:55 | This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 | 11 | 10 | Geno | |
| 865 | 743895849529389061 | 1087 | 3999 | 2016-06-17 19:59:26 | When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 | 10 | 10 | None | |
| 866 | 743609206067040256 | 1560 | 4917 | 2016-06-17 01:00:24 | Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA | 10 | 10 | Stark | |
| 867 | 743595368194129920 | 7445 | 20275 | 2016-06-17 00:05:25 | This is Harold. He looks slippery af. Probably difficult to hug. Would still try tho. 7/10 great with kids I bet https://t.co/EVuqdEO66N | 7 | 10 | Harold | |
| 868 | 743545585370791937 | 1066 | 3863 | 2016-06-16 20:47:36 | Say hello to Bentley and Millie. They do everything together. Besties forever. Both 11/10 https://t.co/vU3tKr4vTn | 11 | 10 | Bentley | |
| 869 | 743510151680958465 | 4185 | 8671 | 2016-06-16 18:26:48 | This is Beya. She doesn't want to swim, so she's not going to. 13/10 nonconforming af (vid by @HappyTailsResor) https://t.co/qGeVjHSUKH | 13 | 10 | Beya | |
| 870 | 743253157753532416 | 1366 | 4624 | 2016-06-16 01:25:36 | This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx | 10 | 10 | Kilo | puppo |
| 871 | 743222593470234624 | 2164 | 6792 | 2016-06-15 23:24:09 | This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa | 12 | 10 | NaN | pupper |
| 872 | 743210557239623680 | 1560 | 4215 | 2016-06-15 22:36:19 | Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO | 10 | 10 | Kayla | |
| 873 | 742534281772302336 | 4011 | 7744 | 2016-06-14 01:49:03 | For anyone who's wondering, this is what happens after a doggo catches it's tail... 11/10 https://t.co/G4fNhzelDv | 11 | 10 | None | doggo |
| 874 | 742528092657332225 | 2245 | 4878 | 2016-06-14 01:24:27 | This is Maxaroni. He's pumped as hell for the summer. Been working on his beach bod for so long. 10/10 https://t.co/UHvjxm9B0O | 10 | 10 | Maxaroni | |
| 875 | 742465774154047488 | 4382 | 7916 | 2016-06-13 21:16:49 | Was just informed about this hero pupper and others like her. Another 14/10, would be an absolute honor to pet https://t.co/hBTzPmj36Z | 14 | 10 | None | pupper |
| 876 | 742423170473463808 | 4319 | 10812 | 2016-06-13 18:27:32 | This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b | 12 | 10 | Bell | |
| 877 | 742385895052087300 | 2266 | 7457 | 2016-06-13 15:59:24 | This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq | 11 | 10 | Phil | |
| 878 | 742161199639494656 | 1547 | 4743 | 2016-06-13 01:06:33 | This is Doug. He's trying to float away. 12/10 you got this Doug https://t.co/bZaHC3lvTL | 12 | 10 | Doug | |
| 879 | 742150209887731712 | 1783 | 5661 | 2016-06-13 00:22:53 | This is Edmund. He sends stellar selfies. Cute af. 8/10 would totally snapchat with this pupper https://t.co/PprXoqZuKY | 8 | 10 | Edmund | pupper |
| 880 | 741793263812808706 | 1698 | 4982 | 2016-06-12 00:44:30 | When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu | 10 | 10 | None | |
| 881 | 741743634094141440 | 3144 | 8945 | 2016-06-11 21:27:17 | Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE | 11 | 10 | Aqua | pupper |
| 882 | 741438259667034112 | 937 | 4026 | 2016-06-11 01:13:51 | This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 | 9 | 10 | Tucker | |
| 883 | 741303864243200000 | 3650 | 9631 | 2016-06-10 16:19:48 | This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ | 12 | 10 | Theodore | |
| 884 | 741099773336379392 | 6247 | 10997 | 2016-06-10 02:48:49 | This is Ted. He's given up. 11/10 relatable af https://t.co/7muyOQXbGJ | 11 | 10 | Ted | |
| 885 | 741067306818797568 | 3520 | 10342 | 2016-06-10 00:39:48 | This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | 12 | 10 | NaN | doggo, pupper |
| 886 | 740995100998766593 | 3154 | 7018 | 2016-06-09 19:52:53 | This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ | 10 | 10 | Leo | |
| 887 | 740711788199743490 | 1062 | 3736 | 2016-06-09 01:07:06 | Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv | 9 | 10 | None | |
| 888 | 740699697422163968 | 888 | 3101 | 2016-06-09 00:19:04 | This is Chip. He only mowed half the yard. 8/10 quit the shit Chip we have other things to do https://t.co/LjzZKQ7vmK | 8 | 10 | Chip | |
| 889 | 740676976021798912 | 7724 | 19881 | 2016-06-08 22:48:46 | Meet Baloo. He's expecting a fast ground ball, hence the wide stance. Prepared af. 11/10 nothing runs like a pupper https://t.co/sMbMw5Z2XC | 11 | 10 | Baloo | pupper |
| 890 | 740373189193256964 | 9220 | 20648 | 2016-06-08 02:41:38 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ | 14 | 10 | None | |
| 891 | 740365076218183684 | 495 | 2727 | 2016-06-08 02:09:24 | When the photographer forgets to tell you where to look... 10/10 https://t.co/u1GHWxhC85 | 10 | 10 | None | |
| 892 | 740359016048689152 | 967 | 3610 | 2016-06-08 01:45:19 | This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW | 9 | 10 | Chase | |
| 893 | 740214038584557568 | 2220 | 7335 | 2016-06-07 16:09:13 | This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X | 10 | 10 | NaN | |
| 894 | 739979191639244800 | 6719 | 21898 | 2016-06-07 00:36:02 | This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf | 12 | 10 | Nollie | |
| 895 | 739932936087216128 | 1217 | 4443 | 2016-06-06 21:32:13 | Say hello to Rorie. She's zen af. Just enjoying a treat in the sunlight. 10/10 would immediately trade lives with https://t.co/yctnFptdQ1 | 10 | 10 | Rorie | |
| 896 | 739844404073074688 | 966 | 4138 | 2016-06-06 15:40:26 | This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 | 12 | 10 | Simba | |
| 897 | 739623569819336705 | 1547 | 4185 | 2016-06-06 01:02:55 | Here's a doggo that don't need no human. 12/10 independent af (vid by @MichelleLiuCee) https://t.co/vdgtdb6rON | 12 | 10 | None | doggo |
| 898 | 739606147276148736 | 1876 | 5897 | 2016-06-05 23:53:41 | Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj | 9 | 10 | Benji | pupper |
| 899 | 739544079319588864 | 24319 | 43694 | 2016-06-05 19:47:03 | This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P | 10 | 10 | None | |
| 900 | 739485634323156992 | 3309 | 7887 | 2016-06-05 15:54:48 | This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO | 6 | 10 | Kyle | |
| 901 | 739238157791694849 | 52360 | 75163 | 2016-06-04 23:31:25 | Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC | 13 | 10 | None | doggo |
| 902 | 738891149612572673 | 6 | 115 | 2016-06-04 00:32:32 | @mount_alex3 13/10 | 13 | 10 | None | |
| 903 | 738885046782832640 | 1283 | 4127 | 2016-06-04 00:08:17 | This is Charles. He's a Nova Scotian Towel Pouncer. Deadly af. Nifty tongue slip. 11/10 would pet with caution https://t.co/EfejX3iRGr | 11 | 10 | Charles | |
| 904 | 738883359779196928 | 917 | 3661 | 2016-06-04 00:01:35 | When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc | 10 | 10 | None | |
| 905 | 738537504001953792 | 1759 | 5575 | 2016-06-03 01:07:16 | This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu | 11 | 10 | Bayley | puppo |
| 906 | 738402415918125056 | 955 | 3599 | 2016-06-02 16:10:29 | "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK | 10 | 10 | None | |
| 907 | 738184450748633089 | 1360 | 4727 | 2016-06-02 01:44:22 | For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl | 9 | 10 | None | |
| 908 | 738166403467907072 | 3828 | 9635 | 2016-06-02 00:32:39 | This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs | 12 | 10 | Axel | |
| 909 | 738156290900254721 | 748 | 2768 | 2016-06-01 23:52:28 | This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC | 10 | 10 | Storkson | |
| 910 | 737826014890496000 | 2006 | 5757 | 2016-06-01 02:00:04 | This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK | 10 | 10 | Remy | |
| 911 | 737800304142471168 | 3904 | 10943 | 2016-06-01 00:17:54 | This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj | 10 | 10 | Bella | |
| 912 | 737678689543020544 | 1509 | 5528 | 2016-05-31 16:14:39 | We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 | 11 | 10 | None | |
| 913 | 737445876994609152 | 5048 | 11302 | 2016-05-31 00:49:32 | Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT | 13 | 10 | None | floofer |
| 914 | 737322739594330112 | 907 | 3953 | 2016-05-30 16:40:14 | Say hello to Lily. She's not injured or anything. Just wants everyone to hear her. 9/10 clever af https://t.co/3xqGVH0Dhw | 9 | 10 | Lily | |
| 915 | 737310737551491075 | 8329 | 16040 | 2016-05-30 15:52:33 | Everybody stop what you're doing and watch these puppers enjoy summer. Both 13/10 https://t.co/wvjqSCN6iC | 13 | 10 | None | |
| 916 | 736736130620620800 | 1972 | 4736 | 2016-05-29 01:49:16 | This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW | 13 | 10 | Chadrick | |
| 917 | 736392552031657984 | 8407 | 19450 | 2016-05-28 03:04:00 | Say hello to mad pupper. You know what you did. 13/10 would pet until no longer furustrated https://t.co/u1ulQ5heLX | 13 | 10 | NaN | pupper |
| 918 | 736365877722001409 | 1408 | 4367 | 2016-05-28 01:18:00 | This is Rory. He's extremely impatient. 11/10 settle down pupper https://t.co/e3tfXJLi40 | 11 | 10 | Rory | pupper |
| 919 | 736225175608430592 | 3115 | 8901 | 2016-05-27 15:58:54 | We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc | 10 | 10 | NaN | |
| 920 | 736010884653420544 | 3355 | 8652 | 2016-05-27 01:47:23 | Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS | 10 | 10 | None | |
| 921 | 735991953473572864 | 1283 | 3934 | 2016-05-27 00:32:10 | This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca | 11 | 10 | Maxaroni | |
| 922 | 735648611367784448 | 1237 | 4397 | 2016-05-26 01:47:51 | *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK | 12 | 10 | None | pupper |
| 923 | 735635087207878657 | 2659 | 6776 | 2016-05-26 00:54:06 | This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj | 11 | 10 | Dakota | |
| 924 | 735274964362878976 | 4707 | 9629 | 2016-05-25 01:03:06 | We only rate dogs. Please stop sending in your 31 year old sons that won't get out of your house. Thank you... 11/10 https://t.co/aTU53NNUkt | 11 | 10 | None | |
| 925 | 735256018284875776 | 993 | 3675 | 2016-05-24 23:47:49 | This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS | 8 | 10 | Kellogg | doggo |
| 926 | 735137028879360001 | 1092 | 3428 | 2016-05-24 15:55:00 | Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 | 9 | 10 | Buckley | pupper |
| 927 | 734912297295085568 | 572 | 2993 | 2016-05-24 01:02:00 | This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK | 10 | 10 | Jax | |
| 928 | 734787690684657664 | 7102 | 13745 | 2016-05-23 16:46:51 | This dog is more successful than I will ever be. 13/10 absolute legend https://t.co/BPoaHySYwA | 13 | 10 | None | |
| 929 | 734776360183431168 | 608 | 2742 | 2016-05-23 16:01:50 | This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO | 11 | 10 | Livvie | |
| 930 | 734559631394082816 | 451 | 1646 | 2016-05-23 01:40:38 | When your friend is turnt af and you're just trying to chill. 10/10 (vid by @presgang) https://t.co/OufVDk23JC | 10 | 10 | None | |
| 931 | 733828123016450049 | 881 | 3926 | 2016-05-21 01:13:53 | This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ | 10 | 10 | Terry | |
| 932 | 733822306246479872 | 1141 | 4015 | 2016-05-21 00:50:46 | This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL | 10 | 10 | Moose | floofer |
| 933 | 733482008106668032 | 1065 | 3438 | 2016-05-20 02:18:32 | "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L | 10 | 10 | None | |
| 934 | 733460102733135873 | 1451 | 4605 | 2016-05-20 00:51:30 | This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA | 11 | 10 | Hermione | |
| 935 | 733109485275860992 | 17621 | 44619 | 2016-05-19 01:38:16 | Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda | 12 | 10 | None | doggo, pupper |
| 936 | 732732193018155009 | 599 | 2671 | 2016-05-18 00:39:02 | This is Ralpher. He's an East Guinean Flop Dog. Cuddly af. 12/10 https://t.co/rVOLuNRpjH | 12 | 10 | Ralpher | |
| 937 | 732726085725589504 | 1003 | 3855 | 2016-05-18 00:14:46 | This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL | 11 | 10 | Aldrick | |
| 938 | 732585889486888962 | 868 | 4016 | 2016-05-17 14:57:41 | When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp | 10 | 10 | None | |
| 939 | 732375214819057664 | 2838 | 8832 | 2016-05-17 01:00:32 | This is Kyle (pronounced 'Mitch'). He strives to be the best doggo he can be. 11/10 would pat on head approvingly https://t.co/aA2GiTGvlE | 11 | 10 | Kyle | doggo |
| 940 | 732005617171337216 | 6154 | 16324 | 2016-05-16 00:31:53 | This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r | 11 | 10 | Larry | |
| 941 | 731285275100512256 | 1090 | 3798 | 2016-05-14 00:49:30 | This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP | 12 | 10 | Solomon | |
| 942 | 731156023742988288 | 1434 | 4196 | 2016-05-13 16:15:54 | Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv | 12 | 10 | NaN | |
| 943 | 730924654643314689 | 2234 | 6682 | 2016-05-13 00:56:32 | We only rate dogs. Pls stop sending non-canines like this Bulgarian Eyeless Porch Bear. This is unacceptable... 9/10 https://t.co/2yctWAUZ3Z | 9 | 10 | NaN | |
| 944 | 730573383004487680 | 2435 | 5407 | 2016-05-12 01:40:42 | This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV | 10 | 10 | Rooney | pupper |
| 945 | 730427201120833536 | 1176 | 3809 | 2016-05-11 15:59:50 | This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG | 11 | 10 | Crystal | |
| 946 | 730211855403241472 | 1182 | 4180 | 2016-05-11 01:44:07 | This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE | 11 | 10 | Ziva | |
| 947 | 730196704625098752 | 2172 | 5339 | 2016-05-11 00:43:55 | This is Charles. He's camera shy. Tail longer than average. Doesn't look overwhelmingly fluffy. 6/10 would still pet https://t.co/rXvcElhoog | 6 | 10 | Charles | |
| 948 | 729854734790754305 | 1268 | 4396 | 2016-05-10 02:05:03 | Say hello to Ollie. He conducts this train. He also greets you as you enter. Kind af. 11/10 would pet so firmly https://t.co/jVxOGKEU0z | 11 | 10 | Ollie | |
| 949 | 729838605770891264 | 431 | 1856 | 2016-05-10 01:00:58 | "Challenge completed" \n(pupgraded to 12/10) https://t.co/85dTK7XCXB | 12 | 10 | None | |
| 950 | 729823566028484608 | 1390 | 4358 | 2016-05-10 00:01:12 | This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh | 13 | 10 | Stefan | |
| 951 | 729463711119904772 | 2586 | 6340 | 2016-05-09 00:11:16 | Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 | 13 | 10 | Pupcasso | |
| 952 | 729113531270991872 | 370 | 2054 | 2016-05-08 00:59:46 | "Challenge accepted"\n10/10 https://t.co/vNjvr5Bl9u | 10 | 10 | None | |
| 953 | 728986383096946689 | 917 | 3460 | 2016-05-07 16:34:32 | This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B | 11 | 10 | Puff | |
| 954 | 728760639972315136 | 1911 | 5090 | 2016-05-07 01:37:30 | When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq | 13 | 10 | None | |
| 955 | 728751179681943552 | 757 | 3032 | 2016-05-07 00:59:55 | This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE | 10 | 10 | Flurpson | |
| 956 | 728653952833728512 | 1169 | 3620 | 2016-05-06 18:33:34 | This is Coleman. Somebody needs to tell him that he's sitting in chairs wrong. 8/10 https://t.co/O10zjJ2Ixs | 8 | 10 | Coleman | |
| 957 | 728409960103686147 | 2269 | 5383 | 2016-05-06 02:24:02 | This is Wallace. He's a skater pup. He said see ya later pup. Can easily do a kick flip. Gnarly af. 10/10 v petable https://t.co/5i8fORVKgr | 10 | 10 | Wallace | |
| 958 | 728387165835677696 | 1075 | 3999 | 2016-05-06 00:53:27 | This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP | 12 | 10 | Enchilada | |
| 959 | 728046963732717569 | 1328 | 4722 | 2016-05-05 02:21:37 | This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ | 11 | 10 | Raymond | |
| 960 | 728035342121635841 | 1872 | 4953 | 2016-05-05 01:35:26 | This is all I want in my life. 12/10 for super sleepy pupper https://t.co/4RlLA5ObMh | 12 | 10 | NaN | pupper |
| 961 | 728015554473250816 | 1219 | 4479 | 2016-05-05 00:16:48 | This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi | 11 | 10 | Rueben | pupper |
| 962 | 727685679342333952 | 720 | 3206 | 2016-05-04 02:26:00 | This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 | 12 | 10 | Cilantro | |
| 963 | 727644517743104000 | 1962 | 6431 | 2016-05-03 23:42:26 | Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT | 13 | 10 | None | doggo |
| 964 | 727524757080539137 | 1379 | 4900 | 2016-05-03 15:46:33 | This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx | 10 | 10 | None | pupper |
| 965 | 727314416056803329 | 834 | 3623 | 2016-05-03 01:50:44 | This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs | 11 | 10 | None | pupper |
| 966 | 727286334147182592 | 920 | 3324 | 2016-05-02 23:59:09 | I swear to god if we get sent another Blue Madagascan Peacock we'll deactivate. We 👏 Only 👏 Rate 👏 Dogs... 9/10 https://t.co/bbta2Q4URK | 9 | 10 | None | |
| 967 | 727175381690781696 | 1540 | 4209 | 2016-05-02 16:38:15 | This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp | 10 | 10 | Karll | |
| 968 | 727155742655025152 | 1490 | 3983 | 2016-05-02 15:20:13 | When you're trying to enjoy yourself but end up having to take care of your way too drunk friend. 11/10 https://t.co/BRkhj6tdN0 | 11 | 10 | None | |
| 969 | 726935089318363137 | 2738 | 7496 | 2016-05-02 00:43:25 | This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY | 12 | 10 | Sprout | |
| 970 | 726887082820554753 | 1677 | 4195 | 2016-05-01 21:32:40 | This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy | 10 | 10 | Blitz | |
| 971 | 726828223124897792 | 1124 | 3882 | 2016-05-01 17:38:46 | This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA | 12 | 10 | Bloop | |
| 972 | 726224900189511680 | 1302 | 4811 | 2016-04-30 01:41:23 | I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z | 9 | 10 | None | |
| 973 | 725842289046749185 | 2970 | 7691 | 2016-04-29 00:21:01 | This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH | 12 | 10 | Colby | |
| 974 | 725786712245440512 | 1527 | 4537 | 2016-04-28 20:40:11 | Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw | 11 | 10 | Lillie | pupper |
| 975 | 725729321944506368 | 2009 | 5646 | 2016-04-28 16:52:08 | This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU | 12 | 10 | Lola | |
| 976 | 725458796924002305 | 703 | 1541 | 2016-04-27 22:57:10 | Pup had to be removed cuz it wouldn't have been fair to the opposing team. 13/10 absolute legend ⚽️\nhttps://t.co/BHICimO58W | 13 | 10 | None | |
| 977 | 724983749226668032 | 1462 | 4040 | 2016-04-26 15:29:30 | This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD | 12 | 10 | Fred | |
| 978 | 724771698126512129 | 725 | 2593 | 2016-04-26 01:26:53 | Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs | 11 | 10 | None | doggo |
| 979 | 724405726123311104 | 1847 | 5800 | 2016-04-25 01:12:38 | This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH | 10 | 10 | Ashleigh | pupper |
| 980 | 724049859469295616 | 1984 | 4738 | 2016-04-24 01:38:33 | This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT | 10 | 10 | Kreggory | |
| 981 | 724046343203856385 | 620 | 2901 | 2016-04-24 01:24:35 | This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL | 10 | 10 | Sarge | |
| 982 | 724004602748780546 | 1790 | 4561 | 2016-04-23 22:38:43 | This is Luther. He saw a ghost. Spooked af. 11/10 hang in there pupper https://t.co/EdKG43VvEl | 11 | 10 | Luther | pupper |
| 983 | 723912936180330496 | 1374 | 4236 | 2016-04-23 16:34:28 | This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm | 12 | 10 | Sugar | |
| 984 | 723688335806480385 | 3347 | 8435 | 2016-04-23 01:41:59 | This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 | 12 | 10 | Reginald | |
| 985 | 723673163800948736 | 1011 | 3291 | 2016-04-23 00:41:42 | This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU | 10 | 10 | Ivar | |
| 986 | 723179728551723008 | 2110 | 5761 | 2016-04-21 16:00:57 | This is Jangle. She's addicted to broccoli. It's the only thing she cares about. Tragic af. 8/10 get help pup https://t.co/8dNWp1cSEa | 8 | 10 | Jangle | |
| 987 | 722974582966214656 | 1764 | 4493 | 2016-04-21 02:25:47 | Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a | 13 | 10 | None | |
| 988 | 722613351520608256 | 1831 | 5393 | 2016-04-20 02:30:23 | Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY | 12 | 10 | Schnitzel | |
| 989 | 721503162398597120 | 2124 | 5086 | 2016-04-17 00:58:53 | This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE | 11 | 10 | Panda | |
| 990 | 721001180231503872 | 686 | 2748 | 2016-04-15 15:44:11 | This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT | 11 | 10 | Oliver | pupper |
| 991 | 720785406564900865 | 866 | 3400 | 2016-04-15 01:26:47 | This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp | 12 | 10 | Archie | |
| 992 | 720775346191278080 | 760 | 2702 | 2016-04-15 00:46:48 | This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej | 10 | 10 | Berkeley | |
| 993 | 720415127506415616 | 1681 | 4503 | 2016-04-14 00:55:25 | Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw | 10 | 10 | None | |
| 994 | 720389942216527872 | 2840 | 6974 | 2016-04-13 23:15:21 | This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk | 11 | 10 | Ralphé | |
| 995 | 720340705894408192 | 1098 | 3131 | 2016-04-13 19:59:42 | This is Derek. He just got balled on. Can't even get up. Poor thing. 10/10 hang in there pupper https://t.co/BIRRF3bcWH | 10 | 10 | Derek | pupper |
| 996 | 720059472081784833 | 1268 | 4229 | 2016-04-13 01:22:10 | This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu | 9 | 10 | Charleson | |
| 997 | 720043174954147842 | 2253 | 5332 | 2016-04-13 00:17:25 | This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv | 11 | 10 | Neptune | |
| 998 | 719991154352222208 | 1979 | 5281 | 2016-04-12 20:50:42 | This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV | 10 | 10 | None | doggo |
| 999 | 719704490224398336 | 1645 | 4974 | 2016-04-12 01:51:36 | This is Clyde. He's making sure you're having a good train ride. 12/10 great pupper https://t.co/y206kWHAj0 | 12 | 10 | Clyde | pupper |
| 1000 | 719551379208073216 | 2192 | 5515 | 2016-04-11 15:43:12 | This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln | 10 | 10 | Harnold | |
| 1001 | 719367763014393856 | 827 | 3022 | 2016-04-11 03:33:34 | Meet Sid & Murphy. Murphy floats alongside Sid and whispers motivational quotes in his ear. Magical af. Both 11/10 https://t.co/7mmjyearQW | 11 | 10 | Sid | |
| 1002 | 719339463458033665 | 1403 | 4822 | 2016-04-11 01:41:07 | Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R | 10 | 10 | Lucy | |
| 1003 | 719332531645071360 | 1078 | 3711 | 2016-04-11 01:13:34 | This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz | 11 | 10 | Pippa | |
| 1004 | 718971898235854848 | 1231 | 3818 | 2016-04-10 01:20:33 | This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT | 10 | 10 | Sadie | |
| 1005 | 718939241951195136 | 1973 | 5720 | 2016-04-09 23:10:47 | This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih | 12 | 10 | Otis | |
| 1006 | 718631497683582976 | 9126 | 20697 | 2016-04-09 02:47:55 | We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos | 10 | 10 | None | |
| 1007 | 718613305783398402 | 542 | 2669 | 2016-04-09 01:35:37 | This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj | 11 | 10 | Carper | |
| 1008 | 718540630683709445 | 1137 | 2730 | 2016-04-08 20:46:50 | Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ | 10 | 10 | None | |
| 1009 | 718460005985447936 | 602 | 2846 | 2016-04-08 15:26:28 | Meet Bowie. He's listening for underground squirrels. Smart af. Left eye is considerably magical. 9/10 would so pet https://t.co/JyNmyjy3fe | 9 | 10 | Bowie | |
| 1010 | 718454725339934721 | 1685 | 5320 | 2016-04-08 15:05:29 | This pic is old but I hadn't seen it until today and had to share. Creative af. 13/10 very good boy, would pet well https://t.co/4kD16wMA1Z | 13 | 10 | None | |
| 1011 | 718246886998687744 | 565 | 2115 | 2016-04-08 01:19:36 | This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl | 3 | 10 | Alexanderson | |
| 1012 | 718234618122661888 | 1127 | 4217 | 2016-04-08 00:30:51 | This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb | 11 | 10 | Suki | |
| 1013 | 717841801130979328 | 670 | 2660 | 2016-04-06 22:29:56 | This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV | 11 | 10 | Barclay | |
| 1014 | 717790033953034240 | 1272 | 3170 | 2016-04-06 19:04:14 | Here's a badass mystery pupper. You weren't aware that you owe him money, but you do. 10/10 shades sick af https://t.co/fv9e9AtzSG | 10 | 10 | None | pupper |
| 1015 | 717537687239008257 | 2069 | 6281 | 2016-04-06 02:21:30 | People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n | 11 | 10 | NaN | |
| 1016 | 717428917016076293 | 510 | 1748 | 2016-04-05 19:09:17 | This is Skittle. He's trying to communicate. 11/10 solid effort https://t.co/6WTfJvtKx6 | 11 | 10 | Skittle | |
| 1017 | 717421804990701568 | 945 | 3446 | 2016-04-05 18:41:02 | This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi | 9 | 10 | Ebby | |
| 1018 | 717047459982213120 | 2135 | 6826 | 2016-04-04 17:53:31 | This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq | 12 | 10 | Flávio | |
| 1019 | 717009362452090881 | 1102 | 3583 | 2016-04-04 15:22:08 | This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 | 10 | 10 | Smokey | pupper |
| 1020 | 716802964044845056 | 1317 | 4627 | 2016-04-04 01:41:58 | This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o | 10 | 10 | Link | |
| 1021 | 716791146589110272 | 1474 | 5204 | 2016-04-04 00:55:01 | Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate & churlish. 11/10 would still pet https://t.co/h0trcJohYO | 11 | 10 | Jennifur | |
| 1022 | 716730379797970944 | 475 | 1339 | 2016-04-03 20:53:33 | There has clearly been a mistake. Pup did nothing wrong. 12/10 would help escape\nhttps://t.co/Juid3nnLbC | 12 | 10 | None | |
| 1023 | 716447146686459905 | 6643 | 14327 | 2016-04-03 02:08:05 | This is Ozzy. He's acrobatic af. Legendary pupper status achieved. 13/10 https://t.co/gHWsCTu90E | 13 | 10 | Ozzy | pupper |
| 1024 | 716439118184652801 | 247 | 2574 | 2016-04-03 01:36:11 | This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq | 11 | 10 | Bluebert | |
| 1025 | 716285507865542656 | 1225 | 3041 | 2016-04-02 15:25:47 | This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ | 12 | 10 | Stephanus | |
| 1026 | 716080869887381504 | 1935 | 5272 | 2016-04-02 01:52:38 | Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu | 11 | 10 | None | doggo |
| 1027 | 715928423106027520 | 987 | 3485 | 2016-04-01 15:46:52 | This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq | 11 | 10 | Bubbles | |
| 1028 | 715758151270801409 | 1596 | 4085 | 2016-04-01 04:30:16 | This is old now but it's absolutely heckin fantastic and I can't not share it with you all. 13/10 https://t.co/wJX74TSgzP | 13 | 10 | NaN | |
| 1029 | 715733265223708672 | 1920 | 5093 | 2016-04-01 02:51:22 | This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 | 10 | 10 | NaN | |
| 1030 | 715704790270025728 | 634 | 3055 | 2016-04-01 00:58:13 | This is Bentley. He gives kisses back. 11/10 precious af (vid by @emmaallen25) https://t.co/9PnKkKzoUp | 11 | 10 | Bentley | |
| 1031 | 715696743237730304 | 1454 | 4257 | 2016-04-01 00:26:15 | Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC | 10 | 10 | Toby | |
| 1032 | 715680795826982913 | 1813 | 4719 | 2016-03-31 23:22:53 | This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp | 12 | 10 | Zeus | |
| 1033 | 715360349751484417 | 1772 | 5955 | 2016-03-31 02:09:32 | This is Bertson. He just wants to say hi. 11/10 would boop nose https://t.co/hwv7Wq6gDA | 11 | 10 | Bertson | |
| 1034 | 715342466308784130 | 768 | 3294 | 2016-03-31 00:58:29 | This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C | 10 | 10 | Oscar | |
| 1035 | 715220193576927233 | 736 | 2630 | 2016-03-30 16:52:36 | This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx | 10 | 10 | Nico | |
| 1036 | 715200624753819648 | 2110 | 5578 | 2016-03-30 15:34:51 | This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 | 12 | 10 | Michelangelope | |
| 1037 | 715009755312439296 | 1392 | 4550 | 2016-03-30 02:56:24 | This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i | 12 | 10 | Siba | |
| 1038 | 714982300363173890 | 1166 | 4094 | 2016-03-30 01:07:18 | This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj | 9 | 10 | Calbert | |
| 1039 | 714962719905021952 | 4816 | 8028 | 2016-03-29 23:49:30 | Just in case anyone's having a bad day. 12/10 would bounce with https://t.co/T9sgP9ttnQ | 12 | 10 | None | |
| 1040 | 714957620017307648 | 1595 | 4503 | 2016-03-29 23:29:14 | This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK | 10 | 10 | Curtis | |
| 1041 | 714631576617938945 | 1122 | 3571 | 2016-03-29 01:53:39 | This is Benedict. He's a feisty pup. Needs a brushing. Portable af. Looks very angry actually. 4/10 might not pet https://t.co/3oeFfHjv0Z | 4 | 10 | Benedict | |
| 1042 | 714606013974974464 | 1038 | 3938 | 2016-03-29 00:12:05 | Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG | 12 | 10 | None | |
| 1043 | 714485234495041536 | 1313 | 2962 | 2016-03-28 16:12:09 | This is Blitz. He screams. 10/10 (vid by @yeaahliv) https://t.co/MfW2aym5UF | 10 | 10 | Blitz | |
| 1044 | 714258258790387713 | 808 | 3281 | 2016-03-28 01:10:13 | Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 & 8/10\nget it together Flurp https://t.co/Akzl5ynMmE | 10 | 10 | Travis | |
| 1045 | 714251586676113411 | 940 | 3570 | 2016-03-28 00:43:43 | This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi | 8 | 10 | Thumas | |
| 1046 | 714214115368108032 | 990 | 2480 | 2016-03-27 22:14:49 | Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB | 13 | 10 | None | |
| 1047 | 714141408463036416 | 1569 | 4673 | 2016-03-27 17:25:54 | I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu | 10 | 10 | None | |
| 1048 | 713919462244790272 | 869 | 3564 | 2016-03-27 02:43:58 | This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE | 12 | 10 | Kanu | |
| 1049 | 713909862279876608 | 616 | 2078 | 2016-03-27 02:05:49 | This is Doug. His nose is legendary af. 12/10 (vid by @probably_trey) https://t.co/7IWKfbfihS | 12 | 10 | Doug | |
| 1050 | 713900603437621249 | 829 | 3062 | 2016-03-27 01:29:02 | Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 | 11 | 10 | None | |
| 1051 | 713761197720473600 | 1541 | 5308 | 2016-03-26 16:15:05 | This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 | 12 | 10 | Piper | |
| 1052 | 713411074226274305 | 1440 | 4802 | 2016-03-25 17:03:49 | Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq | 11 | 10 | None | |
| 1053 | 713177543487135744 | 3183 | 7854 | 2016-03-25 01:35:51 | This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J | 10 | 10 | Lance | |
| 1054 | 713175907180089344 | 1630 | 4851 | 2016-03-25 01:29:21 | Say hello to Opie and Clarkus. Clarkus fell asleep so Opie buried him. Ruthless af 10/10 for both https://t.co/xT7XaY4gnW | 10 | 10 | Opie | |
| 1055 | 712809025985978368 | 7602 | 20378 | 2016-03-24 01:11:29 | This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn | 10 | 10 | Stubert | |
| 1056 | 712717840512598017 | 5616 | 13474 | 2016-03-23 19:09:09 | Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 | 10 | 10 | None | |
| 1057 | 712668654853337088 | 1367 | 4531 | 2016-03-23 15:53:42 | Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl | 10 | 10 | Sunny | |
| 1058 | 712438159032893441 | 1756 | 5799 | 2016-03-23 00:37:48 | This is Kane. He's a semi-submerged Haitian Huffleplop. Happy af. Sick waterfall. 11/10 would pat head approvingly https://t.co/7zjEC501Ul | 11 | 10 | Kane | |
| 1059 | 712309440758808576 | 26 | 269 | 2016-03-22 16:06:19 | Reminder that we made our first set of stickers available! All are 12/10 would stick\nUse code "pupper" at checkout🐶\n\nhttps://t.co/kJIMNyMNKV | 12 | 10 | None | pupper |
| 1060 | 712097430750289920 | 1172 | 4144 | 2016-03-22 02:03:52 | I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK | 10 | 10 | None | |
| 1061 | 712092745624633345 | 1016 | 3211 | 2016-03-22 01:45:15 | This is Steven. He's inverted af. Also very helpful. Scans anything you want for free. Takes him a while tho. 7/10 https://t.co/tA0ZiQ7JcG | 7 | 10 | Steven | |
| 1062 | 712085617388212225 | 556 | 3531 | 2016-03-22 01:16:55 | Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL | 11 | 10 | Olive | |
| 1063 | 712065007010385924 | 700 | 2451 | 2016-03-21 23:55:01 | This is Chester. He's clearly in charge of the other dogs. Weird ass paws. Not fit for fetch. 6/10 would still pet https://t.co/o2GvskrhHt | 6 | 10 | Chester | |
| 1064 | 711968124745228288 | 2601 | 8776 | 2016-03-21 17:30:03 | Meet Winston. He's trapped in a cup of coffee. Poor pupper. 10/10 someone free him https://t.co/2e6cUtKUuc | 10 | 10 | Winston | pupper |
| 1065 | 711743778164514816 | 1101 | 3095 | 2016-03-21 02:38:34 | Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg | 11 | 10 | Roosevelt | |
| 1066 | 711732680602345472 | 4653 | 9756 | 2016-03-21 01:54:29 | I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 | 10 | 10 | None | |
| 1067 | 711694788429553666 | 20500 | 35865 | 2016-03-20 23:23:54 | Oh. My. God. 13/10 magical af https://t.co/Ezu6jQrKAZ | 13 | 10 | None | |
| 1068 | 711652651650457602 | 1037 | 4228 | 2016-03-20 20:36:28 | This is Gary. He just wanted to say hi. 9/10 very personable pup https://t.co/Sk3CbhmKSW | 9 | 10 | Gary | |
| 1069 | 711363825979756544 | 1287 | 3996 | 2016-03-20 01:28:47 | "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK | 11 | 10 | None | |
| 1070 | 711306686208872448 | 819 | 3596 | 2016-03-19 21:41:44 | What hooligan sent in pictures w/out a dog in them? Churlish af. 3/10 just bc that's a neat fluffy bean bag chair https://t.co/wcwoGOkZvz | 3 | 10 | None | |
| 1071 | 711008018775851008 | 710 | 3275 | 2016-03-19 01:54:56 | This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW | 11 | 10 | Chuckles | pupper |
| 1072 | 710997087345876993 | 1561 | 4960 | 2016-03-19 01:11:29 | Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD | 12 | 10 | Milo | |
| 1073 | 710844581445812225 | 779 | 2775 | 2016-03-18 15:05:29 | This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM | 10 | 10 | Staniel | |
| 1074 | 710833117892898816 | 606 | 2937 | 2016-03-18 14:19:56 | Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq | 12 | 10 | Sora | |
| 1075 | 710658690886586372 | 636 | 2529 | 2016-03-18 02:46:49 | Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 | 10 | 10 | None | |
| 1076 | 710609963652087808 | 2624 | 5227 | 2016-03-17 23:33:12 | I've watched this a million times and you probably will too. 12/10 (vid by @emily_galasso) https://t.co/DU7Rb3NDiy | 12 | 10 | None | |
| 1077 | 710588934686908417 | 2107 | 4968 | 2016-03-17 22:09:38 | This is Beemo. He's a Chubberflop mix. 12/10 would cross the world for https://t.co/kzMVMU8HBV | 12 | 10 | Beemo | |
| 1078 | 710296729921429505 | 833 | 2574 | 2016-03-17 02:48:31 | This is Oshie. 12/10 please enjoy (vid by @catherinec1389) https://t.co/VmtzwAuotq | 12 | 10 | Oshie | |
| 1079 | 710283270106132480 | 580 | 2308 | 2016-03-17 01:55:02 | This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ | 11 | 10 | Gunner | |
| 1080 | 710272297844797440 | 1425 | 4945 | 2016-03-17 01:11:26 | We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 | 11 | 10 | NaN | |
| 1081 | 710269109699739648 | 1257 | 2613 | 2016-03-17 00:58:46 | The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 | 13 | 10 | None | |
| 1082 | 710153181850935296 | 1006 | 3153 | 2016-03-16 17:18:07 | This is Lacy. She's tipping her hat to you. Daydreams of her life back on the frontier. 11/10 would pet so well https://t.co/fG5Pk3Et1I | 11 | 10 | Lacy | |
| 1083 | 710140971284037632 | 1008 | 3017 | 2016-03-16 16:29:35 | This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 | 8 | 10 | Tater | |
| 1084 | 710117014656950272 | 2233 | 5999 | 2016-03-16 14:54:24 | This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV | 11 | 10 | None | pupper |
| 1085 | 709918798883774466 | 1215 | 3250 | 2016-03-16 01:46:45 | Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG | 12 | 10 | Watson | |
| 1086 | 709901256215666688 | 112 | 732 | 2016-03-16 00:37:03 | WeRateDogs stickers are here and they're 12/10! Use code "puppers" at checkout 🐶🐾\n\nShop now: https://t.co/k5xsufRKYm https://t.co/ShXk46V13r | 12 | 10 | None | |
| 1087 | 709852847387627521 | 1336 | 3824 | 2016-03-15 21:24:41 | *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow | 12 | 10 | None | |
| 1088 | 709566166965075968 | 1367 | 3865 | 2016-03-15 02:25:31 | This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 | 12 | 10 | Olaf | |
| 1089 | 709556954897764353 | 1204 | 3593 | 2016-03-15 01:48:55 | This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC | 12 | 10 | Cecil | |
| 1090 | 709519240576036864 | 277 | 1620 | 2016-03-14 23:19:03 | This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 | 9 | 10 | Vince | |
| 1091 | 709449600415961088 | 665 | 2420 | 2016-03-14 18:42:20 | Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo | 10 | 10 | Karma | |
| 1092 | 709409458133323776 | 788 | 2855 | 2016-03-14 16:02:49 | This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A | 8 | 10 | Billy | |
| 1093 | 709225125749587968 | 647 | 2615 | 2016-03-14 03:50:21 | This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn | 11 | 10 | Walker | |
| 1094 | 709207347839836162 | 6567 | 13755 | 2016-03-14 02:39:42 | This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg | 11 | 10 | Penny | |
| 1095 | 709198395643068416 | 721 | 2634 | 2016-03-14 02:04:08 | From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK | 9 | 10 | None | |
| 1096 | 709179584944730112 | 763 | 2213 | 2016-03-14 00:49:23 | This is Sammy. He's in a tree. Very excited about it. 13/10 https://t.co/CLe9ETEjeF | 13 | 10 | Sammy | |
| 1097 | 709158332880297985 | 470 | 2236 | 2016-03-13 23:24:56 | Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR | 10 | 10 | Rodney | |
| 1098 | 709042156699303936 | 1864 | 5197 | 2016-03-13 15:43:18 | This is Klevin. He's addicted to sandwiches (yes a hotdog is a sandwich fight me) It's tearing his family apart 9/10 https://t.co/7BkkVNu5pd | 9 | 10 | Klevin | |
| 1099 | 708853462201716736 | 745 | 1941 | 2016-03-13 03:13:29 | This is Lucy. She doesn't understand fetch. 8/10 try turning off and back on (vid by @rileyyoungblood) https://t.co/RXjEwpVJf0 | 8 | 10 | Lucy | |
| 1100 | 708845821941387268 | 1015 | 3226 | 2016-03-13 02:43:08 | Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI | 9 | 10 | None | pupper |
| 1101 | 708834316713893888 | 571 | 1860 | 2016-03-13 01:57:25 | Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn | 10 | 10 | Malikai | |
| 1102 | 708810915978854401 | 7848 | 18036 | 2016-03-13 00:24:26 | This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 | 10 | 10 | Mister | |
| 1103 | 708738143638450176 | 917 | 2997 | 2016-03-12 19:35:15 | This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD | 11 | 10 | Coco | |
| 1104 | 708711088997666817 | 834 | 2790 | 2016-03-12 17:47:45 | This is Smokey. He really likes tennis balls. 11/10 https://t.co/Ah7WlYTUBQ | 11 | 10 | Smokey | |
| 1105 | 708479650088034305 | 765 | 2768 | 2016-03-12 02:28:06 | Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W | 13 | 10 | Bear | |
| 1106 | 708469915515297792 | 926 | 3357 | 2016-03-12 01:49:25 | This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk | 11 | 10 | Bobble | |
| 1107 | 708400866336894977 | 11330 | 17516 | 2016-03-11 21:15:02 | RT if you are as ready for summer as this pup is 12/10 https://t.co/xdNNEZdGJY | 12 | 10 | None | |
| 1108 | 708356463048204288 | 1520 | 3929 | 2016-03-11 18:18:36 | This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX | 10 | 10 | Oliver | |
| 1109 | 708349470027751425 | 831 | 2568 | 2016-03-11 17:50:48 | This is River. He's changing the trumpet game. Innovative af. 11/10 such a good boy https://t.co/tK7a0AxQfd | 11 | 10 | River | |
| 1110 | 708149363256774660 | 1727 | 4672 | 2016-03-11 04:35:39 | This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF | 10 | 10 | Jebberson | |
| 1111 | 708130923141795840 | 943 | 3707 | 2016-03-11 03:22:23 | Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT | 11 | 10 | None | |
| 1112 | 708119489313951744 | 1102 | 2937 | 2016-03-11 02:36:57 | This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm | 9 | 10 | Cooper | |
| 1113 | 708109389455101952 | 610 | 2124 | 2016-03-11 01:56:49 | This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ | 10 | 10 | Remington | |
| 1114 | 708026248782585858 | 2166 | 4799 | 2016-03-10 20:26:26 | Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U | 13 | 10 | None | |
| 1115 | 707995814724026368 | 1273 | 3385 | 2016-03-10 18:25:30 | This is Farfle. He lost his back legs during the Battle of Gettysburg. Goes 0-60 in 4.3 seconds (damn) 12/10 hero af https://t.co/NiQQWzIzzq | 12 | 10 | Farfle | |
| 1116 | 707983188426153984 | 2 | 52 | 2016-03-10 17:35:20 | @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :) | 12 | 10 | None | |
| 1117 | 707969809498152960 | 1097 | 2941 | 2016-03-10 16:42:10 | Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm | 11 | 10 | Rufus | |
| 1118 | 707776935007539200 | 1079 | 3593 | 2016-03-10 03:55:45 | This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B | 11 | 10 | Sadie | |
| 1119 | 707741517457260545 | 696 | 2718 | 2016-03-10 01:35:01 | When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR | 10 | 10 | None | |
| 1120 | 707738799544082433 | 2785 | 4495 | 2016-03-10 01:24:13 | He's doing his best. 12/10 very impressive that he got his license in the first place https://t.co/2vRmkkOLcN | 12 | 10 | None | |
| 1121 | 707693576495472641 | 1133 | 3765 | 2016-03-09 22:24:31 | This is Jiminus. He's in a tub for some reason. What a jokester. Smh 7/10 churlish af https://t.co/84L4ED9Tpi | 7 | 10 | Jiminus | |
| 1122 | 707629649552134146 | 997 | 2834 | 2016-03-09 18:10:30 | We usually don't rate marshmallows but this one's having so much fun in the snow. 10/10 (vid by @kylejk24) https://t.co/NL2KwOioBh | 10 | 10 | None | |
| 1123 | 707610948723478529 | 7236 | 18557 | 2016-03-09 16:56:11 | This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 | 12 | 10 | Harper | |
| 1124 | 707420581654872064 | 789 | 2499 | 2016-03-09 04:19:44 | This is Keurig. He's a rare dog. Laughs like an idiot tho. Head is basically a weapon. Poorly maintained goatee 4/10 https://t.co/xOrUyj7K30 | 4 | 10 | Keurig | |
| 1125 | 707411934438625280 | 673 | 2486 | 2016-03-09 03:45:22 | "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 | 11 | 10 | None | pupper |
| 1126 | 707387676719185920 | 1490 | 3835 | 2016-03-09 02:08:59 | Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E | 10 | 10 | Clarkus | |
| 1127 | 707377100785885184 | 1214 | 3603 | 2016-03-09 01:26:57 | This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j | 9 | 10 | None | |
| 1128 | 707315916783140866 | 727 | 2698 | 2016-03-08 21:23:50 | This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 | 10 | 10 | Finnegus | pupper |
| 1129 | 707297311098011648 | 903 | 3022 | 2016-03-08 20:09:54 | This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK | 10 | 10 | Cassie | |
| 1130 | 707059547140169728 | 759 | 2796 | 2016-03-08 04:25:07 | Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL | 11 | 10 | Cupcake | |
| 1131 | 707038192327901184 | 900 | 2404 | 2016-03-08 03:00:15 | This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj | 10 | 10 | Kathmandu | |
| 1132 | 707021089608753152 | 1540 | 4433 | 2016-03-08 01:52:18 | This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 | 12 | 10 | Tucker | |
| 1133 | 707014260413456384 | 664 | 2502 | 2016-03-08 01:25:10 | This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU | 11 | 10 | Ellie | |
| 1134 | 706904523814649856 | 8830 | 15961 | 2016-03-07 18:09:06 | Ever seen a dog pet another dog? Both 13/10 truly an awe-inspiring scene. (Vid by @mdougherty20) https://t.co/3PoKf6cw7f | 13 | 10 | None | |
| 1135 | 706901761596989440 | 680 | 2264 | 2016-03-07 17:58:08 | This is Elliot. He's blocking the roadway. Downright rude as hell. Doesn't care that you're already late. 3/10 https://t.co/FMUxir5pYu | 3 | 10 | Elliot | |
| 1136 | 706681918348251136 | 1103 | 3627 | 2016-03-07 03:24:33 | Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv | 12 | 10 | Katie | |
| 1137 | 706644897839910912 | 1224 | 2814 | 2016-03-07 00:57:27 | Meet Shadow. She's tired of the responsibilities associated with being a dog. No longer strives to attain ball. 9/10 https://t.co/cdOkfEpjFw | 9 | 10 | Shadow | |
| 1138 | 706593038911545345 | 718 | 2363 | 2016-03-06 21:31:22 | Here's a sneak peek of me on spring break. 10/10 so many tired pups these days https://t.co/6aJrjKfNqX | 10 | 10 | None | |
| 1139 | 706538006853918722 | 1580 | 3778 | 2016-03-06 17:52:42 | This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd | 11 | 10 | Oliver | |
| 1140 | 706516534877929472 | 1150 | 3404 | 2016-03-06 16:27:23 | Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp | 12 | 10 | None | |
| 1141 | 706346369204748288 | 1035 | 3768 | 2016-03-06 05:11:12 | This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 | 12 | 10 | Koda | |
| 1142 | 706310011488698368 | 9034 | 23443 | 2016-03-06 02:46:44 | Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf | 12 | 10 | None | pupper |
| 1143 | 706291001778950144 | 522 | 1861 | 2016-03-06 01:31:11 | When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg | 11 | 10 | None | |
| 1144 | 706265994973601792 | 1030 | 2979 | 2016-03-05 23:51:49 | This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV | 11 | 10 | Kara | |
| 1145 | 706169069255446529 | 2511 | 4291 | 2016-03-05 17:26:40 | He was doing his best. 12/10 I'll be his lawyer\nhttps://t.co/WN4C6miCzR | 12 | 10 | None | |
| 1146 | 706166467411222528 | 1819 | 5636 | 2016-03-05 17:16:20 | This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv | 7 | 10 | Dexter | |
| 1147 | 706153300320784384 | 437 | 1632 | 2016-03-05 16:24:01 | This is Layla. She's giving you a standing ovation.13/10 just magnificent (vid by @CSBrzezinski) https://t.co/KxYXHUHUi2 | 13 | 10 | Layla | |
| 1148 | 705975130514706432 | 842 | 3397 | 2016-03-05 04:36:02 | This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO | 10 | 10 | Adele | pupper |
| 1149 | 705970349788291072 | 1008 | 3440 | 2016-03-05 04:17:02 | This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI | 12 | 10 | Lucy | |
| 1150 | 705898680587526145 | 643 | 2597 | 2016-03-04 23:32:15 | Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs | 10 | 10 | Max | |
| 1151 | 705786532653883392 | 596 | 2132 | 2016-03-04 16:06:36 | Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR | 11 | 10 | None | pupper |
| 1152 | 705591895322394625 | 1308 | 3475 | 2016-03-04 03:13:11 | "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF | 11 | 10 | None | |
| 1153 | 705475953783398401 | 1045 | 3231 | 2016-03-03 19:32:29 | Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n | 12 | 10 | Zara | |
| 1154 | 705442520700944385 | 1859 | 4877 | 2016-03-03 17:19:38 | This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 | 12 | 10 | Cooper | |
| 1155 | 705428427625635840 | 1931 | 4188 | 2016-03-03 16:23:38 | This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA | 11 | 10 | Ambrose | pupper |
| 1156 | 705239209544720384 | 854 | 3290 | 2016-03-03 03:51:44 | This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE | 11 | 10 | Jimothy | |
| 1157 | 705223444686888960 | 900 | 2829 | 2016-03-03 02:49:06 | This is Bode. He's a heavy sleeper. 9/10 https://t.co/YMkxhGWUqv | 9 | 10 | Bode | |
| 1158 | 705102439679201280 | 585 | 2342 | 2016-03-02 18:48:16 | This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z | 10 | 10 | Terrenth | |
| 1159 | 705066031337840642 | 683 | 2378 | 2016-03-02 16:23:36 | This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW | 12 | 10 | Reese | |
| 1160 | 704871453724954624 | 1245 | 4585 | 2016-03-02 03:30:25 | I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU | 12 | 10 | None | |
| 1161 | 704859558691414016 | 612 | 2462 | 2016-03-02 02:43:09 | Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu | 10 | 10 | NaN | pupper |
| 1162 | 704847917308362754 | 1727 | 5594 | 2016-03-02 01:56:53 | "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq | 12 | 10 | None | |
| 1163 | 704819833553219584 | 1136 | 2906 | 2016-03-02 00:05:17 | This is Chesterson. He's a Bolivian Scoop Dog. Incredibly portable. Can't bark for shit tho. 7/10 would still pet https://t.co/EatAd8JhyW | 7 | 10 | Chesterson | |
| 1164 | 704761120771465216 | 3257 | 7283 | 2016-03-01 20:11:59 | This pupper killed this great white in an epic sea battle. Now wears it as a trophy. Such brave. Much fierce. 13/10 https://t.co/Lu0ECu5tO5 | 13 | 10 | None | pupper |
| 1165 | 704499785726889984 | 1124 | 3212 | 2016-03-01 02:53:32 | When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc | 12 | 10 | None | |
| 1166 | 704491224099647488 | 97 | 840 | 2016-03-01 02:19:31 | 13/10 hero af\n@ABC | 13 | 10 | None | |
| 1167 | 704480331685040129 | 1197 | 3723 | 2016-03-01 01:36:14 | Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe | 11 | 10 | Lucia | |
| 1168 | 704364645503647744 | 3999 | 8804 | 2016-02-29 17:56:32 | Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K | 12 | 10 | Bisquick | |
| 1169 | 704347321748819968 | 393 | 1729 | 2016-02-29 16:47:42 | This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ | 10 | 10 | Ralphson | pupper |
| 1170 | 704134088924532736 | 519 | 1653 | 2016-02-29 02:40:23 | This sneezy pupper is just adorable af. 12/10 (vid by @gwilks1) https://t.co/h5aI0Tim4j | 12 | 10 | None | pupper |
| 1171 | 704113298707505153 | 629 | 2031 | 2016-02-29 01:17:46 | Meet Stanley. He's an inverted Uzbekistani water pup. Hella exotic. Floats around all day. 8/10 I want to be Stanley https://t.co/XpYMBQ1FD8 | 8 | 10 | Stanley | |
| 1172 | 704054845121142784 | 1028 | 3201 | 2016-02-28 21:25:30 | Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa | 12 | 10 | NaN | |
| 1173 | 703774238772166656 | 526 | 2020 | 2016-02-28 02:50:28 | "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG | 10 | 10 | None | |
| 1174 | 703769065844768768 | 1276 | 3621 | 2016-02-28 02:29:55 | When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT | 10 | 10 | None | |
| 1175 | 703631701117943808 | 772 | 2853 | 2016-02-27 17:24:05 | This is Bella. Based on this picture she's at least 8ft tall (wow)! Must be rare. 11/10 would pet on tippy toes https://t.co/XTVbSRdvcp | 11 | 10 | Bella | |
| 1176 | 703611486317502464 | 1709 | 4229 | 2016-02-27 16:03:45 | Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW | 10 | 10 | Scooter | pupper |
| 1177 | 703425003149250560 | 1559 | 4162 | 2016-02-27 03:42:44 | Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC | 9 | 10 | None | |
| 1178 | 703407252292673536 | 786 | 2685 | 2016-02-27 02:32:12 | This pupper doesn't understand gates. 10/10 so close https://t.co/GUbFF4o6dZ | 10 | 10 | None | pupper |
| 1179 | 703382836347330562 | 1285 | 3837 | 2016-02-27 00:55:11 | This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt | 12 | 10 | Charlie | |
| 1180 | 703356393781329922 | 429 | 2085 | 2016-02-26 23:10:06 | This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf | 9 | 10 | Socks | |
| 1181 | 703268521220972544 | 618 | 2152 | 2016-02-26 17:20:56 | Happy Friday here's a sleepy pupper 12/10 https://t.co/eBcqv9SPkY | 12 | 10 | None | pupper |
| 1182 | 703079050210877440 | 3494 | 8064 | 2016-02-26 04:48:02 | This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW | 11 | 10 | NaN | |
| 1183 | 703041949650034688 | 14198 | 28996 | 2016-02-26 02:20:37 | This is an East African Chalupa Seal. We only rate dogs. Please only send in dogs. Thank you... 10/10 https://t.co/iHe6liLwWR | 10 | 10 | NaN | |
| 1184 | 702932127499816960 | 811 | 2825 | 2016-02-25 19:04:13 | This is Chip. He's an Upper West Nile Pantaloon. Extremely deadly. Will rip your throat out. 6/10 might still pet https://t.co/LUFnwzznaV | 6 | 10 | Chip | |
| 1185 | 702899151802126337 | 509 | 1772 | 2016-02-25 16:53:11 | Say hello to Luna. Her tongue is malfunctioning (tragic). 12/10 please enjoy (vid by @LilyArtz) https://t.co/F9aLnADVIw | 12 | 10 | Luna | |
| 1186 | 702684942141153280 | 1215 | 3516 | 2016-02-25 02:42:00 | This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO | 11 | 10 | Lucy | |
| 1187 | 702671118226825216 | 634 | 2398 | 2016-02-25 01:47:04 | Meet Rambo & Kiwi. Rambo's the pup with the sharp toes & rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ | 10 | 10 | Rambo | |
| 1188 | 702598099714314240 | 3712 | 11332 | 2016-02-24 20:56:55 | This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s | 11 | 10 | Sansa | pupper |
| 1189 | 702539513671897089 | 1091 | 3134 | 2016-02-24 17:04:07 | This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 | 12 | 10 | NaN | |
| 1190 | 702332542343577600 | 1755 | 3491 | 2016-02-24 03:21:41 | This is Rudy. He's going to be a star. 13/10 talented af (vid by @madalynrossi) https://t.co/Dph4FDGoMd | 13 | 10 | Rudy | |
| 1191 | 702321140488925184 | 1156 | 3604 | 2016-02-24 02:36:23 | Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 | 12 | 10 | None | |
| 1192 | 702276748847800320 | 860 | 2706 | 2016-02-23 23:39:59 | "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI | 11 | 10 | None | |
| 1193 | 702217446468493312 | 1526 | 5268 | 2016-02-23 19:44:20 | I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY | 9 | 10 | None | |
| 1194 | 701981390485725185 | 1106 | 3755 | 2016-02-23 04:06:20 | This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY | 12 | 10 | Fiji | |
| 1195 | 701952816642965504 | 1149 | 4167 | 2016-02-23 02:12:47 | Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX | 11 | 10 | Rilo | |
| 1196 | 701889187134500865 | 1558 | 3905 | 2016-02-22 21:59:57 | This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ | 11 | 10 | Bilbo | |
| 1197 | 701805642395348998 | 1900 | 3752 | 2016-02-22 16:27:58 | Please pray for this pupper. Nothing wrong with her she just can't stop getting hit with banana peels. 11/10 https://t.co/8sdVenUAqr | 11 | 10 | None | pupper |
| 1198 | 701601587219795968 | 523 | 2299 | 2016-02-22 02:57:08 | This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA | 10 | 10 | Coopson | |
| 1199 | 701570477911896070 | 1055 | 3080 | 2016-02-22 00:53:31 | This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx | 9 | 10 | Yoda | |
| 1200 | 701545186879471618 | 680 | 2902 | 2016-02-21 23:13:01 | Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M | 10 | 10 | Millie | pupper |
| 1201 | 701214700881756160 | 5812 | 13475 | 2016-02-21 01:19:47 | I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL | 12 | 10 | None | |
| 1202 | 700890391244103680 | 653 | 2437 | 2016-02-20 03:51:05 | This is Chet. He's dapper af. His owners want him to learn how to dance but his true passion is potato guns. 11/10 https://t.co/TBv7Qh1zxZ | 11 | 10 | Chet | |
| 1203 | 700864154249383937 | 685 | 2828 | 2016-02-20 02:06:50 | "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW | 12 | 10 | NaN | pupper |
| 1204 | 700847567345688576 | 558 | 2637 | 2016-02-20 01:00:55 | Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 | 10 | 10 | Crouton | |
| 1205 | 700796979434098688 | 1085 | 2669 | 2016-02-19 21:39:54 | This is Daniel. He's a neat pup. Exotic af. Custom paws. Leaps unannounced. Would totally pet. 7/10 daaamn Daniel https://t.co/5XaR0kj8cr | 7 | 10 | Daniel | |
| 1206 | 700747788515020802 | 10673 | 25130 | 2016-02-19 18:24:26 | We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU | 11 | 10 | NaN | |
| 1207 | 700518061187723268 | 915 | 2887 | 2016-02-19 03:11:35 | This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD | 10 | 10 | Vincent | |
| 1208 | 700505138482569216 | 646 | 2487 | 2016-02-19 02:20:14 | This is Kaia. She's just cute as hell. 12/10 I'd kill for Kaia https://t.co/5fMdH8GFaq | 12 | 10 | Kaia | |
| 1209 | 700462010979500032 | 2031 | 4537 | 2016-02-18 23:28:52 | This is Murphy. He's a mini golden retriever. Missing two legs (tragic). Mouth sharp. Looks rather perturbed. 6/10 https://t.co/ALO02IAKCn | 6 | 10 | Murphy | |
| 1210 | 700167517596164096 | 836 | 2903 | 2016-02-18 03:58:39 | This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s | 10 | 10 | Dotsy | |
| 1211 | 700151421916807169 | 754 | 2450 | 2016-02-18 02:54:41 | If a pupper gave that to me I'd probably start shaking and faint from all the joy. 11/10 https://t.co/o9aJVPB25n | 11 | 10 | None | pupper |
| 1212 | 700143752053182464 | 3129 | 8282 | 2016-02-18 02:24:13 | When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ | 10 | 10 | None | pupper |
| 1213 | 700062718104104960 | 778 | 2890 | 2016-02-17 21:02:13 | This is Eazy-E. He's colorful af. Must be rare. Submerged in Sprite (rad). Doesn't perform well when not wet. 6/10 https://t.co/UtFI7eUCjE | 6 | 10 | Eazy | |
| 1214 | 700029284593901568 | 661 | 2262 | 2016-02-17 18:49:22 | This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 | 10 | 10 | Coops | |
| 1215 | 700002074055016451 | 1529 | 3627 | 2016-02-17 17:01:14 | This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 | 9 | 10 | Thumas | |
| 1216 | 699801817392291840 | 1088 | 3345 | 2016-02-17 03:45:29 | This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 | 11 | 10 | Cooper | pupper |
| 1217 | 699788877217865730 | 557 | 2458 | 2016-02-17 02:54:04 | Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp | 12 | 10 | Nala | |
| 1218 | 699779630832685056 | 1397 | 3039 | 2016-02-17 02:17:19 | Take all my money. 10/10 https://t.co/B28ebc5LzQ | 10 | 10 | None | |
| 1219 | 699775878809702401 | 690 | 2150 | 2016-02-17 02:02:25 | Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD | 11 | 10 | Fillup | |
| 1220 | 699691744225525762 | 5174 | 11252 | 2016-02-16 20:28:06 | This is Dave. He's a tropical pup. Short lil legs (dachshund mix?) Excels underwater, but refuses to eat kibble 5/10 https://t.co/ZJnCxlIf62 | 5 | 10 | Dave | |
| 1221 | 699446877801091073 | 2938 | 6515 | 2016-02-16 04:15:05 | This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx | 12 | 10 | Archie | |
| 1222 | 699434518667751424 | 577 | 2384 | 2016-02-16 03:25:58 | I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi | 12 | 10 | None | pupper |
| 1223 | 699423671849451520 | 383 | 1505 | 2016-02-16 02:42:52 | "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE | 10 | 10 | None | |
| 1224 | 699413908797464576 | 688 | 2258 | 2016-02-16 02:04:04 | Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS | 11 | 10 | Miley | |
| 1225 | 699370870310113280 | 497 | 2053 | 2016-02-15 23:13:03 | Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur | 11 | 10 | Calbert | |
| 1226 | 699323444782047232 | 983 | 3466 | 2016-02-15 20:04:36 | "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z | 10 | 10 | None | |
| 1227 | 699088579889332224 | 715 | 2451 | 2016-02-15 04:31:20 | This is Charl. He's a bully. Chucks that dumbbell around like its nothing. Sharp neck. Exceptionally unfluffy. 3/10 https://t.co/VfLoDZecJ7 | 3 | 10 | Charl | |
| 1228 | 699079609774645248 | 745 | 2677 | 2016-02-15 03:55:41 | Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL | 8 | 10 | Reagan | |
| 1229 | 699072405256409088 | 1325 | 3296 | 2016-02-15 03:27:04 | ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac | 12 | 10 | None | |
| 1230 | 699060279947165696 | 2059 | 4173 | 2016-02-15 02:38:53 | This is Yukon. He pukes rainbows. 12/10 magical af https://t.co/n6wND1v7il | 12 | 10 | Yukon | |
| 1231 | 699036661657767936 | 1345 | 2863 | 2016-02-15 01:05:02 | HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe | 13 | 10 | None | pupper |
| 1232 | 698989035503689728 | 1113 | 3701 | 2016-02-14 21:55:47 | This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 | 13 | 10 | Oliver | |
| 1233 | 698953797952008193 | 1020 | 2975 | 2016-02-14 19:35:46 | Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 | 11 | 10 | CeCe | |
| 1234 | 698907974262222848 | 699 | 2787 | 2016-02-14 16:33:40 | This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu | 10 | 10 | None | |
| 1235 | 698710712454139905 | 774 | 2710 | 2016-02-14 03:29:49 | This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z | 10 | 10 | Cuddles | |
| 1236 | 698703483621523456 | 425 | 1608 | 2016-02-14 03:01:06 | This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp | 7 | 10 | Rusty | |
| 1237 | 698635131305795584 | 388 | 1400 | 2016-02-13 22:29:29 | Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F | 12 | 10 | None | |
| 1238 | 698549713696649216 | 704 | 2536 | 2016-02-13 16:50:04 | This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG | 9 | 10 | Claude | |
| 1239 | 698355670425473025 | 516 | 2046 | 2016-02-13 03:59:01 | This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk | 10 | 10 | Jessiga | |
| 1240 | 698342080612007937 | 1074 | 2485 | 2016-02-13 03:05:01 | This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp | 11 | 10 | Maximus | |
| 1241 | 698262614669991936 | 2268 | 5214 | 2016-02-12 21:49:15 | This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD | 11 | 10 | Franklin | |
| 1242 | 698195409219559425 | 6750 | 18408 | 2016-02-12 17:22:12 | Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk | 9 | 10 | Beau | |
| 1243 | 698178924120031232 | 830 | 3084 | 2016-02-12 16:16:41 | This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK | 10 | 10 | Lily | |
| 1244 | 697995514407682048 | 372 | 1665 | 2016-02-12 04:07:53 | "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ | 11 | 10 | None | |
| 1245 | 697990423684476929 | 1451 | 3592 | 2016-02-12 03:47:39 | This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv | 11 | 10 | Doug | |
| 1246 | 697943111201378304 | 776 | 2638 | 2016-02-12 00:39:39 | This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO | 10 | 10 | Cassie | |
| 1247 | 697881462549430272 | 1337 | 3313 | 2016-02-11 20:34:41 | This is Carter. He wakes up in the morning and pisses excellence. 10/10 best there is plain and simple https://t.co/pHktDjpFr8 | 10 | 10 | Carter | |
| 1248 | 697630435728322560 | 614 | 1909 | 2016-02-11 03:57:11 | Pls make sure ur dogs have gone through some barkour training b4 they attempt stunts like this. 8/10 https://t.co/VmF35YvtqP | 8 | 10 | None | |
| 1249 | 697616773278015490 | 1144 | 3467 | 2016-02-11 03:02:54 | This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn | 11 | 10 | None | pupper |
| 1250 | 697596423848730625 | 1425 | 3306 | 2016-02-11 01:42:02 | Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z | 11 | 10 | None | pupper |
| 1251 | 697575480820686848 | 572 | 2250 | 2016-02-11 00:18:49 | This is Ole. He's not sure how to gravity. 8/10 https://t.co/PsqqotpBBQ | 8 | 10 | Ole | |
| 1252 | 697516214579523584 | 1282 | 2281 | 2016-02-10 20:23:19 | Say hello to Pherb. He does parkour. 9/10 https://t.co/LHFfUyLBZT | 9 | 10 | Pherb | |
| 1253 | 697482927769255936 | 765 | 2662 | 2016-02-10 18:11:03 | Meet Blipson. He's a Doowap Hufflepuff. That Ugg is his temporary home while he's struggling with unemployment 11/10 https://t.co/YKvt0J5MXr | 11 | 10 | Blipson | |
| 1254 | 697463031882764288 | 1552 | 3748 | 2016-02-10 16:51:59 | Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ | 11 | 10 | None | |
| 1255 | 697270446429966336 | 2087 | 5131 | 2016-02-10 04:06:43 | This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS | 10 | 10 | Bentley | |
| 1256 | 697259378236399616 | 1136 | 3611 | 2016-02-10 03:22:44 | Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 | 8 | 10 | NaN | |
| 1257 | 697255105972801536 | 1315 | 3316 | 2016-02-10 03:05:46 | Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP | 10 | 10 | Charlie | |
| 1258 | 697242256848379904 | 751 | 2753 | 2016-02-10 02:14:42 | This is Oakley. He has a massive tumor growing on his head. Seems benign tho. 10/10 would pet around tumor https://t.co/7GQ7BTxywN | 10 | 10 | Oakley | |
| 1259 | 696900204696625153 | 1156 | 3492 | 2016-02-09 03:35:31 | This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i | 12 | 10 | Rosie | |
| 1260 | 696894894812565505 | 758 | 2594 | 2016-02-09 03:14:25 | These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z | 9 | 10 | None | |
| 1261 | 696886256886657024 | 2016 | 5317 | 2016-02-09 02:40:05 | Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ | 12 | 10 | None | |
| 1262 | 696877980375769088 | 802 | 2689 | 2016-02-09 02:07:12 | This is Misty. She's in a predicament. Not sure what next move should be. 9/10 stay calm pupper I'm comin https://t.co/XhR7PAgcwF | 9 | 10 | Misty | pupper |
| 1263 | 696754882863349760 | 396 | 1615 | 2016-02-08 17:58:03 | This is Reptar. He specifically asked for his skis to have four bindings. He's not happy. Quite perturbed tbh. 10/10 https://t.co/l9k7TPP7Tp | 10 | 10 | Reptar | |
| 1264 | 696744641916489729 | 1069 | 2293 | 2016-02-08 17:17:22 | This is Klevin. He doesn't want his family brainwashed by mainstream media. 10/10 (vid by @AshtonHose) https://t.co/ghhbMAFPW8 | 10 | 10 | Klevin | |
| 1265 | 696713835009417216 | 757 | 2613 | 2016-02-08 15:14:57 | This is Trevith. He's a Swiss Mountain Roadwoof. Breeze too powerful. 9/10 stay strong pupper https://t.co/6J8Ibwy1X6 | 9 | 10 | Trevith | pupper |
| 1266 | 696518437233913856 | 1887 | 4274 | 2016-02-08 02:18:30 | Oh my god 10/10 for every little hot dog pupper | 10 | 10 | None | pupper |
| 1267 | 696490539101908992 | 170 | 1339 | 2016-02-08 00:27:39 | After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me | 1 | 10 | None | |
| 1268 | 696488710901260288 | 1166 | 2788 | 2016-02-08 00:20:23 | 12/10 revolutionary af https://t.co/zKzq4nIY86 | 12 | 10 | None | |
| 1269 | 696405997980676096 | 1284 | 3531 | 2016-02-07 18:51:43 | This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ | 7 | 10 | Berb | |
| 1270 | 696100768806522880 | 750 | 2125 | 2016-02-06 22:38:50 | This poor pupper has been stuck in a vortex since last week. Please keep her in your thoughts. 10/10 https://t.co/7ODQWHwYDx | 10 | 10 | None | pupper |
| 1271 | 695816827381944320 | 1320 | 3287 | 2016-02-06 03:50:33 | Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h | 11 | 10 | None | |
| 1272 | 695794761660297217 | 880 | 3490 | 2016-02-06 02:22:53 | This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd | 13 | 10 | Wyatt | |
| 1273 | 695767669421768709 | 854 | 2060 | 2016-02-06 00:35:13 | If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG | 13 | 10 | None | |
| 1274 | 695629776980148225 | 2377 | 5020 | 2016-02-05 15:27:17 | Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS | 8 | 10 | Calvin | |
| 1275 | 695446424020918272 | 2026 | 4787 | 2016-02-05 03:18:42 | We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T | 12 | 10 | None | |
| 1276 | 695409464418041856 | 4017 | 9460 | 2016-02-05 00:51:51 | This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV | 10 | 10 | Bob | |
| 1277 | 695314793360662529 | 1675 | 4004 | 2016-02-04 18:35:39 | This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 | 10 | 10 | Colin | |
| 1278 | 695095422348574720 | 684 | 2888 | 2016-02-04 04:03:57 | This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib | 12 | 10 | NaN | pupper |
| 1279 | 695074328191332352 | 1239 | 3116 | 2016-02-04 02:40:08 | This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ | 11 | 10 | Lorenzo | pupper |
| 1280 | 695064344191721472 | 685 | 1771 | 2016-02-04 02:00:27 | This may be the greatest video I've ever been sent. 4/10 for Charles the puppy, 13/10 overall. (Vid by @stevenxx_) https://t.co/uaJmNgXR2P | 4 | 10 | None | |
| 1281 | 695051054296211456 | 885 | 2918 | 2016-02-04 01:07:39 | Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi | 6 | 10 | Brian | |
| 1282 | 694925794720792577 | 1043 | 2965 | 2016-02-03 16:49:55 | Please only send in dogs. This t-rex is very scary. 5/10 ...might still pet (vid by @helizabethmicha) https://t.co/Vn6w5w8TO2 | 5 | 10 | None | |
| 1283 | 694905863685980160 | 1053 | 3046 | 2016-02-03 15:30:43 | This is Archie. He's a Bisquick Taj Mapaw. Too many people are touching him. It is doing him a discomfort. 10/10 https://t.co/CJJpjTMzPQ | 10 | 10 | Archie | |
| 1284 | 694669722378485760 | 13517 | 26068 | 2016-02-02 23:52:22 | This is Phil. He's an important dog. Can control the seasons. Magical as hell. 12/10 would let him sign my forehead https://t.co/9mb0P2rjk2 | 12 | 10 | Phil | |
| 1285 | 694356675654983680 | 328 | 1653 | 2016-02-02 03:08:26 | This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG | 10 | 10 | None | pupper |
| 1286 | 694352839993344000 | 700 | 2244 | 2016-02-02 02:53:12 | Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random & can't bark for shit. 10/10 & 5/10 https://t.co/6NgsQJuSBJ | 10 | 10 | Oliviér | |
| 1287 | 694342028726001664 | 557 | 1727 | 2016-02-02 02:10:14 | It's okay pup. This happens every time I listen to @adele also. 11/10 (vid by @_larirutschmann) https://t.co/oCImpQuoRb | 11 | 10 | None | |
| 1288 | 694329668942569472 | 569 | 2203 | 2016-02-02 01:21:07 | Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn | 9 | 10 | Grady | pupper |
| 1289 | 694206574471057408 | 2297 | 4582 | 2016-02-01 17:11:59 | "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI | 10 | 10 | None | |
| 1290 | 694183373896572928 | 1040 | 3236 | 2016-02-01 15:39:48 | This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD | 9 | 10 | Lola | |
| 1291 | 694001791655137281 | 1176 | 3705 | 2016-02-01 03:38:15 | This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT | 11 | 10 | Chester | |
| 1292 | 693993230313091072 | 457 | 2044 | 2016-02-01 03:04:14 | These lil fellas are the best of friends. 12/10 for both. 1 like = 1 friend (vid by @CassieBrookee15) https://t.co/gzRghPC61H | 12 | 10 | None | |
| 1293 | 693942351086120961 | 413 | 1896 | 2016-01-31 23:42:03 | This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M | 10 | 10 | Kobe | |
| 1294 | 693647888581312512 | 673 | 2961 | 2016-01-31 04:11:58 | What kind of person sends in a pic without a dog in it? So churlish. Neat rug tho 7/10 https://t.co/LSTAwTdTaw | 7 | 10 | None | |
| 1295 | 693644216740769793 | 150 | 1473 | 2016-01-31 03:57:23 | BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af | 10 | 10 | None | |
| 1296 | 693642232151285760 | 472 | 2790 | 2016-01-31 03:49:30 | Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a | 9 | 10 | Freddery | |
| 1297 | 693629975228977152 | 894 | 2685 | 2016-01-31 03:00:47 | This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ | 12 | 10 | None | pupper |
| 1298 | 693622659251335168 | 422 | 1691 | 2016-01-31 02:31:43 | When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X | 10 | 10 | None | |
| 1299 | 693590843962331137 | 2233 | 5565 | 2016-01-31 00:25:18 | Meet Phil. He's big af. Currently destroying this nice family home. Completely uncalled for. 3/10 not a good pupper https://t.co/fShNNhBWYx | 3 | 10 | Phil | pupper |
| 1300 | 693582294167244802 | 292 | 1802 | 2016-01-30 23:51:19 | Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.\n@CommonWhiteGirI | 11 | 10 | None | |
| 1301 | 693486665285931008 | 698 | 1941 | 2016-01-30 17:31:20 | This is Lincoln. He doesn't understand his new jacket. 11/10 please enjoy (vid by @GraceIsTheName8) https://t.co/S6cQsIoX27 | 11 | 10 | Lincoln | |
| 1302 | 693280720173801472 | 1403 | 3669 | 2016-01-30 03:52:58 | This is Sadie and her 2 pups Shebang & Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne | 10 | 10 | Sadie | |
| 1303 | 693267061318012928 | 925 | 2622 | 2016-01-30 02:58:42 | This is Oscar. He can wave. Friendly af. 12/10 would totally wave back (IG: Oscar.is.bear) https://t.co/waN6EW0wfM | 12 | 10 | Oscar | |
| 1304 | 693262851218264065 | 568 | 2459 | 2016-01-30 02:41:58 | I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR | 11 | 10 | None | pupper |
| 1305 | 693231807727280129 | 841 | 3133 | 2016-01-30 00:38:37 | This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP | 9 | 10 | Bodie | |
| 1306 | 693155686491000832 | 3622 | 8668 | 2016-01-29 19:36:08 | This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U | 12 | 10 | Dunkin | |
| 1307 | 693109034023534592 | 695 | 1889 | 2016-01-29 16:30:45 | "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM | 11 | 10 | None | |
| 1308 | 693095443459342336 | 523 | 2056 | 2016-01-29 15:36:45 | This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW | 10 | 10 | Milo | pupper |
| 1309 | 692919143163629568 | 838 | 2926 | 2016-01-29 03:56:12 | Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy | 9 | 10 | None | |
| 1310 | 692905862751522816 | 998 | 2683 | 2016-01-29 03:03:25 | This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn | 10 | 10 | Wally | pupper |
| 1311 | 692901601640583168 | 682 | 1971 | 2016-01-29 02:46:29 | "Fuck the system" 10/10 https://t.co/N0OADmCnVV | 10 | 10 | None | |
| 1312 | 692894228850999298 | 910 | 2511 | 2016-01-29 02:17:12 | Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW | 10 | 10 | Tupawc | |
| 1313 | 692828166163931137 | 998 | 3148 | 2016-01-28 21:54:41 | This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS | 12 | 10 | None | pupper |
| 1314 | 692752401762250755 | 4124 | 7496 | 2016-01-28 16:53:37 | "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu | 13 | 10 | None | pupper |
| 1315 | 692568918515392513 | 1737 | 4739 | 2016-01-28 04:44:32 | This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B | 12 | 10 | Chester | |
| 1316 | 692535307825213440 | 1529 | 3504 | 2016-01-28 02:30:58 | This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI | 10 | 10 | Amber | |
| 1317 | 692530551048294401 | 474 | 2021 | 2016-01-28 02:12:04 | Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu | 10 | 10 | Cody | |
| 1318 | 692423280028966913 | 265 | 1618 | 2016-01-27 19:05:49 | PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10 | 9 | 10 | None | |
| 1319 | 692417313023332352 | 3917 | 10275 | 2016-01-27 18:42:06 | Meet Herschel. He's slightly bigger than ur average pupper. Looks lonely. Could probably ride 7/10 would totally pet https://t.co/VGaIMktX10 | 7 | 10 | Herschel | pupper |
| 1320 | 692187005137076224 | 929 | 2768 | 2016-01-27 03:26:56 | This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N | 12 | 10 | NaN | |
| 1321 | 692158366030913536 | 896 | 2369 | 2016-01-27 01:33:08 | This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB | 10 | 10 | Edgar | |
| 1322 | 692142790915014657 | 438 | 1798 | 2016-01-27 00:31:15 | These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ | 13 | 10 | None | |
| 1323 | 692041934689402880 | 1424 | 3724 | 2016-01-26 17:50:29 | This is Teddy. His head is too heavy. 13/10 (vid by @jooanrim) https://t.co/sRUpRpGZ3y | 13 | 10 | Teddy | |
| 1324 | 692017291282812928 | 1081 | 3153 | 2016-01-26 16:12:33 | This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 | 9 | 10 | Kingsley | |
| 1325 | 691820333922455552 | 1860 | 4329 | 2016-01-26 03:09:55 | This is Brockly. He's an uber driver. Falls asleep at the wheel often. Irresponsible af 8/10 would totally still pet https://t.co/fn1oUlS69Z | 8 | 10 | Brockly | |
| 1326 | 691793053716221953 | 4732 | 8910 | 2016-01-26 01:21:31 | We usually don't rate penguins but this one is in need of a confidence boost after that slide. 10/10 https://t.co/qnMJHBxPuo | 10 | 10 | None | |
| 1327 | 691756958957883396 | 1161 | 3179 | 2016-01-25 22:58:05 | THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J | 10 | 10 | None | |
| 1328 | 691675652215414786 | 577 | 2116 | 2016-01-25 17:35:00 | This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV | 10 | 10 | Richie | |
| 1329 | 691483041324204033 | 656 | 2608 | 2016-01-25 04:49:38 | When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup https://t.co/aenk0KpoWM | 5 | 10 | None | |
| 1330 | 691459709405118465 | 1294 | 4449 | 2016-01-25 03:16:56 | Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH | 12 | 10 | Leo | |
| 1331 | 691444869282295808 | 955 | 2890 | 2016-01-25 02:17:57 | This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV | 12 | 10 | Bailey | |
| 1332 | 691416866452082688 | 8689 | 21253 | 2016-01-25 00:26:41 | I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k | 13 | 10 | None | |
| 1333 | 691321916024623104 | 747 | 2828 | 2016-01-24 18:09:23 | This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab | 11 | 10 | Molly | |
| 1334 | 691096613310316544 | 1019 | 3253 | 2016-01-24 03:14:07 | Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW | 11 | 10 | None | |
| 1335 | 691090071332753408 | 385 | 1867 | 2016-01-24 02:48:07 | Happy Saturday here's a dog in a mailbox. 12/10 https://t.co/MM7tb4HpEY | 12 | 10 | None | |
| 1336 | 690989312272396288 | 3282 | 6513 | 2016-01-23 20:07:44 | We've got a doggy down. Requesting backup. 12/10 for both. Please enjoy https://t.co/pmarb2dG0e | 12 | 10 | None | |
| 1337 | 690959652130045952 | 1421 | 3902 | 2016-01-23 18:09:53 | This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E | 11 | 10 | None | |
| 1338 | 690938899477221376 | 2245 | 4536 | 2016-01-23 16:47:25 | She thought the sunset was pretty, but I thought she was prettier. 10/10 https://t.co/HSL3mnP5NX | 10 | 10 | None | |
| 1339 | 690932576555528194 | 1143 | 3602 | 2016-01-23 16:22:17 | This is Buddy. He's testing out the water. Such caution. Much reserve. 12/10 https://t.co/FQZGSQIQLS | 12 | 10 | Buddy | |
| 1340 | 690735892932222976 | 1442 | 4134 | 2016-01-23 03:20:44 | Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt | 13 | 10 | Peaches | |
| 1341 | 690728923253055490 | 597 | 2384 | 2016-01-23 02:53:03 | This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u | 8 | 10 | Vinscent | |
| 1342 | 690690673629138944 | 898 | 2547 | 2016-01-23 00:21:03 | This is Cedrick. He's a spookster. Did me a discomfort. 10/10 would pet with a purpose https://t.co/yS7T4gxKod | 10 | 10 | Cedrick | |
| 1343 | 690649993829576704 | 325 | 1435 | 2016-01-22 21:39:24 | This is Hazel. She's a gymnast. Training hard for Rio. 11/10 focused af https://t.co/CneG2ZbxHP | 11 | 10 | Hazel | |
| 1344 | 690607260360429569 | 19 | 313 | 2016-01-22 18:49:36 | 12/10 @LightningHoltt | 12 | 10 | None | |
| 1345 | 690597161306841088 | 681 | 2163 | 2016-01-22 18:09:28 | This is Lolo. She's America af. Behind in science & math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA | 11 | 10 | Lolo | |
| 1346 | 690400367696297985 | 509 | 2041 | 2016-01-22 05:07:29 | This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf | 10 | 10 | Eriq | |
| 1347 | 690374419777196032 | 972 | 3560 | 2016-01-22 03:24:22 | This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C | 11 | 10 | Phred | |
| 1348 | 690360449368465409 | 1006 | 2925 | 2016-01-22 02:28:52 | Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx | 9 | 10 | NaN | |
| 1349 | 690348396616552449 | 573 | 1644 | 2016-01-22 01:40:58 | This is Oddie. He's trying to communicate. 12/10 very solid effort (vid by @kaleseyy) https://t.co/JjxriLqZOL | 12 | 10 | Oddie | |
| 1350 | 690248561355657216 | 477 | 1845 | 2016-01-21 19:04:15 | This is Maxwell. That's his moped. He rents it out for others to use as long as he can come also. 11/10 great dog https://t.co/IF5kKaO945 | 11 | 10 | Maxwell | |
| 1351 | 690021994562220032 | 1180 | 3056 | 2016-01-21 04:03:58 | Say hello to Geoff (pronounced "Kyle"). He accidentally opened the front facing camera. 10/10 https://t.co/TmlwQWnmRC | 10 | 10 | Geoff | |
| 1352 | 690015576308211712 | 836 | 2740 | 2016-01-21 03:38:27 | This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg | 12 | 10 | None | pupper |
| 1353 | 690005060500217858 | 1907 | 4004 | 2016-01-21 02:56:40 | "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt | 10 | 10 | None | |
| 1354 | 689999384604450816 | 424 | 1561 | 2016-01-21 02:34:07 | This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt | 10 | 10 | Covach | |
| 1355 | 689993469801164801 | 518 | 1618 | 2016-01-21 02:10:37 | Here we are witnessing a rare High Stepping Alaskan Floofer. 12/10 dangerously petable (vid by @TheMrsNux) https://t.co/K4s9IJh2jm | 12 | 10 | None | floofer |
| 1356 | 689977555533848577 | 502 | 1490 | 2016-01-21 01:07:23 | Happy Wednesday here's a pup wearing a beret. 12/10 please enjoy https://t.co/MXedEzSHIf | 12 | 10 | None | |
| 1357 | 689905486972461056 | 787 | 2651 | 2016-01-20 20:21:00 | Say hello to Gizmo. He's quite the pupper. Confused by bed, but agile af. Can barely catch on camera. 11/10 so quick https://t.co/IE4ZblyZRY | 11 | 10 | Gizmo | pupper |
| 1358 | 689877686181715968 | 1344 | 3323 | 2016-01-20 18:30:32 | This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe | 9 | 10 | Durg | |
| 1359 | 689835978131935233 | 850 | 2369 | 2016-01-20 15:44:48 | Meet Fynn & Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 & 10/10 https://t.co/MuqHPvtL8c | 11 | 10 | Fynn | |
| 1360 | 689661964914655233 | 1052 | 3501 | 2016-01-20 04:13:20 | Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV | 12 | 10 | Luca | |
| 1361 | 689659372465688576 | 4412 | 11394 | 2016-01-20 04:03:02 | This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF | 8 | 10 | Ricky | |
| 1362 | 689623661272240129 | 748 | 2467 | 2016-01-20 01:41:08 | This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n | 10 | 10 | Lucy | pupper |
| 1363 | 689599056876867584 | 6265 | 12795 | 2016-01-20 00:03:21 | Here we see 33 dogs posing for a picture. All get 11/10 for superb cooperation https://t.co/TRAri5iHzd | 11 | 10 | None | |
| 1364 | 689557536375177216 | 519 | 2257 | 2016-01-19 21:18:22 | Downright majestic af 12/10 https://t.co/WFh2FEbYzj | 12 | 10 | None | |
| 1365 | 689517482558820352 | 1609 | 3735 | 2016-01-19 18:39:13 | This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm | 12 | 10 | Carl | |
| 1366 | 689289219123089408 | 1056 | 2476 | 2016-01-19 03:32:10 | Someone sent me this without any context and every aspect of it is spectacular. 13/10 please enjoy https://t.co/Rxrd4hPmp4 | 13 | 10 | None | |
| 1367 | 689283819090870273 | 1250 | 3624 | 2016-01-19 03:10:43 | Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J | 9 | 10 | Chipson | |
| 1368 | 689280876073582592 | 819 | 2197 | 2016-01-19 02:59:01 | This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS | 10 | 10 | Herald | |
| 1369 | 689275259254616065 | 285 | 1273 | 2016-01-19 02:36:42 | Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl | 10 | 10 | Lucky | |
| 1370 | 689255633275777024 | 1212 | 2805 | 2016-01-19 01:18:43 | This is Ferg. He swallowed a chainsaw. 1 like = 1 prayer 10/10 remain calm Ferg (vid by @calebturer) https://t.co/gOH51Y8Yh1 | 10 | 10 | Ferg | |
| 1371 | 689154315265683456 | 1128 | 3348 | 2016-01-18 18:36:07 | We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N | 9 | 10 | None | |
| 1372 | 689143371370250240 | 579 | 2232 | 2016-01-18 17:52:38 | Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv | 10 | 10 | Trip | pupper |
| 1373 | 688916208532455424 | 983 | 3003 | 2016-01-18 02:49:58 | This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x | 11 | 10 | None | pupper |
| 1374 | 688908934925697024 | 874 | 2310 | 2016-01-18 02:21:04 | Meet Clarence. He does parkour. 8/10 very talented dog https://t.co/WpSFZm7RPH | 8 | 10 | Clarence | |
| 1375 | 688898160958271489 | 890 | 2307 | 2016-01-18 01:38:15 | When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx | 10 | 10 | None | |
| 1376 | 688894073864884227 | 792 | 2462 | 2016-01-18 01:22:00 | This is Hamrick. He's covered in corn flakes. Silly pupper. Looks congested. 7/10 considerably petable https://t.co/ROPZcAMQKI | 7 | 10 | Hamrick | pupper |
| 1377 | 688828561667567616 | 420 | 1508 | 2016-01-17 21:01:41 | Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr | 9 | 10 | Brad | |
| 1378 | 688804835492233216 | 227 | 1043 | 2016-01-17 19:27:24 | When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 | 12 | 10 | None | |
| 1379 | 688789766343622656 | 759 | 2434 | 2016-01-17 18:27:32 | Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG | 8 | 10 | Pubert | |
| 1380 | 688547210804498433 | 789 | 2862 | 2016-01-17 02:23:42 | This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ | 9 | 10 | Frönq | |
| 1381 | 688519176466644993 | 825 | 2520 | 2016-01-17 00:32:18 | This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 | 12 | 10 | None | pupper |
| 1382 | 688385280030670848 | 5035 | 10180 | 2016-01-16 15:40:14 | This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th | 12 | 10 | Louis | |
| 1383 | 688211956440801280 | 937 | 2426 | 2016-01-16 04:11:31 | This is Derby. He's a superstar. 13/10 (vid by @NBohlmann) https://t.co/o4Nfc8WoAO | 13 | 10 | Derby | |
| 1384 | 688179443353796608 | 669 | 2328 | 2016-01-16 02:02:19 | This is Lizzie. She's about to fist bump the large ridable maned pupper. She's very excited. 10/10 for both dogs https://t.co/mFhvtX36om | 10 | 10 | Lizzie | pupper |
| 1385 | 688116655151435777 | 888 | 3093 | 2016-01-15 21:52:49 | Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv | 10 | 10 | None | |
| 1386 | 688064179421470721 | 408 | 1878 | 2016-01-15 18:24:18 | This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY | 11 | 10 | Kilo | |
| 1387 | 687841446767013888 | 2872 | 6009 | 2016-01-15 03:39:15 | 13/10 I can't stop watching this (vid by @k8lynwright) https://t.co/nZhhMRr5Hp | 13 | 10 | None | |
| 1388 | 687826841265172480 | 1292 | 2989 | 2016-01-15 02:41:12 | This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P | 12 | 10 | Louis | |
| 1389 | 687818504314159109 | 1080 | 2758 | 2016-01-15 02:08:05 | With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP | 12 | 10 | None | pupper |
| 1390 | 687807801670897665 | 801 | 2625 | 2016-01-15 01:25:33 | Meet Trooper & Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy | 11 | 10 | Trooper | |
| 1391 | 687732144991551489 | 750 | 1935 | 2016-01-14 20:24:55 | This is Ember. That's the q-tip she owes money to. 11/10 pay up pup. (vid by @leanda_h) https://t.co/kGRcRjRJRl | 11 | 10 | Ember | |
| 1392 | 687704180304273409 | 950 | 2660 | 2016-01-14 18:33:48 | Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt | 9 | 10 | Blakely | pupper |
| 1393 | 687664829264453632 | 576 | 2121 | 2016-01-14 15:57:26 | Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez | 11 | 10 | Opal | |
| 1394 | 687494652870668288 | 654 | 2104 | 2016-01-14 04:41:12 | This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c | 7 | 10 | Marq | |
| 1395 | 687480748861947905 | 281 | 1760 | 2016-01-14 03:45:57 | Another magnificent photo. 12/10 https://t.co/X5w387K5jr | 12 | 10 | None | |
| 1396 | 687476254459715584 | 619 | 2187 | 2016-01-14 03:28:06 | This is Curtis. He's a fluffball. 11/10 would snug this pupper https://t.co/1DzInODwrj | 11 | 10 | Curtis | pupper |
| 1397 | 687460506001633280 | 614 | 2243 | 2016-01-14 02:25:31 | This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH | 10 | 10 | Kramer | |
| 1398 | 687399393394311168 | 702 | 2081 | 2016-01-13 22:22:41 | This is Barry. He's very fast. I hope he finds what he's looking for. 10/10 (vid by @KeeganWolfe33) https://t.co/nTAsyvbIiO | 10 | 10 | Barry | |
| 1399 | 687317306314240000 | 10411 | 22073 | 2016-01-13 16:56:30 | This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz | 11 | 10 | Tyrone | |
| 1400 | 687312378585812992 | 2146 | 4777 | 2016-01-13 16:36:55 | "You got any games on your phone" 7/10 for invasive brown Dalmatian pupper https://t.co/yzGR9xjE9Q | 7 | 10 | None | pupper |
| 1401 | 687127927494963200 | 2591 | 6004 | 2016-01-13 04:23:58 | Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb | 9 | 10 | Gordon | |
| 1402 | 687124485711986689 | 577 | 2371 | 2016-01-13 04:10:18 | Say hello to Samson. He's a Firecracker Häagen-Dazs. 11/10 objects in mirror may be more petable than they appear https://t.co/03vR9dn7jy | 11 | 10 | Samson | |
| 1403 | 687109925361856513 | 2803 | 6370 | 2016-01-13 03:12:26 | This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb | 11 | 10 | Baxter | |
| 1404 | 687102708889812993 | 1124 | 2571 | 2016-01-13 02:43:46 | Army of water dogs here. None of them know where they're going. Have no real purpose. Aggressive barks. 5/10 for all https://t.co/A88x73TwMN | 5 | 10 | None | |
| 1405 | 687096057537363968 | 695 | 2449 | 2016-01-13 02:17:20 | This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC | 11 | 10 | None | pupper |
| 1406 | 686947101016735744 | 3582 | 9433 | 2016-01-12 16:25:26 | This is Jackson. He was specifically told not to sleep in the fridge. Damn it Jackson. 11/10 would squeeze softly https://t.co/lJs10ZJsgj | 11 | 10 | Jackson | |
| 1407 | 686760001961103360 | 1551 | 3852 | 2016-01-12 04:01:58 | This pupper forgot how to walk. 12/10 happens to all of us (vid by @bbuckley96) https://t.co/KFTrkSOuu3 | 12 | 10 | None | pupper |
| 1408 | 686749460672679938 | 1666 | 3812 | 2016-01-12 03:20:05 | Strange pup here. Easily manipulated. Rather inbred. Sharp for a dog. Appears uncomfortable. 8/10 would still pet https://t.co/nSQrhwbk1V | 8 | 10 | None | |
| 1409 | 686730991906516992 | 1350 | 4543 | 2016-01-12 02:06:41 | I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU | 12 | 10 | None | |
| 1410 | 686683045143953408 | 912 | 3072 | 2016-01-11 22:56:10 | This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz | 11 | 10 | Mona | pupper |
| 1411 | 686618349602762752 | 1544 | 4042 | 2016-01-11 18:39:05 | This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc | 11 | 10 | Olivia | pupper |
| 1412 | 686606069955735556 | 607 | 2071 | 2016-01-11 17:50:18 | Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd | 10 | 10 | Horace | |
| 1413 | 686394059078897668 | 769 | 1928 | 2016-01-11 03:47:50 | This pup's having a nightmare that he forgot to type a paper due first thing in the morning. 12/10 (vid by ... https://t.co/CufnbUT0pB | 12 | 10 | None | |
| 1414 | 686386521809772549 | 996 | 3553 | 2016-01-11 03:17:53 | Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey & parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc | 11 | 10 | Crimson | |
| 1415 | 686377065986265092 | 637 | 2433 | 2016-01-11 02:40:19 | Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX | 10 | 10 | Birf | pupper |
| 1416 | 686358356425093120 | 776 | 2398 | 2016-01-11 01:25:58 | Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW | 10 | 10 | None | |
| 1417 | 686286779679375361 | 1887 | 4392 | 2016-01-10 20:41:33 | When bae calls your name from across the room. 12/10 (vid by @christinemcc98) https://t.co/xolcXA6gxe | 12 | 10 | None | |
| 1418 | 686050296934563840 | 836 | 2420 | 2016-01-10 05:01:51 | This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg | 11 | 10 | Flávio | |
| 1419 | 686035780142297088 | 138 | 1274 | 2016-01-10 04:04:10 | Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating | 4 | 10 | None | |
| 1420 | 686034024800862208 | 1324 | 3424 | 2016-01-10 03:57:12 | Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D | 12 | 10 | None | |
| 1421 | 686007916130873345 | 472 | 2704 | 2016-01-10 02:13:27 | This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW | 11 | 10 | None | pupper |
| 1422 | 686003207160610816 | 735 | 2009 | 2016-01-10 01:54:44 | This is Hammond. He's a peculiar pup. Loves long walks. Bark barely audible. Too many legs. 3/10 must be rare https://t.co/NOIiRWr5Jf | 3 | 10 | Hammond | |
| 1423 | 685973236358713344 | 611 | 2326 | 2016-01-09 23:55:38 | This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 | 11 | 10 | Lorelei | |
| 1424 | 685943807276412928 | 696 | 1801 | 2016-01-09 21:58:42 | This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn | 8 | 10 | NaN | pupper |
| 1425 | 685906723014619143 | 3303 | 8277 | 2016-01-09 19:31:20 | This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF | 9 | 10 | Olive | |
| 1426 | 685681090388975616 | 140 | 2069 | 2016-01-09 04:34:45 | Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️ | 14 | 10 | None | |
| 1427 | 685667379192414208 | 666 | 2579 | 2016-01-09 03:40:16 | This is Marty. He has no idea what happened here. Never seen this stuff in his life. 9/10 very suspicious pupper https://t.co/u427woxFpJ | 9 | 10 | Marty | pupper |
| 1428 | 685663452032069632 | 1656 | 3557 | 2016-01-09 03:24:40 | Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM | 12 | 10 | Brooks | |
| 1429 | 685641971164143616 | 885 | 3218 | 2016-01-09 01:59:19 | This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO | 7 | 10 | Otis | pupper |
| 1430 | 685547936038666240 | 17465 | 35052 | 2016-01-08 19:45:39 | Everybody needs to read this. Jack is our first 14/10. Truly heroic pupper https://t.co/3m6bNGXWnM | 14 | 10 | None | pupper |
| 1431 | 685532292383666176 | 1298 | 3336 | 2016-01-08 18:43:29 | For the last time, WE. DO. NOT. RATE. BULBASAUR. We only rate dogs. Please only send dogs. Thank you ...9/10 https://t.co/GboDG8WhJG | 9 | 10 | None | |
| 1432 | 685325112850124800 | 4535 | 10471 | 2016-01-08 05:00:14 | "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw | 10 | 10 | None | |
| 1433 | 685321586178670592 | 735 | 2910 | 2016-01-08 04:46:13 | This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu | 10 | 10 | Rocky | |
| 1434 | 685315239903100929 | 1234 | 3676 | 2016-01-08 04:21:00 | I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo | 11 | 10 | None | |
| 1435 | 685307451701334016 | 496 | 2262 | 2016-01-08 03:50:03 | Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF | 11 | 10 | Petrick | floofer |
| 1436 | 685268753634967552 | 1371 | 3419 | 2016-01-08 01:16:17 | This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ | 10 | 10 | Hubertson | pupper |
| 1437 | 685198997565345792 | 764 | 2566 | 2016-01-07 20:39:06 | This is Alfie. That is his time machine. He's very proud of it. Without him life as we know it would not exist 11/10 https://t.co/530Yfbl5xo | 11 | 10 | Alfie | |
| 1438 | 685169283572338688 | 1620 | 4489 | 2016-01-07 18:41:01 | Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud | 11 | 10 | Gerbald | pupper |
| 1439 | 684969860808454144 | 421 | 2374 | 2016-01-07 05:28:35 | For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u | 5 | 10 | None | |
| 1440 | 684959798585110529 | 3487 | 7004 | 2016-01-07 04:48:36 | This is Jerry. He's a neat dog. No legs (tragic). Has more horns than a dog usually does. Bark is unique af. 5/10 https://t.co/85q7xlplsJ | 5 | 10 | Jerry | |
| 1441 | 684940049151070208 | 1191 | 3523 | 2016-01-07 03:30:07 | This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL | 12 | 10 | Oreo | |
| 1442 | 684926975086034944 | 552 | 3849 | 2016-01-07 02:38:10 | Meet Bruiser & Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 | 11 | 10 | Bruiser | |
| 1443 | 684914660081053696 | 1662 | 3848 | 2016-01-07 01:49:14 | "Hello yes I'll just get one of each color thanks" 12/10 for all https://t.co/AMDsllQs7a | 12 | 10 | None | |
| 1444 | 684902183876321280 | 605 | 2053 | 2016-01-07 00:59:40 | This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR | 11 | 10 | Perry | |
| 1445 | 684880619965411328 | 936 | 2305 | 2016-01-06 23:33:58 | Here we have a basking dino pupper. Looks powerful. Occasionally shits eggs. Doesn't want the holidays to end. 5/10 https://t.co/DnNweb5eTO | 5 | 10 | None | pupper |
| 1446 | 684830982659280897 | 24514 | 38551 | 2016-01-06 20:16:44 | This little fella really hates stairs. Prefers bush. 13/10 legendary pupper https://t.co/e3LPMAHj7p | 13 | 10 | None | pupper |
| 1447 | 684800227459624960 | 1124 | 2979 | 2016-01-06 18:14:31 | Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy | 11 | 10 | Theodore | |
| 1448 | 684594889858887680 | 4016 | 9843 | 2016-01-06 04:38:35 | "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu | 10 | 10 | None | |
| 1449 | 684588130326986752 | 1592 | 4489 | 2016-01-06 04:11:43 | This pupper just got his first kiss. 12/10 he's so happy https://t.co/2sHwD7HztL | 12 | 10 | None | pupper |
| 1450 | 684567543613382656 | 1418 | 3312 | 2016-01-06 02:49:55 | This is Bobby. He doesn't give a damn about personal space. Convinced he called shotgun first. 4/10 not the best dog https://t.co/b8XW69gSaU | 4 | 10 | Bobby | |
| 1451 | 684538444857667585 | 1085 | 2915 | 2016-01-06 00:54:18 | After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV | 12 | 10 | None | |
| 1452 | 684481074559381504 | 1320 | 4249 | 2016-01-05 21:06:19 | Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb | 10 | 10 | Pippa | |
| 1453 | 684460069371654144 | 628 | 2169 | 2016-01-05 19:42:51 | This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju | 10 | 10 | Jeph | |
| 1454 | 684241637099323392 | 3727 | 8999 | 2016-01-05 05:14:53 | This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 | 12 | 10 | Obi | |
| 1455 | 684225744407494656 | 239 | 1369 | 2016-01-05 04:11:44 | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 | 11 | 10 | None | |
| 1456 | 684222868335505415 | 1563 | 4225 | 2016-01-05 04:00:18 | Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 | 11 | 10 | None | |
| 1457 | 684200372118904832 | 1177 | 2394 | 2016-01-05 02:30:55 | Gang of fearless hoofed puppers here. Straight savages. Elevated for extra terror. Front one has killed before 6/10s https://t.co/jkCb25OWfh | 6 | 10 | None | |
| 1458 | 684195085588783105 | 595 | 2108 | 2016-01-05 02:09:54 | This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 | 9 | 10 | Tino | |
| 1459 | 684188786104872960 | 1343 | 3831 | 2016-01-05 01:44:52 | "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA | 10 | 10 | None | |
| 1460 | 684177701129875456 | 764 | 2215 | 2016-01-05 01:00:50 | This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 | 10 | 10 | Kulet | |
| 1461 | 684147889187209216 | 1703 | 3265 | 2016-01-04 23:02:22 | This is Sweets the English Bulldog. Waves back to other bikers. 12/10 just a fantastic friendly pupper https://t.co/WYiFzuX7D4 | 12 | 10 | Sweets | pupper |
| 1462 | 684122891630342144 | 539 | 2176 | 2016-01-04 21:23:02 | Heartwarming scene of two pups that want nothing more than to be together. Touching af. Great tongue. Both 11/10 https://t.co/k32mSlRx0j | 11 | 10 | None | |
| 1463 | 684097758874210310 | 1621 | 4515 | 2016-01-04 19:43:10 | Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C | 10 | 10 | Lupe | |
| 1464 | 683857920510050305 | 1262 | 4163 | 2016-01-04 03:50:08 | Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW | 10 | 10 | Sadie | |
| 1465 | 683852578183077888 | 397 | 2111 | 2016-01-04 03:28:54 | Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN | 10 | 10 | Tiger | |
| 1466 | 683849932751646720 | 1116 | 2896 | 2016-01-04 03:18:23 | This is Jiminy. He's not the brightest dog. Needs to lay off the kibble. 5/10 still petable https://t.co/omln4LOy1x | 5 | 10 | Jiminy | |
| 1467 | 683834909291606017 | 1265 | 2880 | 2016-01-04 02:18:42 | Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet https://t.co/O1E4AtHVxO | 9 | 10 | None | pupper |
| 1468 | 683828599284170753 | 1195 | 3053 | 2016-01-04 01:53:37 | Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS | 12 | 10 | None | pupper |
| 1469 | 683773439333797890 | 1533 | 3684 | 2016-01-03 22:14:26 | This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR | 9 | 10 | Buddy | |
| 1470 | 683742671509258241 | 3781 | 7162 | 2016-01-03 20:12:10 | Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg | 11 | 10 | Sebastian | |
| 1471 | 683515932363329536 | 3291 | 8058 | 2016-01-03 05:11:12 | HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT CONNECTS THE FOOT AND THE LEG? 11/10 so smart https://t.co/XQ1tRUmO3z | 11 | 10 | None | |
| 1472 | 683498322573824003 | 1095 | 3469 | 2016-01-03 04:01:13 | This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 | 11 | 10 | Griffin | |
| 1473 | 683481228088049664 | 1118 | 2878 | 2016-01-03 02:53:17 | Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq | 11 | 10 | Banjo | pupper |
| 1474 | 683462770029932544 | 761 | 2676 | 2016-01-03 01:39:57 | "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT | 8 | 10 | None | pupper |
| 1475 | 683449695444799489 | 1837 | 4290 | 2016-01-03 00:47:59 | I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe | 10 | 10 | None | |
| 1476 | 683391852557561860 | 2702 | 8356 | 2016-01-02 20:58:09 | Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 | 11 | 10 | Jack | |
| 1477 | 683357973142474752 | 1059 | 3238 | 2016-01-02 18:43:31 | "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd | 10 | 10 | None | |
| 1478 | 683142553609318400 | 1173 | 3162 | 2016-01-02 04:27:31 | Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ | 9 | 10 | Brandy | pupper |
| 1479 | 683111407806746624 | 1034 | 3736 | 2016-01-02 02:23:45 | This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM | 10 | 10 | Larry | pupper |
| 1480 | 683098815881154561 | 736 | 2361 | 2016-01-02 01:33:43 | aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H | 12 | 10 | None | |
| 1481 | 683078886620553216 | 634 | 2176 | 2016-01-02 00:14:32 | Here we see a nifty leaping pupper. Feet look deadly. Sad that the holidays are over. 9/10 undeniably huggable https://t.co/ny8mnXhGOW | 9 | 10 | None | pupper |
| 1482 | 683030066213818368 | 832 | 2370 | 2016-01-01 21:00:32 | This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J | 10 | 10 | Lulu | |
| 1483 | 682962037429899265 | 15043 | 26239 | 2016-01-01 16:30:13 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 | 10 | 10 | Darrel | |
| 1484 | 682808988178739200 | 210 | 1953 | 2016-01-01 06:22:03 | I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible | 20 | 10 | None | |
| 1485 | 682788441537560576 | 1258 | 2706 | 2016-01-01 05:00:24 | Happy New Year from your fav holiday squad! 🎉 12/10 for all\n\nHere's to a pupper-filled year 🍻🐶🐶🐶 https://t.co/ZSdEj59FGf | 12 | 10 | None | pupper |
| 1486 | 682750546109968385 | 494 | 1674 | 2016-01-01 02:29:49 | Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr | 9 | 10 | Taco | |
| 1487 | 682697186228989953 | 397 | 1440 | 2015-12-31 22:57:47 | NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 https://t.co/Ny4iM6FDtz | 12 | 10 | None | |
| 1488 | 682662431982772225 | 1207 | 3326 | 2015-12-31 20:39:41 | Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB | 11 | 10 | Joey | |
| 1489 | 682638830361513985 | 675 | 2266 | 2015-12-31 19:05:54 | I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j | 12 | 10 | None | |
| 1490 | 682429480204398592 | 1320 | 3769 | 2015-12-31 05:14:01 | I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU | 8 | 10 | None | |
| 1491 | 682406705142087680 | 2019 | 8319 | 2015-12-31 03:43:31 | This is Patrick. He's a bigass pupper. 7/10 https://t.co/J9DXBFoAQe | 7 | 10 | Patrick | pupper |
| 1492 | 682393905736888321 | 773 | 2441 | 2015-12-31 02:52:40 | This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y | 11 | 10 | Kreg | |
| 1493 | 682389078323662849 | 518 | 1828 | 2015-12-31 02:33:29 | Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ | 9 | 10 | Brody | |
| 1494 | 682303737705140231 | 1135 | 3389 | 2015-12-30 20:54:22 | This is Todo. He's screaming because he doesn't want to wear his sweater or a seat belt. 9/10 gotta buckle up pup https://t.co/Nm8Spw4HbD | 9 | 10 | Todo | |
| 1495 | 682259524040966145 | 1375 | 4578 | 2015-12-30 17:58:40 | Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW | 9 | 10 | Jax | |
| 1496 | 682242692827447297 | 1341 | 3566 | 2015-12-30 16:51:48 | This is Samson. He patrols his waters on the back of his massive shielded battle dog. 11/10 https://t.co/f8dVgDYDFf | 11 | 10 | Samson | |
| 1497 | 682088079302213632 | 11271 | 20108 | 2015-12-30 06:37:25 | I'm not sure what this dog is doing but it's pretty inspirational. 12/10 https://t.co/4Kn9GEHXiE | 12 | 10 | None | |
| 1498 | 682059653698686977 | 1915 | 5442 | 2015-12-30 04:44:28 | This is Tess. Her main passions are shelves and baking too many cookies. 11/10 https://t.co/IriJlVZ6m4 | 11 | 10 | Tess | |
| 1499 | 682047327939461121 | 1088 | 3525 | 2015-12-30 03:55:29 | We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT | 10 | 10 | None | |
| 1500 | 682032003584274432 | 2294 | 7223 | 2015-12-30 02:54:35 | This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak | 11 | 10 | Ulysses | |
| 1501 | 682003177596559360 | 1722 | 3464 | 2015-12-30 01:00:03 | Unique dog here. Wrinkly as hell. Weird segmented neck. Finger on fire. Doesn't seem to notice. 5/10 might still pet https://t.co/Hy9La4xNX3 | 5 | 10 | None | |
| 1502 | 681981167097122816 | 1161 | 3043 | 2015-12-29 23:32:35 | This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx | 12 | 10 | Jimothy | |
| 1503 | 681891461017812993 | 951 | 2706 | 2015-12-29 17:36:07 | Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 | 10 | 10 | Charlie | pupper |
| 1504 | 681694085539872773 | 4581 | 14010 | 2015-12-29 04:31:49 | This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 | 11 | 10 | Bo | pupper |
| 1505 | 681679526984871937 | 499 | 1923 | 2015-12-29 03:33:58 | Can you spot Toby the guilty pupper? 7/10 would be higher but he made quite the mess shredding his stuffed pals https://t.co/3uCcDEJLXs | 7 | 10 | None | pupper |
| 1506 | 681654059175129088 | 1045 | 2903 | 2015-12-29 01:52:46 | This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu | 12 | 10 | Toffee | pupper |
| 1507 | 681610798867845120 | 533 | 2100 | 2015-12-28 23:00:52 | *collapses* 12/10 https://t.co/C7M8mnzHIK | 12 | 10 | None | |
| 1508 | 681579835668455424 | 1489 | 3893 | 2015-12-28 20:57:50 | This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT | 8 | 10 | Apollo | |
| 1509 | 681523177663676416 | 6620 | 15749 | 2015-12-28 17:12:42 | This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud | 12 | 10 | Carly | |
| 1510 | 681340665377193984 | 313 | 1803 | 2015-12-28 05:07:27 | I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace | 5 | 10 | None | |
| 1511 | 681339448655802368 | 4598 | 10202 | 2015-12-28 05:02:37 | This is Asher. He's not wearing a seatbelt or keeping both paws on the wheel. Absolute menace on the roadways. 9/10 https://t.co/V3SWuHACkh | 9 | 10 | Asher | |
| 1512 | 681320187870711809 | 863 | 2918 | 2015-12-28 03:46:05 | This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 | 11 | 10 | Glacier | |
| 1513 | 681302363064414209 | 2072 | 4347 | 2015-12-28 02:35:15 | This is Chuck. He's a neat dog. Very flexible. Trapped in a glass case of emotion. Devastatingly unfluffy 3/10 https://t.co/YqbU9xHV3p | 3 | 10 | Chuck | |
| 1514 | 681297372102656000 | 1091 | 3490 | 2015-12-28 02:15:26 | This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap | 12 | 10 | NaN | |
| 1515 | 681281657291280384 | 1258 | 3520 | 2015-12-28 01:12:59 | Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje | 11 | 10 | Sarge | |
| 1516 | 681261549936340994 | 308 | 1597 | 2015-12-27 23:53:05 | Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk | 9 | 10 | Panda | |
| 1517 | 681242418453299201 | 624 | 1645 | 2015-12-27 22:37:04 | This is Champ. He's being sacrificed to the Aztec sun god Huitzilopochtli. So sad. 10/10 Champ doesn't deserve this https://t.co/VGsziXImoy | 10 | 10 | Champ | |
| 1518 | 681231109724700672 | 540 | 2629 | 2015-12-27 21:52:07 | I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI | 11 | 10 | None | pupper |
| 1519 | 681193455364796417 | 1691 | 4077 | 2015-12-27 19:22:30 | This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx | 11 | 10 | Aspen | |
| 1520 | 680970795137544192 | 749 | 2665 | 2015-12-27 04:37:44 | I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 | 9 | 10 | None | |
| 1521 | 680959110691590145 | 2243 | 4986 | 2015-12-27 03:51:18 | This is Ozzie. He was doing fine until he lost traction in those festive socks. Now he's tired. 9/10 still killin it https://t.co/u4FYdIRKnY | 9 | 10 | Ozzie | |
| 1522 | 680940246314430465 | 1225 | 3544 | 2015-12-27 02:36:20 | This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS | 4 | 10 | Alice | |
| 1523 | 680934982542561280 | 497 | 2285 | 2015-12-27 02:15:25 | Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl | 10 | 10 | Sadie | |
| 1524 | 680913438424612864 | 705 | 2609 | 2015-12-27 00:49:49 | Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN | 11 | 10 | Griswold | |
| 1525 | 680889648562991104 | 418 | 1945 | 2015-12-26 23:15:17 | This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H | 9 | 10 | Cheesy | |
| 1526 | 680836378243002368 | 1513 | 3766 | 2015-12-26 19:43:36 | This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb | 12 | 10 | Ellie | pupper |
| 1527 | 680805554198020098 | 751 | 2370 | 2015-12-26 17:41:07 | This guy's dog broke. So sad. 9/10 would still pet https://t.co/BYiXJDEzv7 | 9 | 10 | None | |
| 1528 | 680801747103793152 | 925 | 2600 | 2015-12-26 17:25:59 | Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 | 10 | 10 | None | |
| 1529 | 680798457301471234 | 1182 | 3134 | 2015-12-26 17:12:55 | Say hello to Moofasa. He must be a powerful dog. Fenced in for your protection. Just got his ear pierced. 6/10 https://t.co/w6fRfQ3RXD | 6 | 10 | Moofasa | |
| 1530 | 680609293079592961 | 816 | 2906 | 2015-12-26 04:41:15 | This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit | 9 | 10 | Brody | |
| 1531 | 680583894916304897 | 1514 | 3939 | 2015-12-26 03:00:19 | This is Penny. Her tennis ball slowly rolled down her cone and into the pool. 8/10 bad things happen to good puppers https://t.co/YNWU7LeFgg | 8 | 10 | Penny | |
| 1532 | 680497766108381184 | 2162 | 4639 | 2015-12-25 21:18:05 | Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s | 12 | 10 | Percy | |
| 1533 | 680494726643068929 | 542 | 1879 | 2015-12-25 21:06:00 | Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD | 11 | 10 | None | |
| 1534 | 680473011644985345 | 844 | 2778 | 2015-12-25 19:39:43 | This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI | 10 | 10 | Hector | pupper |
| 1535 | 680440374763077632 | 564 | 1583 | 2015-12-25 17:30:01 | Merry Christmas. My gift to you is this tiny unicorn running into a wall in slow motion. 11/10 https://t.co/UKqIAnR3He | 11 | 10 | None | |
| 1536 | 680221482581123072 | 329 | 1598 | 2015-12-25 03:00:14 | This is CeCe. She's patiently waiting for Santa. 10/10 https://t.co/ZJUypFFwvg | 10 | 10 | CeCe | |
| 1537 | 680206703334408192 | 1323 | 3115 | 2015-12-25 02:01:30 | I hope everyone enjoys this picture as much as I do. This is Toby. 12/10 https://t.co/vHnu1g9EJm | 12 | 10 | Toby | |
| 1538 | 680191257256136705 | 577 | 2356 | 2015-12-25 01:00:07 | Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 | 11 | 10 | None | pupper |
| 1539 | 680176173301628928 | 1760 | 4263 | 2015-12-25 00:00:11 | This pupper is patiently waiting to scare the shit out of Santa. 10/10 https://t.co/NhXo67K6yt | 10 | 10 | None | pupper |
| 1540 | 680161097740095489 | 828 | 2538 | 2015-12-24 23:00:17 | Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw | 12 | 10 | Goliath | |
| 1541 | 680145970311643136 | 1972 | 3955 | 2015-12-24 22:00:10 | Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e | 10 | 10 | Kawhi | pupper |
| 1542 | 680130881361686529 | 1078 | 2519 | 2015-12-24 21:00:12 | This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK | 10 | 10 | Reggie | |
| 1543 | 680115823365742593 | 1028 | 2972 | 2015-12-24 20:00:22 | This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap | 9 | 10 | Ozzy | |
| 1544 | 680100725817409536 | 1554 | 3891 | 2015-12-24 19:00:23 | This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H | 11 | 10 | None | pupper |
| 1545 | 680085611152338944 | 10034 | 13959 | 2015-12-24 18:00:19 | This is by far the most coordinated series of pictures I was sent. Downright impressive in every way. 12/10 for all https://t.co/etzLo3sdZE | 12 | 10 | NaN | |
| 1546 | 680070545539371008 | 994 | 2818 | 2015-12-24 17:00:27 | Say hello to Emmie. She's trapped in an ornament. Tragic af. Looks pretty content tho. Maybe it's meant to be. 9/10 https://t.co/Fh7geodBCU | 9 | 10 | Emmie | |
| 1547 | 680055455951884288 | 8067 | 18278 | 2015-12-24 16:00:30 | Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh | 10 | 10 | Sammy | |
| 1548 | 679877062409191424 | 726 | 2155 | 2015-12-24 04:11:37 | Meet Penelope. She's a bacon frise. Total babe (lol get it like the movie). Doesn't bark tho. 5/10 very average dog https://t.co/SDcQYg0HSZ | 5 | 10 | Penelope | |
| 1549 | 679872969355714560 | 749 | 2365 | 2015-12-24 03:55:21 | This is Rocco. He's in a very intense game of freeze tag. Currently waiting to be unfrozen 10/10 https://t.co/xZXUKVXJ7l | 10 | 10 | Rocco | |
| 1550 | 679862121895714818 | 706 | 2678 | 2015-12-24 03:12:15 | "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 | 11 | 10 | None | |
| 1551 | 679854723806179328 | 1402 | 3143 | 2015-12-24 02:42:51 | This is Bruce. He's a rare pup. Covered in Frosted Flakes. Nifty gold teeth. Overall good dog. 7/10 would pet firmly https://t.co/RtxxACzZ8A | 7 | 10 | Bruce | |
| 1552 | 679844490799091713 | 887 | 2593 | 2015-12-24 02:02:12 | This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X | 10 | 10 | Willie | |
| 1553 | 679828447187857408 | 15839 | 39726 | 2015-12-24 00:58:27 | Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC | 13 | 10 | None | pupper |
| 1554 | 679777920601223168 | 1281 | 3390 | 2015-12-23 21:37:40 | This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb | 10 | 10 | Rinna | pupper |
| 1555 | 679736210798047232 | 918 | 2311 | 2015-12-23 18:51:56 | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP | 9 | 10 | None | |
| 1556 | 679729593985699840 | 937 | 2367 | 2015-12-23 18:25:38 | This is Hunter. He was playing with his ball minding his own business. Has no idea what happened to the carpet. 8/10 https://t.co/DbUTDI3u1R | 8 | 10 | Hunter | |
| 1557 | 679722016581222400 | 539 | 1817 | 2015-12-23 17:55:32 | This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF | 8 | 10 | Mike | |
| 1558 | 679530280114372609 | 2347 | 5208 | 2015-12-23 05:13:38 | Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC | 7 | 10 | NaN | |
| 1559 | 679527802031484928 | 823 | 2892 | 2015-12-23 05:03:47 | This little pupper just arrived. 11/10 would snug https://t.co/DA5aqnSGfB | 11 | 10 | None | pupper |
| 1560 | 679511351870550016 | 1461 | 3711 | 2015-12-23 03:58:25 | Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr | 7 | 10 | William | |
| 1561 | 679503373272485890 | 1673 | 3484 | 2015-12-23 03:26:43 | This is Dwight. He's a pointy pupper. Very docile. Attracts marshmallows. Hurts to pet but definitely worth it 8/10 https://t.co/jjW7zTxY9Z | 8 | 10 | Dwight | pupper |
| 1562 | 679475951516934144 | 728 | 2304 | 2015-12-23 01:37:45 | This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L | 9 | 10 | Evy | |
| 1563 | 679462823135686656 | 21324 | 34856 | 2015-12-23 00:45:35 | Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV | 11 | 10 | Hurley | |
| 1564 | 679405845277462528 | 1364 | 2594 | 2015-12-22 20:59:10 | Crazy unseen footage from Jurassic Park. 10/10 for both dinosaur puppers https://t.co/L8wt2IpwxO | 10 | 10 | None | |
| 1565 | 679158373988876288 | 9193 | 23568 | 2015-12-22 04:35:49 | This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag | 11 | 10 | Rubio | |
| 1566 | 679148763231985668 | 1163 | 3028 | 2015-12-22 03:57:37 | I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL | 8 | 10 | None | |
| 1567 | 679132435750195208 | 1314 | 3253 | 2015-12-22 02:52:45 | This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 | 10 | 10 | Louis | |
| 1568 | 679111216690831360 | 2893 | 6514 | 2015-12-22 01:28:25 | This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE | 12 | 10 | NaN | |
| 1569 | 679062614270468097 | 9299 | 18712 | 2015-12-21 22:15:18 | This is Chompsky. He lives up to his name. 11/10 https://t.co/Xl37lQEWd0 | 11 | 10 | Chompsky | |
| 1570 | 679047485189439488 | 781 | 2460 | 2015-12-21 21:15:11 | This dog doesn't know how to stairs. Quite tragic really. 9/10 get it together pup https://t.co/kTpr9PTMg1 | 9 | 10 | None | |
| 1571 | 679001094530465792 | 1378 | 3075 | 2015-12-21 18:10:50 | This is Rascal. He's paddling an imaginary canoe. 11/10 https://t.co/Ajquq6oGSg | 11 | 10 | Rascal | |
| 1572 | 678991772295516161 | 1333 | 2537 | 2015-12-21 17:33:48 | If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU | 12 | 10 | None | |
| 1573 | 678969228704284672 | 528 | 1796 | 2015-12-21 16:04:13 | Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f | 11 | 10 | Lola | |
| 1574 | 678800283649069056 | 1018 | 2810 | 2015-12-21 04:52:53 | Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu | 12 | 10 | None | pupper |
| 1575 | 678798276842360832 | 1350 | 3804 | 2015-12-21 04:44:55 | This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR | 7 | 10 | Linda | |
| 1576 | 678774928607469569 | 1043 | 3037 | 2015-12-21 03:12:08 | This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx | 11 | 10 | Tug | |
| 1577 | 678767140346941444 | 1553 | 3864 | 2015-12-21 02:41:11 | This is Mia. She makes awful decisions. 8/10 https://t.co/G6TQVgTcZz | 8 | 10 | Mia | |
| 1578 | 678764513869611008 | 544 | 1788 | 2015-12-21 02:30:45 | Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv | 10 | 10 | Wilson | |
| 1579 | 678755239630127104 | 3741 | 7802 | 2015-12-21 01:53:54 | This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW | 10 | 10 | Dash | |
| 1580 | 678740035362037760 | 1926 | 4099 | 2015-12-21 00:53:29 | Meet Tango. He's a large dog. Doesn't care much for personal space. Owner isn't very accepting. Tongue slip. 6/10 https://t.co/p2T5kGebxe | 6 | 10 | Tango | |
| 1581 | 678708137298427904 | 2753 | 6082 | 2015-12-20 22:46:44 | Here we are witnessing a wild field pupper. Lost his wallet in there. Rather unfortunate. 10/10 good luck pup https://t.co/sZy9Co74Bw | 10 | 10 | None | pupper |
| 1582 | 678675843183484930 | 1680 | 3155 | 2015-12-20 20:38:24 | Exotic pup here. Tail long af. Throat looks swollen. Might breathe fire. Exceptionally unfluffy 2/10 would still pet https://t.co/a8SqCaSo2r | 2 | 10 | None | |
| 1583 | 678643457146150913 | 489 | 2250 | 2015-12-20 18:29:43 | Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv | 10 | 10 | Grizz | |
| 1584 | 678446151570427904 | 1785 | 4358 | 2015-12-20 05:25:42 | Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx | 10 | 10 | None | |
| 1585 | 678424312106393600 | 2880 | 5916 | 2015-12-20 03:58:55 | This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz | 2 | 10 | Crystal | |
| 1586 | 678410210315247616 | 2072 | 4640 | 2015-12-20 03:02:53 | Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 | 10 | 10 | Jerome | |
| 1587 | 678399652199309312 | 30742 | 61794 | 2015-12-20 02:20:55 | This made my day. 12/10 please enjoy https://t.co/VRTbo3aAcm | 12 | 10 | None | |
| 1588 | 678396796259975168 | 478 | 1731 | 2015-12-20 02:09:34 | These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen | 12 | 10 | None | |
| 1589 | 678389028614488064 | 473 | 2044 | 2015-12-20 01:38:42 | This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM | 11 | 10 | Bella | pupper |
| 1590 | 678380236862578688 | 1020 | 2655 | 2015-12-20 01:03:46 | This is Crumpet. He underestimated the snow. Quickly retreating. 10/10 https://t.co/a0Zx5LDFZa | 10 | 10 | Crumpet | |
| 1591 | 678341075375947776 | 612 | 1896 | 2015-12-19 22:28:09 | This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm | 12 | 10 | None | pupper |
| 1592 | 678334497360859136 | 304 | 1427 | 2015-12-19 22:02:01 | This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 | 10 | 10 | Rosie | |
| 1593 | 678278586130948096 | 6857 | 12531 | 2015-12-19 18:19:51 | Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj | 10 | 10 | None | pupper |
| 1594 | 678255464182861824 | 418 | 1726 | 2015-12-19 16:47:58 | This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv | 9 | 10 | Jessifer | |
| 1595 | 678023323247357953 | 439 | 2095 | 2015-12-19 01:25:31 | After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10 | 13 | 10 | None | |
| 1596 | 678021115718029313 | 7148 | 15018 | 2015-12-19 01:16:45 | This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh | 12 | 10 | Reese | |
| 1597 | 677961670166224897 | 1879 | 3701 | 2015-12-18 21:20:32 | This is Izzy. She's showing off the dance moves she's been working on. 11/10 I guess hard work pays off https://t.co/4JS92YAxTi | 11 | 10 | Izzy | |
| 1598 | 677918531514703872 | 463 | 1476 | 2015-12-18 18:29:07 | "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR | 10 | 10 | None | |
| 1599 | 677895101218201600 | 2384 | 5275 | 2015-12-18 16:56:01 | Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb | 9 | 10 | None | |
| 1600 | 677716515794329600 | 1104 | 3323 | 2015-12-18 05:06:23 | IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq | 12 | 10 | None | |
| 1601 | 677700003327029250 | 1622 | 3689 | 2015-12-18 04:00:46 | This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa | 10 | 10 | Ralph | |
| 1602 | 677698403548192770 | 363 | 1332 | 2015-12-18 03:54:25 | This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK | 9 | 10 | Sadie | |
| 1603 | 677687604918272002 | 950 | 2681 | 2015-12-18 03:11:30 | This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD | 11 | 10 | None | |
| 1604 | 677673981332312066 | 1677 | 3603 | 2015-12-18 02:17:22 | Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z | 9 | 10 | None | |
| 1605 | 677662372920729601 | 1101 | 2134 | 2015-12-18 01:31:14 | In honor of the new Star Wars movie. Here's Yoda pug. 12/10 pet really well, would I https://t.co/pvjdRn00XH | 12 | 10 | None | |
| 1606 | 677644091929329666 | 886 | 2040 | 2015-12-18 00:18:36 | This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND | 11 | 10 | NaN | |
| 1607 | 677573743309385728 | 819 | 2322 | 2015-12-17 19:39:03 | This is Sandy. He's sexually confused. Thinks he's a pigeon. Also an All-American cheese catcher. 10/10 so petable https://t.co/Htu8plSqEu | 10 | 10 | Sandy | |
| 1608 | 677565715327688705 | 513 | 1409 | 2015-12-17 19:07:09 | Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe | 6 | 10 | None | |
| 1609 | 677557565589463040 | 1322 | 2665 | 2015-12-17 18:34:46 | Reckless pupper here. Not even looking at road. Absolute menace. No regard for fellow pupper lives. 10/10 still cute https://t.co/96IBkOYB7j | 10 | 10 | None | pupper |
| 1610 | 677547928504967168 | 4076 | 7568 | 2015-12-17 17:56:29 | Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe | 12 | 10 | None | |
| 1611 | 677530072887205888 | 250 | 1161 | 2015-12-17 16:45:31 | Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE | 9 | 10 | Axel | |
| 1612 | 677335745548390400 | 2017 | 3328 | 2015-12-17 03:53:20 | Downright inspiring 12/10 https://t.co/vSLtYBWHcQ | 12 | 10 | None | |
| 1613 | 677334615166730240 | 328 | 1477 | 2015-12-17 03:48:51 | This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 | 9 | 10 | None | |
| 1614 | 677331501395156992 | 265 | 1189 | 2015-12-17 03:36:28 | Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 | 9 | 10 | Humphrey | |
| 1615 | 677328882937298944 | 1693 | 3938 | 2015-12-17 03:26:04 | This is Derek. All the dogs adore Derek. He's a great guy. 10/10 really solid pup https://t.co/KgcsGNb61s | 10 | 10 | Derek | |
| 1616 | 677314812125323265 | 611 | 1799 | 2015-12-17 02:30:09 | Meet Tassy & Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 & 11/10 respectively https://t.co/fgORpmTN9C | 10 | 10 | Tassy | |
| 1617 | 677301033169788928 | 471 | 1362 | 2015-12-17 01:35:24 | This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak | 5 | 10 | Juckson | |
| 1618 | 677269281705472000 | 790 | 2164 | 2015-12-16 23:29:14 | This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb | 10 | 10 | NaN | pupper |
| 1619 | 677228873407442944 | 1840 | 3837 | 2015-12-16 20:48:40 | Say hello to Chuq. He just wants to fit in. 11/10 https://t.co/hGkMCjZzn4 | 11 | 10 | Chuq | |
| 1620 | 677187300187611136 | 1033 | 2981 | 2015-12-16 18:03:28 | Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo | 9 | 10 | None | |
| 1621 | 676975532580409345 | 1203 | 3015 | 2015-12-16 04:01:59 | This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 | 11 | 10 | Cooper | |
| 1622 | 676957860086095872 | 907 | 2395 | 2015-12-16 02:51:45 | 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L | 10 | 10 | None | |
| 1623 | 676949632774234114 | 448 | 1413 | 2015-12-16 02:19:04 | This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa | 8 | 10 | Tyrus | |
| 1624 | 676948236477857792 | 980 | 2354 | 2015-12-16 02:13:31 | This is Karl. Karl thinks he's slick. 6/10 sneaky pup https://t.co/Lo4ALwjVh4 | 6 | 10 | Karl | |
| 1625 | 676946864479084545 | 426 | 1844 | 2015-12-16 02:08:04 | This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV | 12 | 10 | None | |
| 1626 | 676942428000112642 | 855 | 2261 | 2015-12-16 01:50:26 | Who leaves the last cupcake just sitting there? 9/10 https://t.co/PWMqAoEx2a | 9 | 10 | None | |
| 1627 | 676936541936185344 | 5515 | 13809 | 2015-12-16 01:27:03 | Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz | 8 | 10 | None | pupper |
| 1628 | 676916996760600576 | 2002 | 3231 | 2015-12-16 00:09:23 | Super speedy pupper. Does not go gentle into that goodnight. 10/10 https://t.co/uPXBXS1XNb | 10 | 10 | None | pupper |
| 1629 | 676897532954456065 | 817 | 2426 | 2015-12-15 22:52:02 | Exotic handheld dog here. Appears unathletic. Feet look deadly. Can be thrown a great distance. 5/10 might pet idk https://t.co/Avq4awulqk | 5 | 10 | None | |
| 1630 | 676864501615042560 | 808 | 2294 | 2015-12-15 20:40:47 | Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK | 10 | 10 | Ash | |
| 1631 | 676821958043033607 | 17605 | 25124 | 2015-12-15 17:51:44 | Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb | 11 | 10 | None | |
| 1632 | 676819651066732545 | 741 | 1957 | 2015-12-15 17:42:34 | Watch out Airbud. This pupper is also good at the sports. 12/10 I'm thinking D1 https://t.co/1HrFdo7M0C | 12 | 10 | None | pupper |
| 1633 | 676811746707918848 | 469 | 1536 | 2015-12-15 17:11:09 | Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD | 9 | 10 | Penny | |
| 1634 | 676776431406465024 | 2249 | 5405 | 2015-12-15 14:50:49 | When someone yells "cops!" at a party and you gotta get your drunk friend out of there. 10/10 https://t.co/4rMZi5Ca1k | 10 | 10 | None | |
| 1635 | 676617503762681856 | 1108 | 3149 | 2015-12-15 04:19:18 | I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh | 13 | 10 | None | pupper |
| 1636 | 676613908052996102 | 219 | 1183 | 2015-12-15 04:05:01 | This is the saddest/sweetest/best picture I've been sent. 12/10 😢🐶 https://t.co/vQ2Lw1BLBF | 12 | 10 | NaN | |
| 1637 | 676606785097199616 | 490 | 2039 | 2015-12-15 03:36:42 | *screeches for a sec and then faints* 12/10 https://t.co/N5QL4ySBEx | 12 | 10 | None | |
| 1638 | 676603393314578432 | 440 | 1280 | 2015-12-15 03:23:14 | This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr | 9 | 10 | Godzilla | pupper |
| 1639 | 676593408224403456 | 2410 | 4954 | 2015-12-15 02:43:33 | This pupper loves leaves. 11/10 for committed leaf lover https://t.co/APvLqbEhkF | 11 | 10 | None | pupper |
| 1640 | 676590572941893632 | 142 | 1001 | 2015-12-15 02:32:17 | After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you | 7 | 10 | None | |
| 1641 | 676588346097852417 | 896 | 2533 | 2015-12-15 02:23:26 | This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT | 5 | 10 | Bubbles | |
| 1642 | 676582956622721024 | 312 | 1310 | 2015-12-15 02:02:01 | Meet Vinnie. He's having fun while being safe. Well not a lot of fun, but definitely safe, and that's important 8/10 https://t.co/vZYtynZZlH | 8 | 10 | Vinnie | |
| 1643 | 676575501977128964 | 1254 | 2807 | 2015-12-15 01:32:24 | This pupper is very passionate about Christmas. Wanted to give the tree a hug. So cute. 8/10 https://t.co/NsGyECJuq7 | 8 | 10 | None | pupper |
| 1644 | 676533798876651520 | 621 | 2025 | 2015-12-14 22:46:41 | ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ | 12 | 10 | None | |
| 1645 | 676496375194980353 | 602 | 1641 | 2015-12-14 20:17:59 | Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX | 9 | 10 | Griffin | |
| 1646 | 676470639084101634 | 5224 | 12616 | 2015-12-14 18:35:43 | Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau | 11 | 10 | None | pupper |
| 1647 | 676440007570247681 | 748 | 1863 | 2015-12-14 16:34:00 | Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai | 11 | 10 | None | |
| 1648 | 676430933382295552 | 385 | 1526 | 2015-12-14 15:57:56 | Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr | 10 | 10 | Duke | |
| 1649 | 676263575653122048 | 609 | 2243 | 2015-12-14 04:52:55 | All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 | 10 | 10 | None | pupper |
| 1650 | 676237365392908289 | 331 | 1335 | 2015-12-14 03:08:46 | Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ | 8 | 10 | Winston | |
| 1651 | 676219687039057920 | 31989 | 67100 | 2015-12-14 01:58:31 | This is Kenneth. He's stuck in a bubble. 10/10 hang in there Kenneth https://t.co/uQt37xlYMJ | 10 | 10 | Kenneth | |
| 1652 | 676215927814406144 | 661 | 1881 | 2015-12-14 01:43:35 | This is Herm. He just wants to be like the other dogs. Sneaky tongue slip. Super fuzzy. 9/10 would cuddle firmly https://t.co/tg8h9lzCHv | 9 | 10 | Herm | |
| 1653 | 676191832485810177 | 1145 | 2478 | 2015-12-14 00:07:50 | These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC | 10 | 10 | None | |
| 1654 | 676146341966438401 | 744 | 2077 | 2015-12-13 21:07:04 | This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu | 10 | 10 | Bert | |
| 1655 | 676121918416756736 | 1297 | 2335 | 2015-12-13 19:30:01 | Here we are witnessing a very excited dog. Clearly has no control over neck movements. 8/10 would still pet https://t.co/ICNIjSkrXs | 8 | 10 | None | |
| 1656 | 676101918813499392 | 1284 | 3042 | 2015-12-13 18:10:33 | Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH | 11 | 10 | Striker | |
| 1657 | 676098748976615425 | 1623 | 3279 | 2015-12-13 17:57:57 | Extremely rare pup here. Very religious. Always praying. Too many legs. Not overwhelmingly fluffy. Won't bark. 3/10 https://t.co/REyE5YKVBb | 3 | 10 | None | |
| 1658 | 676089483918516224 | 483 | 1431 | 2015-12-13 17:21:08 | "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp | 9 | 10 | None | |
| 1659 | 675898130735476737 | 653 | 1774 | 2015-12-13 04:40:46 | I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O | 10 | 10 | None | pupper |
| 1660 | 675891555769696257 | 976 | 2297 | 2015-12-13 04:14:39 | This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp | 6 | 10 | Donny | |
| 1661 | 675888385639251968 | 1067 | 2581 | 2015-12-13 04:02:03 | Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa | 10 | 10 | None | |
| 1662 | 675878199931371520 | 1570 | 4531 | 2015-12-13 03:21:34 | Ok, I'll admit this is a pretty adorable bunny hopping towards the ocean but please only send in dogs... 11/10 https://t.co/sfsVCGIipI | 11 | 10 | None | |
| 1663 | 675870721063669760 | 632 | 1783 | 2015-12-13 02:51:51 | & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 | 11 | 10 | None | |
| 1664 | 675853064436391936 | 1460 | 2927 | 2015-12-13 01:41:41 | Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw | 11 | 10 | None | |
| 1665 | 675849018447167488 | 172 | 1027 | 2015-12-13 01:25:37 | This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you | 9 | 10 | None | |
| 1666 | 675845657354215424 | 1000 | 2477 | 2015-12-13 01:12:15 | This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG | 10 | 10 | Pepper | pupper |
| 1667 | 675822767435051008 | 591 | 1652 | 2015-12-12 23:41:18 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk | 10 | 10 | None | |
| 1668 | 675820929667219457 | 260 | 1140 | 2015-12-12 23:34:00 | Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s | 11 | 10 | None | |
| 1669 | 675798442703122432 | 3787 | 11101 | 2015-12-12 22:04:39 | This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 | 10 | 10 | Bernie | |
| 1670 | 675781562965868544 | 537 | 1750 | 2015-12-12 20:57:34 | Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 | 11 | 10 | Buddah | |
| 1671 | 675740360753160193 | 388 | 1257 | 2015-12-12 18:13:51 | Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 | 12 | 10 | None | pupper |
| 1672 | 675710890956750848 | 928 | 2046 | 2015-12-12 16:16:45 | This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 | 12 | 10 | Lenny | |
| 1673 | 675707330206547968 | 771 | 2154 | 2015-12-12 16:02:36 | We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0 | 11 | 10 | None | |
| 1674 | 675706639471788032 | 106 | 693 | 2015-12-12 15:59:51 | This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI | 10 | 10 | NaN | |
| 1675 | 675534494439489536 | 470 | 1953 | 2015-12-12 04:35:48 | Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj | 11 | 10 | NaN | |
| 1676 | 675531475945709568 | 428 | 1276 | 2015-12-12 04:23:49 | This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn | 10 | 10 | Ellie | |
| 1677 | 675522403582218240 | 316 | 1122 | 2015-12-12 03:47:46 | Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 | 10 | 10 | Sammy | |
| 1678 | 675517828909424640 | 507 | 1414 | 2015-12-12 03:29:35 | 12/10 stay woke https://t.co/XDiQw4Akiw | 12 | 10 | None | |
| 1679 | 675501075957489664 | 6485 | 18482 | 2015-12-12 02:23:01 | I shall call him squishy and he shall be mine, and he shall be my squishy. 13/10 https://t.co/WId5lxNdPH | 13 | 10 | None | |
| 1680 | 675497103322386432 | 1443 | 3397 | 2015-12-12 02:07:14 | Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC | 11 | 10 | Reggie | |
| 1681 | 675489971617296384 | 672 | 1406 | 2015-12-12 01:38:53 | RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn | 10 | 10 | None | |
| 1682 | 675483430902214656 | 1081 | 1985 | 2015-12-12 01:12:54 | Rare shielded battle dog here. Very happy about abundance of lettuce. Painfully slow fetcher. Still petable. 5/10 https://t.co/C3tlKVq7eO | 5 | 10 | None | |
| 1683 | 675432746517426176 | 627 | 1623 | 2015-12-11 21:51:30 | Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG | 12 | 10 | None | |
| 1684 | 675372240448454658 | 563 | 1838 | 2015-12-11 17:51:04 | The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju | 13 | 10 | None | |
| 1685 | 675362609739206656 | 262 | 1136 | 2015-12-11 17:12:48 | This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn | 12 | 10 | Daisy | |
| 1686 | 675354435921575936 | 18963 | 35178 | 2015-12-11 16:40:19 | Everyone needs to watch this. 13/10 https://t.co/Bb3xnpsWBC | 13 | 10 | None | |
| 1687 | 675349384339542016 | 2532 | 4237 | 2015-12-11 16:20:15 | Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP | 13 | 10 | None | |
| 1688 | 675334060156301312 | 1436 | 3007 | 2015-12-11 15:19:21 | Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs | 12 | 10 | None | pupper |
| 1689 | 675166823650848770 | 1795 | 3920 | 2015-12-11 04:14:49 | This is Arnold. He broke his leg saving a handicapped child from a forest fire. True hero. 10/10 inspirational dog https://t.co/bijCeHeX4C | 10 | 10 | Arnold | |
| 1690 | 675153376133427200 | 2734 | 6072 | 2015-12-11 03:21:23 | What kind of person sends in a picture without a dog in it? 1/10 just because that's a nice table https://t.co/RDXCfk8hK0 | 1 | 10 | None | |
| 1691 | 675149409102012420 | 1878 | 4037 | 2015-12-11 03:05:37 | holy shit 12/10 https://t.co/p6O8X93bTQ | 12 | 10 | None | |
| 1692 | 675147105808306176 | 273 | 1026 | 2015-12-11 02:56:28 | When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS | 10 | 10 | None | |
| 1693 | 675146535592706048 | 349 | 1300 | 2015-12-11 02:54:12 | This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF | 7 | 10 | Coops | |
| 1694 | 675145476954566656 | 1011 | 2305 | 2015-12-11 02:49:59 | What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs | 9 | 10 | None | |
| 1695 | 675135153782571009 | 542 | 1398 | 2015-12-11 02:08:58 | This is Steven. He got locked outside. Damn it Steven. 5/10 nice grill tho https://t.co/zf7Sxxjfp3 | 5 | 10 | Steven | |
| 1696 | 675113801096802304 | 877 | 2120 | 2015-12-11 00:44:07 | Meet Zuzu. He just graduated college. Astute pupper. Needs 2 leashes to contain him. Wasn't ready for the pic. 10/10 https://t.co/2H5SKmk0k7 | 10 | 10 | Zuzu | pupper |
| 1697 | 675111688094527488 | 283 | 1042 | 2015-12-11 00:35:44 | Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 | 8 | 10 | Oliver | |
| 1698 | 675109292475830276 | 1259 | 3006 | 2015-12-11 00:26:12 | C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 | 9 | 10 | NaN | |
| 1699 | 675047298674663426 | 366 | 1141 | 2015-12-10 20:19:52 | This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI | 11 | 10 | NaN | |
| 1700 | 675015141583413248 | 1335 | 2918 | 2015-12-10 18:12:05 | Meet Moe. He's a golden Fetty Woof. Doesn't respect the authorities. Might own a motorhome? 10/10 revolutionary pup https://t.co/JAncIdNp8G | 10 | 10 | Moe | |
| 1701 | 675006312288268288 | 252 | 1057 | 2015-12-10 17:37:00 | Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO | 10 | 10 | Mollie | pupper |
| 1702 | 675003128568291329 | 517 | 1672 | 2015-12-10 17:24:21 | Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 | 12 | 10 | Laela | |
| 1703 | 674999807681908736 | 1232 | 2433 | 2015-12-10 17:11:09 | Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 | 13 | 10 | None | |
| 1704 | 674805413498527744 | 391 | 934 | 2015-12-10 04:18:42 | When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 | 10 | 10 | None | |
| 1705 | 674800520222154752 | 949 | 3240 | 2015-12-10 03:59:15 | This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B | 11 | 10 | Tedders | |
| 1706 | 674793399141146624 | 1225 | 2697 | 2015-12-10 03:30:58 | I have found another. 13/10 https://t.co/HwroPYv8pY | 13 | 10 | None | |
| 1707 | 674790488185167872 | 278 | 1180 | 2015-12-10 03:19:24 | ER... MER... GERD 13/10 https://t.co/L1puJISV1a | 13 | 10 | None | |
| 1708 | 674788554665512960 | 230 | 871 | 2015-12-10 03:11:43 | Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb | 9 | 10 | Maggie | |
| 1709 | 674781762103414784 | 1335 | 2169 | 2015-12-10 02:44:43 | Bedazzled pup here. Fashionable af. Super yellow. Looks hella fluffy. Webbed paws for efficient fetching. 8/10 https://t.co/ot8yMUGodj | 8 | 10 | None | |
| 1710 | 674774481756377088 | 532 | 1213 | 2015-12-10 02:15:47 | This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm | 11 | 10 | Superpup | pupper |
| 1711 | 674767892831932416 | 883 | 1981 | 2015-12-10 01:49:36 | This pup was carefully tossed to make it look like she's riding that horse. I have no words this is fabulous. 12/10 https://t.co/Bob33W4sfD | 12 | 10 | None | |
| 1712 | 674764817387900928 | 263 | 852 | 2015-12-10 01:37:23 | These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr | 10 | 10 | None | |
| 1713 | 674754018082705410 | 488 | 1456 | 2015-12-10 00:54:28 | Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc | 12 | 10 | None | |
| 1714 | 674752233200820224 | 516 | 1580 | 2015-12-10 00:47:23 | Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO | 12 | 10 | None | |
| 1715 | 674743008475090944 | 607 | 1514 | 2015-12-10 00:10:43 | This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT | 10 | 10 | Sophie | |
| 1716 | 674742531037511680 | 55 | 527 | 2015-12-10 00:08:50 | Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you | 11 | 10 | None | |
| 1717 | 674739953134403584 | 437 | 1194 | 2015-12-09 23:58:35 | "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc | 11 | 10 | None | |
| 1718 | 674737130913071104 | 103 | 693 | 2015-12-09 23:47:22 | Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 & 4/10 https://t.co/KNfLnYPmYh | 10 | 10 | Rufio | pupper |
| 1719 | 674690135443775488 | 510 | 1237 | 2015-12-09 20:40:38 | Meet Patrick. He's an exotic pup. Jumps great distances for a dog. Always gets injured when I toss him a ball. 3/10 https://t.co/Unz1uNrOzo | 3 | 10 | Patrick | |
| 1720 | 674670581682434048 | 729 | 1751 | 2015-12-09 19:22:56 | Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm | 9 | 10 | Jeb | |
| 1721 | 674664755118911488 | 276 | 994 | 2015-12-09 18:59:46 | This is Rodman. He's getting destroyed by the surfs. Valiant effort though. 10/10 better than most puppers probably https://t.co/S8wCLemrNb | 10 | 10 | Rodman | |
| 1722 | 674646392044941312 | 557 | 1533 | 2015-12-09 17:46:48 | Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 https://t.co/YPfw7oahbD | 5 | 10 | None | |
| 1723 | 674644256330530816 | 311 | 1111 | 2015-12-09 17:38:19 | When you see sophomores in high school driving. 11/10 https://t.co/m6aC8d1Kzp | 11 | 10 | None | |
| 1724 | 674638615994089473 | 650 | 1806 | 2015-12-09 17:15:54 | This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL | 12 | 10 | None | pupper |
| 1725 | 674632714662858753 | 637 | 1617 | 2015-12-09 16:52:27 | Rare submerged pup here. Holds breath for a long time. Frowning because that spoon ignores him. 5/10 would still pet https://t.co/EJzzNHE8bE | 5 | 10 | None | |
| 1726 | 674606911342424069 | 115 | 1013 | 2015-12-09 15:09:55 | The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass | 13 | 10 | None | |
| 1727 | 674468880899788800 | 2275 | 6676 | 2015-12-09 06:01:26 | This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx | 13 | 10 | Louis | |
| 1728 | 674447403907457024 | 393 | 1137 | 2015-12-09 04:36:06 | This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f | 10 | 10 | None | pupper |
| 1729 | 674436901579923456 | 426 | 1198 | 2015-12-09 03:54:22 | Meet Bailey. She plays with her food. Very childish. Doesn't even need a battle helmet smh. Still cute though. 9/10 https://t.co/CLEOjxhTEx | 9 | 10 | Bailey | |
| 1730 | 674422304705744896 | 592 | 1536 | 2015-12-09 02:56:22 | This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk | 12 | 10 | Ava | |
| 1731 | 674416750885273600 | 157 | 731 | 2015-12-09 02:34:18 | This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY | 10 | 10 | Jonah | |
| 1732 | 674410619106390016 | 515 | 1289 | 2015-12-09 02:09:56 | This is Lenny. He wants to be a sprinkler. 10/10 you got this Lenny https://t.co/CZ0YaB40Hn | 10 | 10 | Lenny | |
| 1733 | 674394782723014656 | 635 | 1607 | 2015-12-09 01:07:00 | This is Gary. He's a hide and seek champion. Second only to Kony. 8/10 Gary has a gift https://t.co/cAlB4XCcsi | 8 | 10 | Gary | |
| 1734 | 674372068062928900 | 346 | 931 | 2015-12-08 23:36:44 | Meet Chesney. On the outside he stays calm & collected. On the inside he's having a complete mental breakdown. 10/10 https://t.co/G4m0TFY9uc | 10 | 10 | Chesney | |
| 1735 | 674330906434379776 | 83 | 602 | 2015-12-08 20:53:11 | 13/10\n@ABC7 | 13 | 10 | None | |
| 1736 | 674318007229923329 | 570 | 1516 | 2015-12-08 20:01:55 | This is Lennon. He's in quite the predicament. 8/10 hang in there pupper https://t.co/7mf8XXPAZv | 8 | 10 | Lennon | pupper |
| 1737 | 674307341513269249 | 7641 | 12129 | 2015-12-08 19:19:32 | This is life-changing. 12/10 https://t.co/SroTpI6psB | 12 | 10 | NaN | |
| 1738 | 674291837063053312 | 6533 | 15817 | 2015-12-08 18:17:56 | This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK | 11 | 10 | Kenny | |
| 1739 | 674271431610523648 | 800 | 1682 | 2015-12-08 16:56:51 | "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it | 10 | 10 | None | |
| 1740 | 674269164442398721 | 255 | 961 | 2015-12-08 16:47:50 | This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N | 8 | 10 | Bob | |
| 1741 | 674265582246694913 | 936 | 1766 | 2015-12-08 16:33:36 | This is Henry. He's a shit dog. Short pointy ears. Leaves trail of pee. Not fluffy. Doesn't come when called. 2/10 https://t.co/Pu9RhfHDEQ | 2 | 10 | Henry | |
| 1742 | 674262580978937856 | 498 | 1391 | 2015-12-08 16:21:41 | This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 | 9 | 10 | Gus | pupper |
| 1743 | 674255168825880576 | 619 | 1581 | 2015-12-08 15:52:13 | Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx | 10 | 10 | Bobbay | |
| 1744 | 674082852460433408 | 186 | 804 | 2015-12-08 04:27:30 | This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU | 11 | 10 | NaN | |
| 1745 | 674075285688614912 | 316 | 1047 | 2015-12-08 03:57:26 | Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 | 11 | 10 | Mitch | |
| 1746 | 674063288070742018 | 2450 | 6769 | 2015-12-08 03:09:46 | This is Earl. Earl is lost. Someone help Earl. He has no tags. Just trying to get home. 5/10 hang in there Earl https://t.co/1ZbfqAVDg6 | 5 | 10 | Earl | |
| 1747 | 674053186244734976 | 1441 | 3576 | 2015-12-08 02:29:37 | This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 | 10 | 10 | Stanley | |
| 1748 | 674051556661161984 | 530 | 1564 | 2015-12-08 02:23:09 | This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk | 10 | 10 | Lucy | |
| 1749 | 674045139690631169 | 710 | 1520 | 2015-12-08 01:57:39 | Herd of wild dogs here. Not sure what they're trying to do. No real goals in life. 3/10 find your purpose puppers https://t.co/t5ih0VrK02 | 3 | 10 | None | |
| 1750 | 674042553264685056 | 142 | 772 | 2015-12-08 01:47:22 | Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX | 12 | 10 | None | |
| 1751 | 674038233588723717 | 456 | 1176 | 2015-12-08 01:30:12 | This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk | 12 | 10 | Kaiya | pupper |
| 1752 | 674036086168010753 | 240 | 906 | 2015-12-08 01:21:40 | Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP | 9 | 10 | Daisy | |
| 1753 | 674024893172875264 | 1360 | 1914 | 2015-12-08 00:37:11 | When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ | 10 | 10 | None | |
| 1754 | 674019345211760640 | 340 | 1208 | 2015-12-08 00:15:09 | This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs | 10 | 10 | Acro | |
| 1755 | 674014384960745472 | 714 | 1676 | 2015-12-07 23:55:26 | Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD | 11 | 10 | Aiden | |
| 1756 | 674008982932058114 | 393 | 1297 | 2015-12-07 23:33:58 | This pup is sad bc he didn't get to be the toy car. Also he has shitty money management skills. 10/10 still cute tho https://t.co/PiSXXZjDSJ | 10 | 10 | None | |
| 1757 | 673956914389192708 | 1069 | 2091 | 2015-12-07 20:07:04 | This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd | 10 | 10 | NaN | pupper |
| 1758 | 673919437611909120 | 401 | 1251 | 2015-12-07 17:38:09 | This is Obie. He is on guard watching for evildoers from the comfort of his pumpkin. Very brave pupper. 11/10 https://t.co/cdwPTsGEAb | 11 | 10 | Obie | pupper |
| 1759 | 673906403526995968 | 1799 | 3406 | 2015-12-07 16:46:21 | Guys I'm getting real tired of this. We only rate dogs. Please don't send in other things like this Bulbasaur. 3/10 https://t.co/t5rQHl6W8M | 3 | 10 | None | |
| 1760 | 673887867907739649 | 274 | 994 | 2015-12-07 15:32:42 | When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd | 10 | 10 | None | |
| 1761 | 673716320723169284 | 843 | 3289 | 2015-12-07 04:11:02 | The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you | 1 | 10 | None | |
| 1762 | 673715861853720576 | 2303 | 3815 | 2015-12-07 04:09:13 | This is a heavily opinionated dog. Loves walls. Nobody knows how the hair works. Always ready for a kiss. 4/10 https://t.co/dFiaKZ9cDl | 4 | 10 | NaN | |
| 1763 | 673711475735838725 | 325 | 1114 | 2015-12-07 03:51:47 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH | 10 | 10 | None | |
| 1764 | 673709992831262724 | 306 | 908 | 2015-12-07 03:45:53 | I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 | 12 | 10 | None | |
| 1765 | 673708611235921920 | 315 | 1153 | 2015-12-07 03:40:24 | This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 | 12 | 10 | Riley | |
| 1766 | 673707060090052608 | 434 | 1177 | 2015-12-07 03:34:14 | This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM | 10 | 10 | Raymond | pupper |
| 1767 | 673705679337693185 | 439 | 1337 | 2015-12-07 03:28:45 | This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd | 8 | 10 | Dot | |
| 1768 | 673700254269775872 | 638 | 1532 | 2015-12-07 03:07:12 | Large blue dog here. Cool shades. Flipping us off w both hands. Obviously a preteen. 3/10 for rude blue preteen pup https://t.co/mcPd5AFfhA | 3 | 10 | None | |
| 1769 | 673697980713705472 | 2165 | 4067 | 2015-12-07 02:58:09 | This is Pickles. She's a tiny pointy pupper. Average walker. Very skeptical of wet leaf. 8/10 https://t.co/lepRCaGcgw | 8 | 10 | Pickles | pupper |
| 1770 | 673689733134946305 | 700 | 1855 | 2015-12-07 02:25:23 | When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe | 11 | 10 | None | |
| 1771 | 673688752737402881 | 534 | 1325 | 2015-12-07 02:21:29 | Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y | 9 | 10 | Larry | |
| 1772 | 673686845050527744 | 479 | 1544 | 2015-12-07 02:13:55 | This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E | 11 | 10 | George | |
| 1773 | 673680198160809984 | 521 | 1460 | 2015-12-07 01:47:30 | This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ | 13 | 10 | Shnuggles | |
| 1774 | 673662677122719744 | 397 | 1339 | 2015-12-07 00:37:52 | This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj | 12 | 10 | Kendall | |
| 1775 | 673656262056419329 | 265 | 769 | 2015-12-07 00:12:23 | This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We | 10 | 10 | Albert | pupper |
| 1776 | 673636718965334016 | 404 | 1194 | 2015-12-06 22:54:44 | This is a Lofted Aphrodisiac Terrier named Kip. Big fan of bed n breakfasts. Fits perfectly. 10/10 would pet firmly https://t.co/gKlLpNzIl3 | 10 | 10 | NaN | |
| 1777 | 673612854080196609 | 802 | 1691 | 2015-12-06 21:19:54 | This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 | 7 | 10 | Jeffri | pupper |
| 1778 | 673583129559498752 | 403 | 1273 | 2015-12-06 19:21:47 | This is Sandy. She loves her spot by the tree. Contemplating her true purpose in the universe. Wears socks. 11/10 https://t.co/JpoEvgbDug | 11 | 10 | Sandy | |
| 1779 | 673580926094458881 | 297 | 882 | 2015-12-06 19:13:01 | When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP | 8 | 10 | None | |
| 1780 | 673576835670777856 | 613 | 1482 | 2015-12-06 18:56:46 | Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w | 7 | 10 | None | |
| 1781 | 673363615379013632 | 338 | 1088 | 2015-12-06 04:49:31 | This little pupper can't wait for Christmas. He's pretending to be a present. S'cute. 11/10 twenty more days 🎁🎄🐶 https://t.co/m8r9rbcgX4 | 11 | 10 | None | pupper |
| 1782 | 673359818736984064 | 728 | 1558 | 2015-12-06 04:34:25 | This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ | 8 | 10 | Steve | |
| 1783 | 673355879178194945 | 652 | 1606 | 2015-12-06 04:18:46 | This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ | 11 | 10 | Koda | |
| 1784 | 673352124999274496 | 597 | 1761 | 2015-12-06 04:03:51 | *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ | 12 | 10 | None | |
| 1785 | 673350198937153538 | 229 | 784 | 2015-12-06 03:56:12 | This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u | 9 | 10 | Bella | |
| 1786 | 673345638550134785 | 1422 | 2700 | 2015-12-06 03:38:05 | This is Gerald. He's a fluffy lil yellow pup. Always looks like his favorite team just lost on a hail mary. 7/10 https://t.co/GpSkpN8kXS | 7 | 10 | Gerald | |
| 1787 | 673343217010679808 | 289 | 1038 | 2015-12-06 03:28:27 | IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW | 11 | 10 | None | |
| 1788 | 673342308415348736 | 649 | 1362 | 2015-12-06 03:24:51 | This is Django. He's a skilled assassin pupper. 10/10 https://t.co/w0YTuiRd1a | 10 | 10 | Django | pupper |
| 1789 | 673320132811366400 | 8705 | 14441 | 2015-12-06 01:56:44 | This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf | 11 | 10 | Frankie | |
| 1790 | 673317986296586240 | 293 | 924 | 2015-12-06 01:48:12 | Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng | 10 | 10 | None | |
| 1791 | 673295268553605120 | 3484 | 8046 | 2015-12-06 00:17:55 | Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg | 8 | 10 | Eve | pupper |
| 1792 | 673270968295534593 | 400 | 1134 | 2015-12-05 22:41:22 | This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum | 11 | 10 | Mac | |
| 1793 | 673240798075449344 | 798 | 1510 | 2015-12-05 20:41:29 | Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 | 6 | 10 | None | |
| 1794 | 673213039743795200 | 929 | 2410 | 2015-12-05 18:51:11 | This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI | 10 | 10 | Dexter | |
| 1795 | 673148804208660480 | 688 | 1822 | 2015-12-05 14:35:56 | This is Fletcher. He's had a ruff night. No more Fireball for Fletcher. 8/10 it'll be over soon pupper https://t.co/tA4WpkI2cw | 8 | 10 | Fletcher | pupper |
| 1796 | 672997845381865473 | 786 | 2092 | 2015-12-05 04:36:04 | Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg | 12 | 10 | Kenzie | |
| 1797 | 672995267319328768 | 328 | 1001 | 2015-12-05 04:25:50 | This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq | 8 | 10 | Pumpkin | |
| 1798 | 672988786805112832 | 314 | 1039 | 2015-12-05 04:00:04 | This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG | 10 | 10 | Schnozz | pupper |
| 1799 | 672984142909456390 | 593 | 1338 | 2015-12-05 03:41:37 | Very happy pup here. Always smiling. Loves his little leaf. Carries it everywhere with him. 9/10 https://t.co/81BCQAyvcs | 9 | 10 | None | |
| 1800 | 672980819271634944 | 1079 | 1930 | 2015-12-05 03:28:25 | Extraordinary dog here. Looks large. Just a head. No body. Rather intrusive. 5/10 would still pet https://t.co/ufHWUFA9Pu | 5 | 10 | None | |
| 1801 | 672975131468300288 | 1015 | 1813 | 2015-12-05 03:05:49 | This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 | 10 | 10 | Chuckles | pupper |
| 1802 | 672970152493887488 | 391 | 1019 | 2015-12-05 02:46:02 | This is Chet. He's having a hard time. Really struggling. 7/10 hang in there pupper https://t.co/eb4ta0xtnd | 7 | 10 | Chet | pupper |
| 1803 | 672968025906282496 | 602 | 1405 | 2015-12-05 02:37:35 | This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ | 11 | 10 | Gustaf | |
| 1804 | 672964561327235073 | 701 | 1530 | 2015-12-05 02:23:49 | This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT | 10 | 10 | Terry | |
| 1805 | 672902681409806336 | 550 | 1452 | 2015-12-04 22:17:55 | This is Jimison. He's stuck in a pot. Damn it Jimison. 9/10 https://t.co/KpLyca3o3E | 9 | 10 | Jimison | |
| 1806 | 672898206762672129 | 459 | 944 | 2015-12-04 22:00:08 | This is Cheryl AKA Queen Pupper of the Skies. Experienced fighter pilot. Much skill. True hero. 11/10 https://t.co/i4XJEWwdsp | 11 | 10 | Cheryl | pupper |
| 1807 | 672884426393653248 | 897 | 1661 | 2015-12-04 21:05:23 | Marvelous dog here. Rad ears. Not very soft. Large tumor on nose. Has a pet rock. Good w kids. 6/10 overall neat pup https://t.co/g5YkRqP0dg | 6 | 10 | None | |
| 1808 | 672877615439593473 | 405 | 1096 | 2015-12-04 20:38:19 | This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 | 8 | 10 | Oscar | |
| 1809 | 672834301050937345 | 623 | 1398 | 2015-12-04 17:46:12 | This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN | 10 | 10 | Ed | |
| 1810 | 672828477930868736 | 533 | 1343 | 2015-12-04 17:23:04 | This is Jerry. He's a Timbuk Slytherin. Eats his pizza from the side first. Crushed that cup with his bare paws 9/10 https://t.co/fvxHL6cRRs | 9 | 10 | Jerry | |
| 1811 | 672640509974827008 | 348 | 1032 | 2015-12-04 04:56:09 | This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M | 9 | 10 | Leonidas | |
| 1812 | 672622327801233409 | 542 | 1377 | 2015-12-04 03:43:54 | This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ | 12 | 10 | None | pupper |
| 1813 | 672614745925664768 | 644 | 1302 | 2015-12-04 03:13:46 | This is Norman. Doesn't bark much. Very docile pup. Up to date on current events. Overall nifty pupper. 6/10 https://t.co/ntxsR98f3U | 6 | 10 | Norman | pupper |
| 1814 | 672609152938721280 | 424 | 1180 | 2015-12-04 02:51:33 | This is Caryl. Likes to get in the microwave. 9/10 damn it Caryl https://t.co/YAVwvNaois | 9 | 10 | Caryl | |
| 1815 | 672604026190569472 | 445 | 1188 | 2015-12-04 02:31:10 | This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe | 11 | 10 | NaN | |
| 1816 | 672594978741354496 | 661 | 1411 | 2015-12-04 01:55:13 | Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz | 9 | 10 | Scott | pupper |
| 1817 | 672591762242805761 | 367 | 1014 | 2015-12-04 01:42:26 | This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w | 10 | 10 | Taz | |
| 1818 | 672591271085670400 | 207 | 782 | 2015-12-04 01:40:29 | Lots of pups here. All are Judea Hazelnuts. Exceptionally portable. 8/10 for all https://t.co/Pa8EmpDCuI | 8 | 10 | None | |
| 1819 | 672538107540070400 | 404 | 1089 | 2015-12-03 22:09:14 | Meet Darby. He's a Fiscal Tutankhamen Waxbeard. Really likes steak. 7/10 https://t.co/rSndxTL0Ap | 7 | 10 | Darby | |
| 1820 | 672523490734551040 | 189 | 696 | 2015-12-03 21:11:09 | When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi | 10 | 10 | None | |
| 1821 | 672488522314567680 | 482 | 1187 | 2015-12-03 18:52:12 | This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK | 10 | 10 | Jackie | |
| 1822 | 672482722825261057 | 665 | 1221 | 2015-12-03 18:29:09 | This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt | 10 | 10 | NaN | |
| 1823 | 672481316919734272 | 137 | 757 | 2015-12-03 18:23:34 | Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP | 12 | 10 | Jazz | pupper |
| 1824 | 672475084225949696 | 770 | 1529 | 2015-12-03 17:58:48 | This is Buddy. He's photogenic af. Loves to sexily exit pond. Very striped. Comes with shield. 8/10 would pet well https://t.co/mYhQvAdV4f | 8 | 10 | Buddy | |
| 1825 | 672466075045466113 | 598 | 1447 | 2015-12-03 17:23:00 | This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 | 12 | 10 | Franq | |
| 1826 | 672272411274932228 | 3677 | 6888 | 2015-12-03 04:33:27 | This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 | 11 | 10 | Pippin | |
| 1827 | 672267570918129665 | 666 | 1588 | 2015-12-03 04:14:13 | When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ | 10 | 10 | None | |
| 1828 | 672264251789176834 | 383 | 1212 | 2015-12-03 04:01:02 | This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV | 10 | 10 | Kreg | |
| 1829 | 672256522047614977 | 1699 | 2999 | 2015-12-03 03:30:19 | Mighty rare dogs here. Long smooth necks. Great knees. Travel in squads. 1 out of every 14 is massive. 8/10 for all https://t.co/PoMKKnKpRd | 8 | 10 | None | |
| 1830 | 672254177670729728 | 800 | 1515 | 2015-12-03 03:21:00 | This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 | 11 | 10 | Rolf | pupper |
| 1831 | 672248013293752320 | 656 | 1833 | 2015-12-03 02:56:30 | 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k | 10 | 10 | None | |
| 1832 | 672245253877968896 | 169 | 733 | 2015-12-03 02:45:32 | Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr | 12 | 10 | Snickers | |
| 1833 | 672239279297454080 | 347 | 953 | 2015-12-03 02:21:48 | This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 | 7 | 10 | Ridley | |
| 1834 | 672231046314901505 | 1089 | 1956 | 2015-12-03 01:49:05 | Exotic underwater dog here. Very shy. Wont return tennis balls I toss him. Never been petted. 5/10 I bet he's soft https://t.co/WH7Nzc5IBA | 5 | 10 | None | |
| 1835 | 672222792075620352 | 231 | 833 | 2015-12-03 01:16:17 | This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O | 9 | 10 | Cal | |
| 1836 | 672205392827572224 | 1270 | 2414 | 2015-12-03 00:07:09 | This is Opal. He's a Royal John Coctostan. Ready for transport. Basically indestructible. 9/10 good pupper https://t.co/yRBQF9OS7D | 9 | 10 | Opal | pupper |
| 1837 | 672169685991993344 | 408 | 1074 | 2015-12-02 21:45:16 | This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO | 10 | 10 | Bradley | |
| 1838 | 672160042234327040 | 395 | 918 | 2015-12-02 21:06:56 | This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W | 8 | 10 | Bubba | pupper |
| 1839 | 672139350159835138 | 792 | 1876 | 2015-12-02 19:44:43 | This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ | 12 | 10 | None | |
| 1840 | 672125275208069120 | 1253 | 2578 | 2015-12-02 18:48:47 | This is just impressive I have nothing else to say. 11/10 https://t.co/LquQZiZjJP | 11 | 10 | NaN | |
| 1841 | 672095186491711488 | 395 | 1063 | 2015-12-02 16:49:14 | This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe | 9 | 10 | Tuco | |
| 1842 | 672082170312290304 | 402 | 1003 | 2015-12-02 15:57:30 | This is Patch. He wants to be a Christmas tree. 11/10 https://t.co/WTJtf9O8Jg | 11 | 10 | Patch | |
| 1843 | 672068090318987265 | 564 | 1389 | 2015-12-02 15:01:33 | Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a | 7 | 10 | Gizmo | |
| 1844 | 671896809300709376 | 4519 | 9016 | 2015-12-02 03:40:57 | This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH | 10 | 10 | Lola | |
| 1845 | 671891728106971137 | 618 | 1415 | 2015-12-02 03:20:45 | This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW | 11 | 10 | Mojo | |
| 1846 | 671882082306625538 | 1488 | 3693 | 2015-12-02 02:42:26 | This is Batdog. He's sleeping now but when he wakes up he'll fight crime and such. Great tongue. 11/10 for Batdog https://t.co/Clg16EVy9O | 11 | 10 | Batdog | |
| 1847 | 671879137494245376 | 748 | 1507 | 2015-12-02 02:30:43 | This is Brad. He's a chubby lil pup. Doesn't really need the food he's trying to reach. 5/10 you've had enough Brad https://t.co/vPXKSaNsbE | 5 | 10 | Brad | |
| 1848 | 671874878652489728 | 601 | 1330 | 2015-12-02 02:13:48 | This is Mia. She was specifically told not get on top of the hutch or play in the fridge. 10/10 what a rebel https://t.co/3J7wkwW4FG | 10 | 10 | Mia | |
| 1849 | 671866342182637568 | 548 | 1191 | 2015-12-02 01:39:53 | Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI | 10 | 10 | Dylan | |
| 1850 | 671855973984772097 | 502 | 977 | 2015-12-02 00:58:41 | Remarkable dog here. Walks on back legs really well. Looks extra soft. 8/10 would cuddle with https://t.co/gpWLdbposg | 8 | 10 | None | |
| 1851 | 671789708968640512 | 3811 | 7527 | 2015-12-01 20:35:22 | This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq | 13 | 10 | NaN | |
| 1852 | 671768281401958400 | 572 | 1269 | 2015-12-01 19:10:13 | When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S | 10 | 10 | None | |
| 1853 | 671763349865160704 | 999 | 1788 | 2015-12-01 18:50:38 | Say hello to Mark. He's a good dog. Always ready to go for a walk. Excellent posture. 9/10 keep it up Mark https://t.co/m9NleZ1i80 | 9 | 10 | Mark | |
| 1854 | 671744970634719232 | 841 | 1430 | 2015-12-01 17:37:36 | Very fit horned dog here. Looks powerful. Not phased by wind. Great beard. Big enough to ride? 6/10 would cuddle https://t.co/wwwYO9C9kl | 6 | 10 | None | |
| 1855 | 671743150407421952 | 248 | 779 | 2015-12-01 17:30:22 | This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 | 11 | 10 | NaN | |
| 1856 | 671735591348891648 | 819 | 1534 | 2015-12-01 17:00:19 | This is Oscar. He's ready for Christmas. 11/10 https://t.co/TON0Irzgwr | 11 | 10 | Oscar | |
| 1857 | 671729906628341761 | 4795 | 9119 | 2015-12-01 16:37:44 | I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt | 13 | 10 | None | |
| 1858 | 671561002136281088 | 7931 | 13679 | 2015-12-01 05:26:34 | This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU | 13 | 10 | NaN | |
| 1859 | 671550332464455680 | 229 | 967 | 2015-12-01 04:44:10 | After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes | 1 | 10 | None | |
| 1860 | 671547767500775424 | 658 | 1444 | 2015-12-01 04:33:59 | This is Marley. She chews shoes then feels extremely guilty about it and refuses to look at them. 10/10 https://t.co/f99MV0htAV | 10 | 10 | Marley | |
| 1861 | 671544874165002241 | 1145 | 2126 | 2015-12-01 04:22:29 | Interesting dog here. Very large. Purple. Manifests rainbows. Perfect teeth. No ears. Surprisingly knowledgable 6/10 https://t.co/QVaEMsB9tS | 6 | 10 | None | |
| 1862 | 671542985629241344 | 616 | 1166 | 2015-12-01 04:14:59 | This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF | 10 | 10 | JD | |
| 1863 | 671538301157904385 | 436 | 993 | 2015-12-01 03:56:22 | This is Baxter. He's very calm. Hasn't eaten in weeks tho. Not good at fetch. Never blinks. 8/10 would still pet https://t.co/fUuiyu2QTD | 8 | 10 | Baxter | |
| 1864 | 671536543010570240 | 441 | 1253 | 2015-12-01 03:49:23 | This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c | 9 | 10 | Reginald | |
| 1865 | 671533943490011136 | 631 | 1092 | 2015-12-01 03:39:03 | Super rare dog here. Spiffy mohawk. Sharp mouth. Shits eggs. Cool chariot wheel in background. 6/10 v confident pup https://t.co/pcx8jm1J1K | 6 | 10 | None | |
| 1866 | 671528761649688577 | 280 | 896 | 2015-12-01 03:18:27 | Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi | 10 | 10 | Jax | |
| 1867 | 671520732782923777 | 582 | 1499 | 2015-12-01 02:46:33 | Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF | 10 | 10 | Alejandro | |
| 1868 | 671518598289059840 | 319 | 1010 | 2015-12-01 02:38:04 | This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 | 9 | 10 | Scruffers | |
| 1869 | 671511350426865664 | 791 | 1734 | 2015-12-01 02:09:16 | Say hello to Hammond. He's just a wee lil pup. Jumps around a shit ton. 8/10 overall very good dog https://t.co/OgDF2ES3Q9 | 8 | 10 | Hammond | |
| 1870 | 671504605491109889 | 3866 | 7495 | 2015-12-01 01:42:28 | This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA | 11 | 10 | Charlie | |
| 1871 | 671497587707535361 | 481 | 980 | 2015-12-01 01:14:35 | This is Pip. He is a ship captain. Many years of experience sailing the treacherous open sea. 11/10 https://t.co/EY1uZJUGYJ | 11 | 10 | Pip | |
| 1872 | 671488513339211776 | 516 | 1073 | 2015-12-01 00:38:31 | This is Julius. He's a cool dog. Carries seashell everywhere. Rad segmented legs. Currently attacking castle. 8/10 https://t.co/CwUK5AIgeD | 8 | 10 | Julius | |
| 1873 | 671486386088865792 | 226 | 621 | 2015-12-01 00:30:04 | This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx | 10 | 10 | Malcolm | |
| 1874 | 671485057807351808 | 253 | 806 | 2015-12-01 00:24:48 | Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS | 11 | 10 | Penelope | |
| 1875 | 671390180817915904 | 805 | 1513 | 2015-11-30 18:07:47 | Striped dog here. Having fun playing on back. Sturdy paws. Looks like an organized Dalmatian. 7/10 would still pet https://t.co/U1mSS3Ykez | 7 | 10 | None | |
| 1876 | 671362598324076544 | 325 | 1193 | 2015-11-30 16:18:11 | This is Tanner. He accidentally dropped all his hard-earned Kohl's cash in the tub. 11/10 https://t.co/onC3uMpFF2 | 11 | 10 | Tanner | |
| 1877 | 671357843010908160 | 157 | 426 | 2015-11-30 15:59:17 | Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb | 9 | 10 | None | |
| 1878 | 671355857343524864 | 119 | 508 | 2015-11-30 15:51:24 | This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD | 10 | 10 | Lou | |
| 1879 | 671347597085433856 | 476 | 1031 | 2015-11-30 15:18:34 | This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH | 9 | 10 | Lola | |
| 1880 | 671186162933985280 | 241 | 788 | 2015-11-30 04:37:05 | This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt | 10 | 10 | Sparky | |
| 1881 | 671182547775299584 | 378 | 1193 | 2015-11-30 04:22:44 | This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu | 12 | 10 | None | |
| 1882 | 671166507850801152 | 390 | 931 | 2015-11-30 03:18:59 | This is Herm. It's his first day of potty training. He's doing great. You got this Herm. 10/10 stellar pup https://t.co/gFl60yFJ0w | 10 | 10 | Herm | |
| 1883 | 671163268581498880 | 1198 | 1763 | 2015-11-30 03:06:07 | Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX | 8 | 10 | None | |
| 1884 | 671159727754231808 | 89 | 401 | 2015-11-30 02:52:03 | This is Anthony. He just finished up his masters at Harvard. Unprofessional tattoos. Always looks perturbed. 5/10 https://t.co/iHLo9rGay1 | 5 | 10 | Anthony | |
| 1885 | 671154572044468225 | 241 | 769 | 2015-11-30 02:31:34 | Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 & 8/10 https://t.co/RcksaUrGNu | 11 | 10 | Holly | |
| 1886 | 671151324042559489 | 166 | 714 | 2015-11-30 02:18:39 | *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii | 12 | 10 | None | |
| 1887 | 671147085991960577 | 254 | 713 | 2015-11-30 02:01:49 | This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr | 9 | 10 | NaN | |
| 1888 | 671141549288370177 | 713 | 1246 | 2015-11-30 01:39:49 | Neat pup here. Enjoys lettuce. Long af ears. Short lil legs. Hops surprisingly high for dog. 9/10 still very petable https://t.co/HYR611wiA4 | 9 | 10 | None | |
| 1889 | 671138694582165504 | 448 | 996 | 2015-11-30 01:28:28 | Me running from commitment. 10/10 https://t.co/ycVJyFFkES | 10 | 10 | None | |
| 1890 | 671134062904504320 | 212 | 796 | 2015-11-30 01:10:04 | Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY | 8 | 10 | Clarence | |
| 1891 | 671122204919246848 | 2763 | 3729 | 2015-11-30 00:22:57 | Two miniature golden retrievers here. Webbed paws. Don't walk very efficiently. Can't catch a tennis ball. 4/10s https://t.co/WzVLdSHJU7 | 4 | 10 | None | |
| 1892 | 671115716440031232 | 842 | 1436 | 2015-11-29 23:57:10 | Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV | 6 | 10 | Phred | |
| 1893 | 671109016219725825 | 478 | 1225 | 2015-11-29 23:30:32 | This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H | 8 | 10 | Toby | |
| 1894 | 670995969505435648 | 317 | 1175 | 2015-11-29 16:01:20 | Yea I can't handle this job anymore your dogs are too adorable. 12/10 https://t.co/N9W5L7BLTm | 12 | 10 | None | |
| 1895 | 670842764863651840 | 4324 | 7989 | 2015-11-29 05:52:33 | After so many requests... here you go.\n\nGood dogg. 420/10 https://t.co/yfAAo1gdeY | 11 | 10 | None | |
| 1896 | 670840546554966016 | 213 | 634 | 2015-11-29 05:43:44 | Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX | 10 | 10 | Colby | |
| 1897 | 670838202509447168 | 758 | 1189 | 2015-11-29 05:34:25 | Pink dogs here. Unreasonably long necks. Left guy has only 1 leg. Quite nimble. Don't bark tho 4/10s would still pet https://t.co/QY5uvMmmQk | 4 | 10 | None | |
| 1898 | 670833812859932673 | 135 | 474 | 2015-11-29 05:16:59 | This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F | 7 | 10 | Jett | |
| 1899 | 670832455012716544 | 242 | 780 | 2015-11-29 05:11:35 | This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx | 10 | 10 | Amy | |
| 1900 | 670826280409919488 | 4485 | 5961 | 2015-11-29 04:47:03 | Scary dog here. Too many legs. Extra tail. Not soft, let alone fluffy. Won't bark. Moves sideways. Has weapon. 2/10 https://t.co/XOPXCSXiUT | 2 | 10 | None | |
| 1901 | 670823764196741120 | 205 | 824 | 2015-11-29 04:37:03 | This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ | 12 | 10 | Remington | |
| 1902 | 670822709593571328 | 105 | 647 | 2015-11-29 04:32:51 | Can't do better than this lol. 10/10 for the owner https://t.co/yrqGyMZhW6 | 10 | 10 | None | |
| 1903 | 670815497391357952 | 1708 | 3410 | 2015-11-29 04:04:12 | This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 | 10 | 10 | Sage | |
| 1904 | 670811965569282048 | 295 | 1202 | 2015-11-29 03:50:10 | Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn | 10 | 10 | Maggie | |
| 1905 | 670807719151067136 | 546 | 1234 | 2015-11-29 03:33:17 | Say hello to Andy. He can balance on one foot, obliterate u in checkers, & transform into a rug. 11/10 much talents https://t.co/idzH8JH06g | 11 | 10 | Andy | |
| 1906 | 670804601705242624 | 1035 | 2098 | 2015-11-29 03:20:54 | Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b | 10 | 10 | Mason | |
| 1907 | 670803562457407488 | 95 | 362 | 2015-11-29 03:16:46 | I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR | 10 | 10 | None | |
| 1908 | 670797304698376195 | 262 | 780 | 2015-11-29 02:51:54 | This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 | 11 | 10 | Trigger | |
| 1909 | 670792680469889025 | 298 | 889 | 2015-11-29 02:33:32 | This is Antony. He's a Sheraton Tetrahedron. Skips awkwardly. Doesn't look when he crosses the road (reckless). 7/10 https://t.co/gTy4WMXu8l | 7 | 10 | Antony | |
| 1910 | 670789397210615808 | 255 | 700 | 2015-11-29 02:20:29 | Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY | 9 | 10 | None | |
| 1911 | 670786190031921152 | 218 | 640 | 2015-11-29 02:07:44 | This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa | 8 | 10 | Creg | |
| 1912 | 670783437142401025 | 431 | 872 | 2015-11-29 01:56:48 | Flamboyant pup here. Probably poisonous. Won't eat kibble. Doesn't bark. Slow af. Petting doesn't look fun. 1/10 https://t.co/jxukeh2BeO | 1 | 10 | None | |
| 1913 | 670782429121134593 | 863 | 1691 | 2015-11-29 01:52:48 | This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP | 5 | 10 | None | |
| 1914 | 670780561024270336 | 317 | 831 | 2015-11-29 01:45:22 | This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP | 7 | 10 | Traviss | |
| 1915 | 670778058496974848 | 77 | 345 | 2015-11-29 01:35:26 | "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g | 10 | 10 | None | |
| 1916 | 670764103623966721 | 466 | 1154 | 2015-11-29 00:39:59 | Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 | 10 | 10 | Vincent | |
| 1917 | 670755717859713024 | 123 | 475 | 2015-11-29 00:06:39 | Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E | 9 | 10 | Gin | |
| 1918 | 670733412878163972 | 558 | 1030 | 2015-11-28 22:38:01 | This is Jerry. He's a great listener. Low maintenance. Hard to get leash on tho. 8/10 still good dog https://t.co/NsDIt8Z80Z | 8 | 10 | Jerry | |
| 1919 | 670727704916926465 | 403 | 887 | 2015-11-28 22:15:21 | This is Jeffrie. He's a handheld pup. Excellent ears. Super fluffy. 10/10 overall topnotch canine https://t.co/SWnrQAFOtt | 10 | 10 | Jeffrie | |
| 1920 | 670717338665226240 | 547 | 1301 | 2015-11-28 21:34:09 | *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed | 12 | 10 | None | |
| 1921 | 670704688707301377 | 405 | 814 | 2015-11-28 20:43:53 | Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH | 6 | 10 | Danny | |
| 1922 | 670691627984359425 | 266 | 632 | 2015-11-28 19:51:59 | This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V | 8 | 10 | Ester | |
| 1923 | 670679630144274432 | 315 | 799 | 2015-11-28 19:04:19 | This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN | 8 | 10 | Pluto | |
| 1924 | 670676092097810432 | 45 | 267 | 2015-11-28 18:50:15 | This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc | 8 | 10 | Bloo | |
| 1925 | 670668383499735048 | 5537 | 11452 | 2015-11-28 18:19:37 | This is Phineas. He's a magical dog. Only appears through the hole of a donut. 10/10 mysterious pup https://t.co/NECxEHN5YU | 10 | 10 | Phineas | |
| 1926 | 670474236058800128 | 835 | 1635 | 2015-11-28 05:28:09 | Honor to rate this dog. Great teeth. Nice horns. Unbelievable posture. Fun to pet. Big enough to ride. 10/10 rad dog https://t.co/7JMAHdJ6A4 | 10 | 10 | None | |
| 1927 | 670468609693655041 | 90 | 375 | 2015-11-28 05:05:47 | This is Edd. He's a Czechoslovakian Googolplex Merlot. Ready for Christmas. Take that Starbucks. Very poised. 10/10 https://t.co/dupWSIpSrG | 10 | 10 | Edd | |
| 1928 | 670465786746662913 | 608 | 1048 | 2015-11-28 04:54:34 | Silly dog here. Wearing bunny ears. Nice long tail. Unique paws. Not crazy soft but will do. Extremely agile. 7/10 https://t.co/2BnCLtJMxD | 7 | 10 | None | |
| 1929 | 670452855871037440 | 225 | 580 | 2015-11-28 04:03:11 | This dog can't see its haters. 11/10 https://t.co/35BcGFdEAK | 11 | 10 | None | |
| 1930 | 670449342516494336 | 729 | 1264 | 2015-11-28 03:49:14 | Vibrant dog here. Fabulous tail. Only 2 legs tho. Has wings but can barely fly (lame). Rather elusive. 5/10 okay pup https://t.co/cixC0M3P1e | 5 | 10 | None | |
| 1931 | 670444955656130560 | 2153 | 7120 | 2015-11-28 03:31:48 | This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq | 10 | 10 | Paull | |
| 1932 | 670442337873600512 | 213 | 690 | 2015-11-28 03:21:24 | Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp | 11 | 10 | Koda | |
| 1933 | 670435821946826752 | 570 | 1127 | 2015-11-28 02:55:30 | Two unbelievably athletic dogs here. Great form. Perfect execution. 10/10 for both https://t.co/sQuKwSKtDE | 10 | 10 | None | |
| 1934 | 670434127938719744 | 708 | 1501 | 2015-11-28 02:48:46 | Meet Hank and Sully. Hank is very proud of the pumpkin they found and Sully doesn't give a shit. 11/10 and 8/10 https://t.co/cwoP1ftbrj | 11 | 10 | Hank | |
| 1935 | 670433248821026816 | 122 | 345 | 2015-11-28 02:45:17 | This is Sam. He's trying to escape the inordinate monotony of conforming to everyday status quo. 10/10 https://t.co/PXnCdz8qzK | 10 | 10 | Sam | |
| 1936 | 670428280563085312 | 694 | 1484 | 2015-11-28 02:25:32 | This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad | 11 | 10 | Willy | |
| 1937 | 670427002554466305 | 179 | 551 | 2015-11-28 02:20:27 | This is a Deciduous Trimester mix named Spork. Only 1 ear works. No seat belt. Incredibly reckless. 9/10 still cute https://t.co/CtuJoLHiDo | 9 | 10 | NaN | |
| 1938 | 670421925039075328 | 709 | 1415 | 2015-11-28 02:00:17 | Meet Herb. 12/10 https://t.co/tLRyYvCci3 | 12 | 10 | Herb | |
| 1939 | 670420569653809152 | 342 | 668 | 2015-11-28 01:54:54 | This is Damon. The newest presidential candidate for 2016. 10/10 he gets my vote https://t.co/Z5nqlfjYJi | 10 | 10 | Damon | |
| 1940 | 670417414769758208 | 350 | 604 | 2015-11-28 01:42:22 | Sharp dog here. Introverted. Loves purple. Not fun to pet. Hurts to cuddle with. 6/10 still good dog tho https://t.co/Dfv2YaHPMn | 6 | 10 | None | |
| 1941 | 670411370698022913 | 991 | 2176 | 2015-11-28 01:18:21 | Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN | 12 | 10 | Scooter | |
| 1942 | 670408998013820928 | 249 | 600 | 2015-11-28 01:08:55 | This is Peanut. He was the World Table Tennis Champion back in 2003. Now he just does it for recreation. 10/10 https://t.co/LXVEHo9JMY | 10 | 10 | Peanut | |
| 1943 | 670403879788544000 | 173 | 460 | 2015-11-28 00:48:35 | This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I | 10 | 10 | Nigel | |
| 1944 | 670385711116361728 | 234 | 593 | 2015-11-27 23:36:23 | Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S | 8 | 10 | Larry | |
| 1945 | 670374371102445568 | 295 | 785 | 2015-11-27 22:51:19 | Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K | 12 | 10 | Daisy | |
| 1946 | 670361874861563904 | 71 | 344 | 2015-11-27 22:01:40 | This is a Rich Mahogany Seltzer named Cherokee. Just got destroyed by a snowball. Isn't very happy about it. 9/10 https://t.co/98ZBi6o4dj | 9 | 10 | NaN | |
| 1947 | 670338931251150849 | 122 | 451 | 2015-11-27 20:30:30 | This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY | 10 | 10 | Butters | |
| 1948 | 670319130621435904 | 1359 | 4110 | 2015-11-27 19:11:49 | AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA | 11 | 10 | None | |
| 1949 | 670303360680108032 | 151 | 452 | 2015-11-27 18:09:09 | This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN | 9 | 10 | NaN | |
| 1950 | 670290420111441920 | 315 | 750 | 2015-11-27 17:17:44 | This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF | 11 | 10 | Sandra | |
| 1951 | 670093938074779648 | 365 | 1106 | 2015-11-27 04:16:59 | This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 | 9 | 10 | Wally | |
| 1952 | 670086499208155136 | 275 | 740 | 2015-11-27 03:47:25 | "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f | 10 | 10 | None | |
| 1953 | 670079681849372674 | 1373 | 2390 | 2015-11-27 03:20:20 | Meet Fabio. He's a wonderful pup. Can't stay away from the devil's lettuce but other than that he's a delight. 10/10 https://t.co/Qvj4JZGdQD | 10 | 10 | Fabio | |
| 1954 | 670073503555706880 | 874 | 1674 | 2015-11-27 02:55:47 | Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 | 10 | 10 | Winston | |
| 1955 | 670069087419133954 | 278 | 676 | 2015-11-27 02:38:14 | This is Randall. He's from Chernobyl. Built playground himself. Has been stuck up there quite a while. 5/10 good dog https://t.co/pzrvc7wKGd | 5 | 10 | Randall | |
| 1956 | 670061506722140161 | 373 | 822 | 2015-11-27 02:08:07 | This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn | 11 | 10 | Liam | |
| 1957 | 670055038660800512 | 357 | 716 | 2015-11-27 01:42:24 | This is Tommy. He's a cool dog. Hard not to step on. Won't let go of seashell. Not fast by any means. 3/10 https://t.co/0gY6XTOpn3 | 3 | 10 | Tommy | |
| 1958 | 670046952931721218 | 191 | 684 | 2015-11-27 01:10:17 | This is Ben & Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU | 11 | 10 | Ben | |
| 1959 | 670040295598354432 | 118 | 801 | 2015-11-27 00:43:49 | 😂😂😂 10/10 for the dog and the owner https://t.co/5iYF0Ci0EK | 10 | 10 | None | |
| 1960 | 670037189829525505 | 306 | 625 | 2015-11-27 00:31:29 | Awesome dog here. Not sure where it is tho. Spectacular camouflage. Enjoys leaves. Not very soft. 5/10 still petable https://t.co/rOTOteKx4q | 5 | 10 | None | |
| 1961 | 670003130994700288 | 100 | 352 | 2015-11-26 22:16:09 | This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt | 10 | 10 | Raphael | |
| 1962 | 669993076832759809 | 92 | 344 | 2015-11-26 21:36:12 | This is Zoey. Her dreams of becoming a hippo ballerina don't look promising. 9/10 it'll be ok puppers https://t.co/kR1fqy4NKK | 9 | 10 | Zoey | |
| 1963 | 669972011175813120 | 175 | 471 | 2015-11-26 20:12:29 | Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ | 10 | 10 | None | |
| 1964 | 669970042633789440 | 65 | 317 | 2015-11-26 20:04:40 | This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 | 10 | 10 | Julio | |
| 1965 | 669942763794931712 | 183 | 536 | 2015-11-26 18:16:16 | This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F | 11 | 10 | Andru | |
| 1966 | 669926384437997569 | 115 | 400 | 2015-11-26 17:11:11 | I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw | 12 | 10 | None | |
| 1967 | 669923323644657664 | 64 | 250 | 2015-11-26 16:59:01 | This is a spotted Lipitor Rumpelstiltskin named Alphred. He can't wait for the Turkey. 10/10 would pet really well https://t.co/6GUGO7azNX | 10 | 10 | NaN | |
| 1968 | 669753178989142016 | 431 | 858 | 2015-11-26 05:42:55 | Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 | 10 | 10 | Chester | |
| 1969 | 669749430875258880 | 71 | 289 | 2015-11-26 05:28:02 | Say hello to Clarence. Clarence thought he saw a squirrel. He was just trying to help. 8/10 poor Clarence https://t.co/tbFaTUHLJB | 8 | 10 | Clarence | |
| 1970 | 669684865554620416 | 99 | 551 | 2015-11-26 01:11:28 | After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10 | 11 | 10 | None | |
| 1971 | 669683899023405056 | 119 | 412 | 2015-11-26 01:07:38 | This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA | 10 | 10 | Kloey | |
| 1972 | 669682095984410625 | 146 | 375 | 2015-11-26 01:00:28 | Meet Louie. He just pounded that bottle of wine. 9/10 goodnight Louie https://t.co/RAwZvMKRZB | 9 | 10 | Louie | |
| 1973 | 669680153564442624 | 311 | 712 | 2015-11-26 00:52:45 | This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx | 8 | 10 | Shawwn | |
| 1974 | 669661792646373376 | 482 | 860 | 2015-11-25 23:39:47 | This is a brave dog. Excellent free climber. Trying to get closer to God. Not very loyal though. Doesn't bark. 5/10 https://t.co/ODnILTr4QM | 5 | 10 | NaN | |
| 1975 | 669625907762618368 | 1963 | 3769 | 2015-11-25 21:17:12 | This is Penny. She's having fun AND being safe. 12/10 very responsible pup https://t.co/eqeWw67oU7 | 12 | 10 | Penny | |
| 1976 | 669603084620980224 | 401 | 1006 | 2015-11-25 19:46:30 | Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs | 10 | 10 | None | |
| 1977 | 669597912108789760 | 163 | 550 | 2015-11-25 19:25:57 | This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF | 10 | 10 | Skye | |
| 1978 | 669583744538451968 | 1017 | 1587 | 2015-11-25 18:29:39 | Special dog here. Pretty big. Neck kinda long for dog. Cool spots. Must be a Dalmatian variant. 6/10 would still pet https://t.co/f8GXeDbFzu | 6 | 10 | None | |
| 1979 | 669573570759163904 | 156 | 467 | 2015-11-25 17:49:14 | This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id | 10 | 10 | Linda | |
| 1980 | 669571471778410496 | 1085 | 1684 | 2015-11-25 17:40:53 | This is Keith. He's had 13 DUIs. 7/10 that's too many Keith https://t.co/fa7olwrF9Y | 7 | 10 | Keith | |
| 1981 | 669567591774625800 | 61 | 248 | 2015-11-25 17:25:28 | Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX | 9 | 10 | Kollin | |
| 1982 | 669564461267722241 | 133 | 413 | 2015-11-25 17:13:02 | This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl | 10 | 10 | NaN | |
| 1983 | 669393256313184256 | 83 | 383 | 2015-11-25 05:52:43 | Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD | 10 | 10 | Ronduh | |
| 1984 | 669375718304980992 | 792 | 1425 | 2015-11-25 04:43:02 | This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY | 6 | 10 | Billl | |
| 1985 | 669371483794317312 | 196 | 524 | 2015-11-25 04:26:12 | This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk | 10 | 10 | Oliviér | |
| 1986 | 669367896104181761 | 172 | 485 | 2015-11-25 04:11:57 | This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP | 10 | 10 | Chip | |
| 1987 | 669363888236994561 | 252 | 669 | 2015-11-25 03:56:01 | Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m | 10 | 10 | None | |
| 1988 | 669359674819481600 | 134 | 390 | 2015-11-25 03:39:17 | Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi | 11 | 10 | Saydee | |
| 1989 | 669354382627049472 | 1390 | 2889 | 2015-11-25 03:18:15 | Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx | 8 | 10 | Dug | |
| 1990 | 669353438988365824 | 281 | 687 | 2015-11-25 03:14:30 | This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv | 10 | 10 | Tessa | |
| 1991 | 669351434509529089 | 207 | 474 | 2015-11-25 03:06:32 | This is Sully. He's a Leviticus Galapagos. Very powerful. Borderline unstoppable. Cool goggles. 10/10 https://t.co/zKNF77dxEA | 10 | 10 | Sully | |
| 1992 | 669328503091937280 | 452 | 1081 | 2015-11-25 01:35:25 | This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP | 12 | 10 | Kirk | |
| 1993 | 669327207240699904 | 127 | 610 | 2015-11-25 01:30:16 | Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 | 13 | 10 | None | |
| 1994 | 669324657376567296 | 223 | 525 | 2015-11-25 01:20:08 | Meet Ralf. He's a miniature Buick DiCaprio. Can float (whoa). Loves to beach. Snazzy green vest. 11/10 I'd hug Ralf https://t.co/R5Z6jBTdhc | 11 | 10 | Ralf | |
| 1995 | 669216679721873412 | 422 | 958 | 2015-11-24 18:11:04 | This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ | 8 | 10 | Clarq | |
| 1996 | 669214165781868544 | 183 | 468 | 2015-11-24 18:01:05 | This is Jaspers. He is a northeastern Gillette. Just got his license. Very excited. 10/10 they grow up so fast https://t.co/cieaOI0RuT | 10 | 10 | Jaspers | |
| 1997 | 669203728096960512 | 522 | 1074 | 2015-11-24 17:19:36 | This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 | 9 | 10 | Samsom | |
| 1998 | 669037058363662336 | 336 | 698 | 2015-11-24 06:17:19 | Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 https://t.co/Lh1BsJrWPp | 10 | 10 | None | |
| 1999 | 669015743032369152 | 403 | 785 | 2015-11-24 04:52:37 | Super rare dog right here guys. Doesn't bark. Seems strong. Blue. Very family friendly pet. 10/10 overall good dog https://t.co/Jykq2iq3qN | 10 | 10 | None | |
| 2000 | 669006782128353280 | 269 | 610 | 2015-11-24 04:17:01 | This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu | 12 | 10 | Tucker | |
| 2001 | 669000397445533696 | 6965 | 22118 | 2015-11-24 03:51:38 | Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD | 11 | 10 | Terrance | |
| 2002 | 668994913074286592 | 254 | 468 | 2015-11-24 03:29:51 | Two gorgeous pups here. Both have cute fake horns(adorable). Barn in the back looks on fire. 5/10 would pet rly well https://t.co/w5oYFXi0uh | 5 | 10 | None | |
| 2003 | 668992363537309700 | 381 | 802 | 2015-11-24 03:19:43 | This is Harrison. He braves the snow like a champ. Perched at all times. Hasn't blinked in months. 8/10 v nifty dog https://t.co/tiVuq6MNwl | 8 | 10 | Harrison | |
| 2004 | 668989615043424256 | 356 | 726 | 2015-11-24 03:08:48 | This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX | 3 | 10 | Bernie | |
| 2005 | 668988183816871936 | 516 | 961 | 2015-11-24 03:03:06 | Honor to rate this dog. Lots of fur on him. Two massive tumors on back. Should get checked out. Very neat tho. 7/10 https://t.co/bMhs18elNF | 7 | 10 | None | |
| 2006 | 668986018524233728 | 183 | 578 | 2015-11-24 02:54:30 | This is Ruby. She's a Bimmington Fettuccini. One ear works a lil better than other. Looks startled. Cool carpet 9/10 https://t.co/j0Wpa42KCH | 9 | 10 | Ruby | |
| 2007 | 668981893510119424 | 340 | 573 | 2015-11-24 02:38:07 | Unique dog here. Oddly shaped tail. Long pink front legs. I don't think dogs breath underwater sos. 4/10 bad owner https://t.co/0EJXxE9UxW | 4 | 10 | None | |
| 2008 | 668979806671884288 | 382 | 842 | 2015-11-24 02:29:49 | This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 | 12 | 10 | Chaz | |
| 2009 | 668975677807423489 | 641 | 1386 | 2015-11-24 02:13:25 | This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY | 11 | 10 | Jeremy | |
| 2010 | 668967877119254528 | 25 | 161 | 2015-11-24 01:42:25 | 12/10 good shit Bubka\n@wane15 | 12 | 10 | None | |
| 2011 | 668960084974809088 | 263 | 757 | 2015-11-24 01:11:27 | Meet Jaycob. He got scared of the vacuum. Hide & seek champ. Almost better than Kony. Solid shampoo selection. 10/10 https://t.co/952hUV6RiK | 10 | 10 | Jaycob | |
| 2012 | 668955713004314625 | 77 | 300 | 2015-11-24 00:54:05 | This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 | 10 | 10 | NaN | |
| 2013 | 668932921458302977 | 63 | 284 | 2015-11-23 23:23:31 | This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 | 9 | 10 | Herald | |
| 2014 | 668902994700836864 | 107 | 338 | 2015-11-23 21:24:36 | Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe | 11 | 10 | Lambeau | |
| 2015 | 668892474547511297 | 164 | 422 | 2015-11-23 20:42:48 | This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj | 11 | 10 | Ruffles | |
| 2016 | 668872652652679168 | 322 | 566 | 2015-11-23 19:24:02 | This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf | 11 | 10 | Amélie | |
| 2017 | 668852170888998912 | 184 | 479 | 2015-11-23 18:02:38 | Say hello to Bobb. Bobb is a Golden High Fescue & a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY | 11 | 10 | Bobb | |
| 2018 | 668826086256599040 | 150 | 467 | 2015-11-23 16:18:59 | This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI | 10 | 10 | Banditt | |
| 2019 | 668815180734689280 | 291 | 610 | 2015-11-23 15:35:39 | This is a wild Toblerone from Papua New Guinea. Mouth always open. Addicted to hay. Acts blind. 7/10 handsome dog https://t.co/IGmVbz07tZ | 7 | 10 | NaN | |
| 2020 | 668779399630725120 | 409 | 749 | 2015-11-23 13:13:28 | This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW | 10 | 10 | Kevon | |
| 2021 | 668655139528511488 | 233 | 562 | 2015-11-23 04:59:42 | Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt | 11 | 10 | Winifred | |
| 2022 | 668645506898350081 | 588 | 962 | 2015-11-23 04:21:26 | Incredibly rare dog here. Good at bipedalism. Rad blue spikes. Ready to dance. 11/10 https://t.co/70X1TIXn38 | 11 | 10 | None | |
| 2023 | 668643542311546881 | 576 | 939 | 2015-11-23 04:13:37 | Fascinating dog here. Loves beach. Oddly long nose for dog. Massive ass paws. Hard to cuddle w. 3/10 would still pet https://t.co/IiSdmhkC5N | 3 | 10 | None | |
| 2024 | 668641109086707712 | 573 | 1145 | 2015-11-23 04:03:57 | Meet Hanz. He heard some thunder. 10/10 https://t.co/pKJK23j0QZ | 10 | 10 | Hanz | |
| 2025 | 668636665813057536 | 528 | 1114 | 2015-11-23 03:46:18 | This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg | 10 | 10 | NaN | |
| 2026 | 668633411083464705 | 1788 | 3024 | 2015-11-23 03:33:22 | This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG | 10 | 10 | Churlie | |
| 2027 | 668631377374486528 | 349 | 763 | 2015-11-23 03:25:17 | Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH | 5 | 10 | Zeek | |
| 2028 | 668627278264475648 | 123 | 341 | 2015-11-23 03:09:00 | This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo | 9 | 10 | Timofy | |
| 2029 | 668625577880875008 | 140 | 417 | 2015-11-23 03:02:14 | This is Maks. Maks just noticed something wasn't right. 10/10 https://t.co/0zBycaxyvs | 10 | 10 | Maks | |
| 2030 | 668623201287675904 | 851 | 1551 | 2015-11-23 02:52:48 | This is Jomathan. He is not thrilled about the length of the grass. 10/10 https://t.co/TIhVKEIPqj | 10 | 10 | Jomathan | |
| 2031 | 668620235289837568 | 45 | 211 | 2015-11-23 02:41:01 | Say hello to Kallie. There was a tornado in the area & the news guy said everyone should wear a helmet. 10/10 adorbz https://t.co/AGyogHtmXx | 10 | 10 | Kallie | |
| 2032 | 668614819948453888 | 341 | 654 | 2015-11-23 02:19:29 | Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm | 7 | 10 | NaN | |
| 2033 | 668587383441514497 | 1174 | 1760 | 2015-11-23 00:30:28 | Never forget this vine. You will not stop watching for at least 15 minutes. This is the second coveted.. 13/10 https://t.co/roqIxCvEB3 | 13 | 10 | NaN | |
| 2034 | 668567822092664832 | 62 | 265 | 2015-11-22 23:12:44 | This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 | 11 | 10 | Marvin | |
| 2035 | 668544745690562560 | 250 | 561 | 2015-11-22 21:41:02 | It is an honor to rate this pup. He is a Snorklhuahua from Amarillo. A true renaissance dog. Also part Rudolph 10/10 https://t.co/ALNyYuGui7 | 10 | 10 | None | |
| 2036 | 668542336805281792 | 231 | 497 | 2015-11-22 21:31:28 | There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 | 10 | 10 | None | |
| 2037 | 668537837512433665 | 79 | 265 | 2015-11-22 21:13:35 | This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 https://t.co/stEodX9Aba | 8 | 10 | Spark | |
| 2038 | 668528771708952576 | 242 | 496 | 2015-11-22 20:37:34 | This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW | 12 | 10 | Gòrdón | |
| 2039 | 668507509523615744 | 116 | 345 | 2015-11-22 19:13:05 | This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt | 10 | 10 | NaN | |
| 2040 | 668496999348633600 | 146 | 436 | 2015-11-22 18:31:19 | This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 | 8 | 10 | Jo | |
| 2041 | 668484198282485761 | 253 | 453 | 2015-11-22 17:40:27 | Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB | 9 | 10 | None | |
| 2042 | 668480044826800133 | 162 | 491 | 2015-11-22 17:23:57 | Say hello to DayZ. She is definitely stuck on that stair. Just looking for someone to help her. 11/10 I would help https://t.co/be3zMW0Qj5 | 11 | 10 | DayZ | |
| 2043 | 668466899341221888 | 560 | 936 | 2015-11-22 16:31:42 | Here is a mother dog caring for her pups. Snazzy red mohawk. Doesn't wag tail. Pups look confused. Overall 4/10 https://t.co/YOHe6lf09m | 4 | 10 | NaN | |
| 2044 | 668297328638447616 | 319 | 656 | 2015-11-22 05:17:54 | 2 rare dogs. They waddle (v inefficient). Sometimes slide on bellies. Right one wants to be aircraft Marshall. 9/10s https://t.co/P8bivfp5sU | 9 | 10 | None | |
| 2045 | 668291999406125056 | 34 | 264 | 2015-11-22 04:56:43 | I can't do better than he did. 10/10 https://t.co/fM0KXns7Or | 10 | 10 | None | |
| 2046 | 668286279830867968 | 149 | 535 | 2015-11-22 04:33:59 | Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc | 11 | 10 | Rusty | |
| 2047 | 668274247790391296 | 248 | 886 | 2015-11-22 03:46:11 | Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB | 10 | 10 | Sophie | |
| 2048 | 668268907921326080 | 261 | 592 | 2015-11-22 03:24:58 | Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN | 10 | 10 | None | |
| 2049 | 668256321989451776 | 667 | 1385 | 2015-11-22 02:34:57 | This is Jareld. Jareld rules these waters. Ladies and Gentleman... 13/10. This dog is utterly fucking spectacular. https://t.co/L6qAEV5PAd | 13 | 10 | Jareld | |
| 2050 | 668248472370458624 | 523 | 1056 | 2015-11-22 02:03:45 | Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K | 8 | 10 | Bisquick | |
| 2051 | 668237644992782336 | 3100 | 6614 | 2015-11-22 01:20:44 | This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i | 10 | 10 | Torque | |
| 2052 | 668226093875376128 | 115 | 323 | 2015-11-22 00:34:50 | Sneaky dog here. Tuba player has no clue. 10/10 super sneaky https://t.co/jWVwSppaa2 | 10 | 10 | None | |
| 2053 | 668221241640230912 | 215 | 537 | 2015-11-22 00:15:33 | These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh | 10 | 10 | None | |
| 2054 | 668204964695683073 | 206 | 586 | 2015-11-21 23:10:52 | This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK | 8 | 10 | Ron | |
| 2055 | 668190681446379520 | 210 | 696 | 2015-11-21 22:14:07 | This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 | 12 | 10 | Skittles | |
| 2056 | 668171859951755264 | 208 | 525 | 2015-11-21 20:59:20 | This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb | 7 | 10 | NaN | |
| 2057 | 668154635664932864 | 336 | 522 | 2015-11-21 19:50:53 | Fun dogs here. Top one clearly an athlete. Bottom one very stable. Not very soft tho. 9/10s would still cuddle both https://t.co/79sHR36NsI | 9 | 10 | None | |
| 2058 | 668142349051129856 | 306 | 592 | 2015-11-21 19:02:04 | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 | 2 | 10 | None | |
| 2059 | 668113020489474048 | 265 | 709 | 2015-11-21 17:05:31 | This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX | 6 | 10 | Alfie | |
| 2060 | 667937095915278337 | 866 | 1356 | 2015-11-21 05:26:27 | This dog resembles a baked potato. Bed looks uncomfortable. No tail. Comes with butter tho. 3/10 petting still fun https://t.co/x89NSCEZCq | 3 | 10 | None | |
| 2061 | 667924896115245057 | 119 | 318 | 2015-11-21 04:37:59 | This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 | 9 | 10 | Jiminy | |
| 2062 | 667915453470232577 | 59 | 222 | 2015-11-21 04:00:28 | Meet Otis. He is a Peruvian Quartzite. Pic sponsored by Planters. Ears on point. Killer sunglasses. 10/10 ily Otis https://t.co/tIaaBIMlJN | 10 | 10 | Otis | |
| 2063 | 667911425562669056 | 329 | 523 | 2015-11-21 03:44:27 | Wow. Armored dog here. Ready for battle. Face looks dangerous. Not very loyal. Lil dog on back havin a blast. 5/10 https://t.co/SyMoWrp368 | 5 | 10 | None | |
| 2064 | 667902449697558528 | 396 | 905 | 2015-11-21 03:08:47 | This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W | 9 | 10 | Cleopatricia | |
| 2065 | 667886921285246976 | 1180 | 2011 | 2015-11-21 02:07:05 | This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 | 11 | 10 | Erik | |
| 2066 | 667885044254572545 | 530 | 868 | 2015-11-21 01:59:37 | Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd | 10 | 10 | Stu | |
| 2067 | 667878741721415682 | 127 | 409 | 2015-11-21 01:34:35 | This is Tedrick. He lives on the edge. Needs someone to hit the gas tho. Other than that he's a baller. 10&2/10 https://t.co/LvP1TTYSCN | 2 | 10 | Tedrick | |
| 2068 | 667873844930215936 | 440 | 667 | 2015-11-21 01:15:07 | Neat dog. Lots of spikes. Always in push-up position. Laid a shit ton of eggs earlier. Super stellar pup. 10/10 https://t.co/ODqrL3zXYE | 10 | 10 | None | |
| 2069 | 667866724293877760 | 1110 | 3172 | 2015-11-21 00:46:50 | This is Shaggy. He knows exactly how to solve the puzzle but can't talk. All he wants to do is help. 10/10 great guy https://t.co/SBmWbfAg6X | 10 | 10 | Shaggy | |
| 2070 | 667861340749471744 | 86 | 253 | 2015-11-21 00:25:26 | This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba | 9 | 10 | NaN | |
| 2071 | 667832474953625600 | 68 | 303 | 2015-11-20 22:30:44 | THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 | 12 | 10 | None | |
| 2072 | 667806454573760512 | 535 | 1111 | 2015-11-20 20:47:20 | This is Filup. He is overcome with joy after finally meeting his father. 10/10 https://t.co/TBmDJXJB75 | 10 | 10 | Filup | |
| 2073 | 667801013445750784 | 101 | 346 | 2015-11-20 20:25:43 | OMIGOD 12/10 https://t.co/SVMF4Frf1w | 12 | 10 | None | |
| 2074 | 667793409583771648 | 358 | 736 | 2015-11-20 19:55:30 | Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O | 8 | 10 | None | |
| 2075 | 667782464991965184 | 261 | 434 | 2015-11-20 19:12:01 | Super rare dog. Endangered (?). Thinks it's funny. Mocks everything I say. Colorful af. Has wings (dope). 9/10 https://t.co/BY8nQAMz0x | 9 | 10 | None | |
| 2076 | 667773195014021121 | 61 | 243 | 2015-11-20 18:35:10 | This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD | 8 | 10 | NaN | |
| 2077 | 667766675769573376 | 243 | 476 | 2015-11-20 18:09:16 | This is Calvin. He is a Luxembourgian Mayo. Having issues with truck. Has it under control tho. 9/10 responsible af https://t.co/3Bbba7y8Xe | 9 | 10 | Calvin | |
| 2078 | 667728196545200128 | 162 | 398 | 2015-11-20 15:36:22 | Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB | 11 | 10 | Olive | |
| 2079 | 667724302356258817 | 341 | 517 | 2015-11-20 15:20:54 | What a dog to start the day with. Very calm. Likes to chill by pond. Corkscrews sticking out of head. Obedient. 7/10 https://t.co/0nIxPTDWAZ | 7 | 10 | None | |
| 2080 | 667549055577362432 | 2454 | 6138 | 2015-11-20 03:44:31 | Never seen dog like this. Breathes heavy. Tilts head in a pattern. No bark. Shitty at fetch. Not even cordless. 1/10 https://t.co/i9iSGNn3fx | 1 | 10 | None | |
| 2081 | 667546741521195010 | 138 | 355 | 2015-11-20 03:35:20 | Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb | 9 | 10 | George | |
| 2082 | 667544320556335104 | 568 | 917 | 2015-11-20 03:25:43 | This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR | 10 | 10 | Kial | |
| 2083 | 667538891197542400 | 72 | 220 | 2015-11-20 03:04:08 | This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe | 9 | 10 | NaN | |
| 2084 | 667534815156183040 | 576 | 866 | 2015-11-20 02:47:56 | This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV | 8 | 10 | Frank | |
| 2085 | 667530908589760512 | 264 | 501 | 2015-11-20 02:32:25 | Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy | 10 | 10 | Naphaniel | |
| 2086 | 667524857454854144 | 1198 | 1798 | 2015-11-20 02:08:22 | Another topnotch dog. His name is Big Jumpy Rat. Massive ass feet. Superior tail. Jumps high af. 12/10 great pup https://t.co/seESNzgsdm | 12 | 10 | None | |
| 2087 | 667517642048163840 | 203 | 389 | 2015-11-20 01:39:42 | This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 | 8 | 10 | Dook | |
| 2088 | 667509364010450944 | 2272 | 7148 | 2015-11-20 01:06:48 | This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 | 12 | 10 | None | |
| 2089 | 667502640335572993 | 231 | 563 | 2015-11-20 00:40:05 | Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl | 11 | 10 | Hall | |
| 2090 | 667495797102141441 | 294 | 565 | 2015-11-20 00:12:54 | This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i | 9 | 10 | Philippe | |
| 2091 | 667491009379606528 | 242 | 559 | 2015-11-19 23:53:52 | Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y | 7 | 10 | None | |
| 2092 | 667470559035432960 | 102 | 273 | 2015-11-19 22:32:36 | This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk | 11 | 10 | NaN | |
| 2093 | 667455448082227200 | 66 | 203 | 2015-11-19 21:32:34 | This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK | 7 | 10 | Reese | |
| 2094 | 667453023279554560 | 96 | 327 | 2015-11-19 21:22:56 | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa | 11 | 10 | Cupcake | |
| 2095 | 667443425659232256 | 620 | 833 | 2015-11-19 20:44:47 | Exotic dog here. Long neck. Weird paws. Obsessed with bread. Waddles. Flies sometimes (wow!). Very happy dog. 6/10 https://t.co/rqO4I3nf2N | 6 | 10 | None | |
| 2096 | 667437278097252352 | 257 | 483 | 2015-11-19 20:20:22 | Never seen this breed before. Very pointy pup. Hurts when you cuddle. Still cute tho. 10/10 https://t.co/97HuBrVuOx | 10 | 10 | None | |
| 2097 | 667435689202614272 | 89 | 326 | 2015-11-19 20:14:03 | Ermergerd 12/10 https://t.co/PQni2sjPsm | 12 | 10 | None | |
| 2098 | 667405339315146752 | 234 | 489 | 2015-11-19 18:13:27 | This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 | 7 | 10 | Biden | |
| 2099 | 667393430834667520 | 60 | 211 | 2015-11-19 17:26:08 | This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS | 8 | 10 | Fwed | |
| 2100 | 667369227918143488 | 173 | 385 | 2015-11-19 15:49:57 | Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 | 10 | 10 | None | |
| 2101 | 667211855547486208 | 258 | 516 | 2015-11-19 05:24:37 | This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH | 9 | 10 | Genevieve | |
| 2102 | 667200525029539841 | 282 | 658 | 2015-11-19 04:39:35 | This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ | 11 | 10 | Joshwa | |
| 2103 | 667192066997374976 | 115 | 414 | 2015-11-19 04:05:59 | *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 | 12 | 10 | None | |
| 2104 | 667188689915760640 | 449 | 784 | 2015-11-19 03:52:34 | Quite an advanced dog here. Impressively dressed for canine. Has weapon. About to take out trash. 10/10 good dog https://t.co/8uCMwS9CbV | 10 | 10 | None | |
| 2105 | 667182792070062081 | 6618 | 15075 | 2015-11-19 03:29:07 | This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl | 10 | 10 | Timison | |
| 2106 | 667177989038297088 | 58 | 200 | 2015-11-19 03:10:02 | This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW | 8 | 10 | NaN | |
| 2107 | 667176164155375616 | 484 | 640 | 2015-11-19 03:02:47 | These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN | 4 | 10 | None | |
| 2108 | 667174963120574464 | 88 | 262 | 2015-11-19 02:58:01 | This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs | 9 | 10 | Clarence | |
| 2109 | 667171260800061440 | 97 | 235 | 2015-11-19 02:43:18 | Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY | 10 | 10 | Kenneth | |
| 2110 | 667165590075940865 | 1241 | 2819 | 2015-11-19 02:20:46 | This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY | 10 | 10 | Churlie | |
| 2111 | 667160273090932737 | 66 | 268 | 2015-11-19 01:59:39 | This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 | 11 | 10 | Bradlay | |
| 2112 | 667152164079423490 | 18285 | 49720 | 2015-11-19 01:27:25 | This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X | 12 | 10 | Pipsy | |
| 2113 | 667138269671505920 | 2387 | 4851 | 2015-11-19 00:32:12 | Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V | 10 | 10 | None | |
| 2114 | 667119796878725120 | 135 | 346 | 2015-11-18 23:18:48 | This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ | 10 | 10 | Gabe | |
| 2115 | 667090893657276420 | 132 | 349 | 2015-11-18 21:23:57 | This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr | 7 | 10 | Clybe | |
| 2116 | 667073648344346624 | 134 | 425 | 2015-11-18 20:15:26 | Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq | 10 | 10 | Dave | |
| 2117 | 667070482143944705 | 14 | 88 | 2015-11-18 20:02:51 | After much debate this dog is being upgraded to 10/10. I repeat 10/10 | 10 | 10 | None | |
| 2118 | 667065535570550784 | 51 | 175 | 2015-11-18 19:43:11 | Here we have a Hufflepuff. Loves vest. Eyes wide af. Flaccid tail. Matches carpet. Always a little blurry. 8/10 https://t.co/7JdgVqDnvR | 8 | 10 | None | |
| 2119 | 667062181243039745 | 57 | 227 | 2015-11-18 19:29:52 | This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA | 10 | 10 | Keet | |
| 2120 | 667044094246576128 | 54 | 198 | 2015-11-18 18:17:59 | 12/10 gimme now https://t.co/QZAnwgnOMB | 12 | 10 | None | |
| 2121 | 667012601033924608 | 237 | 471 | 2015-11-18 16:12:51 | This is Klevin. He laughs a lot. Very cool dog. 9/10 https://t.co/bATAbPNv0m | 9 | 10 | Klevin | |
| 2122 | 666996132027977728 | 102 | 258 | 2015-11-18 15:07:24 | This is Carll. He wants to be a donkey. But also a soccer star. Dreams big. 10/10 https://t.co/SVpNbhaIMk | 10 | 10 | Carll | |
| 2123 | 666983947667116034 | 1040 | 2679 | 2015-11-18 14:18:59 | This is a curly Ticonderoga named Pepe. No feet. Loves to jet ski. 11/10 would hug until forever https://t.co/cyDfaK8NBc | 11 | 10 | NaN | |
| 2124 | 666837028449972224 | 584 | 857 | 2015-11-18 04:35:11 | My goodness. Very rare dog here. Large. Tail dangerous. Kinda fat. Only eats leaves. Doesn't come when called 3/10 https://t.co/xYGdBrMS9h | 3 | 10 | None | |
| 2125 | 666835007768551424 | 83 | 222 | 2015-11-18 04:27:09 | These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 https://t.co/ZnEMHBsAs1 | 10 | 10 | None | |
| 2126 | 666826780179869698 | 105 | 266 | 2015-11-18 03:54:28 | 12/10 simply brilliant pup https://t.co/V6ZzG45zzG | 12 | 10 | None | |
| 2127 | 666817836334096384 | 267 | 540 | 2015-11-18 03:18:55 | This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO | 9 | 10 | Jeph | |
| 2128 | 666804364988780544 | 95 | 250 | 2015-11-18 02:25:23 | This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK | 8 | 10 | Jockson | |
| 2129 | 666786068205871104 | 521 | 800 | 2015-11-18 01:12:41 | Unfamiliar with this breed. Ears pointy af. Won't let go of seashell. Won't eat kibble. Not very fast. Bad dog 2/10 https://t.co/EIn5kElY1S | 2 | 10 | None | |
| 2130 | 666781792255496192 | 211 | 404 | 2015-11-18 00:55:42 | This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa | 10 | 10 | NaN | |
| 2131 | 666776908487630848 | 186 | 368 | 2015-11-18 00:36:17 | This is Josep. He is a Rye Manganese mix. Can drive w eyes closed. Very irresponsible. Menace on the roadways. 5/10 https://t.co/XNGeDwrtYH | 5 | 10 | Josep | |
| 2132 | 666739327293083650 | 71 | 244 | 2015-11-17 22:06:57 | This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI | 10 | 10 | Lugan | |
| 2133 | 666701168228331520 | 234 | 449 | 2015-11-17 19:35:19 | This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB | 8 | 10 | NaN | |
| 2134 | 666691418707132416 | 51 | 196 | 2015-11-17 18:56:35 | This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF | 8 | 10 | Christoper | |
| 2135 | 666649482315059201 | 608 | 923 | 2015-11-17 16:09:56 | Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s | 4 | 10 | None | |
| 2136 | 666644823164719104 | 88 | 238 | 2015-11-17 15:51:26 | This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ | 9 | 10 | Jimothy | |
| 2137 | 666454714377183233 | 223 | 545 | 2015-11-17 03:16:00 | I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua | 10 | 10 | Kreggory | |
| 2138 | 666447344410484738 | 23 | 107 | 2015-11-17 02:46:43 | This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW | 9 | 10 | Scout | |
| 2139 | 666437273139982337 | 52 | 131 | 2015-11-17 02:06:42 | Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK | 7 | 10 | None | |
| 2140 | 666435652385423360 | 54 | 170 | 2015-11-17 02:00:15 | "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU | 10 | 10 | None | |
| 2141 | 666430724426358785 | 204 | 330 | 2015-11-17 01:40:41 | Oh boy what a pup! Sunglasses take this one to the next level. Weirdly folds front legs. Pretty big. 6/10 https://t.co/yECbFrSArM | 6 | 10 | None | |
| 2142 | 666428276349472768 | 90 | 171 | 2015-11-17 01:30:57 | Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK | 7 | 10 | None | |
| 2143 | 666421158376562688 | 118 | 327 | 2015-11-17 01:02:40 | *internally screaming* 12/10 https://t.co/YMcrXC2Y6R | 12 | 10 | None | |
| 2144 | 666418789513326592 | 48 | 129 | 2015-11-17 00:53:15 | This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn | 10 | 10 | Walter | |
| 2145 | 666411507551481857 | 339 | 459 | 2015-11-17 00:24:19 | This is quite the dog. Gets really excited when not in water. Not very soft tho. Bad at fetch. Can't do tricks. 2/10 https://t.co/aMCTNWO94t | 2 | 10 | NaN | |
| 2146 | 666407126856765440 | 44 | 113 | 2015-11-17 00:06:54 | This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h | 7 | 10 | NaN | |
| 2147 | 666396247373291520 | 92 | 172 | 2015-11-16 23:23:41 | Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE | 9 | 10 | None | |
| 2148 | 666373753744588802 | 100 | 194 | 2015-11-16 21:54:18 | Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl | 11 | 10 | None | |
| 2149 | 666362758909284353 | 595 | 804 | 2015-11-16 21:10:36 | Unique dog here. Very small. Lives in container of Frosted Flakes (?). Short legs. Must be rare 6/10 would still pet https://t.co/XMD9CwjEnM | 6 | 10 | None | |
| 2150 | 666353288456101888 | 77 | 229 | 2015-11-16 20:32:58 | Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO | 8 | 10 | None | |
| 2151 | 666345417576210432 | 146 | 307 | 2015-11-16 20:01:42 | Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB | 10 | 10 | None | |
| 2152 | 666337882303524864 | 96 | 204 | 2015-11-16 19:31:45 | This is an extremely rare horned Parthenon. Not amused. Wears shoes. Overall very nice. 9/10 would pet aggressively https://t.co/QpRjllzWAL | 9 | 10 | NaN | |
| 2153 | 666293911632134144 | 368 | 522 | 2015-11-16 16:37:02 | This is a funny dog. Weird toes. Won't come down. Loves branch. Refuses to eat his food. Hard to cuddle with. 3/10 https://t.co/IIXis0zta0 | 3 | 10 | NaN | |
| 2154 | 666287406224695296 | 71 | 152 | 2015-11-16 16:11:11 | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv | 9 | 10 | NaN | |
| 2155 | 666273097616637952 | 82 | 184 | 2015-11-16 15:14:19 | Can take selfies 11/10 https://t.co/ws2AMaNwPW | 11 | 10 | None | |
| 2156 | 666268910803644416 | 37 | 108 | 2015-11-16 14:57:41 | Very concerned about fellow dog trapped in computer. 10/10 https://t.co/0yxApIikpk | 10 | 10 | None | |
| 2157 | 666104133288665088 | 6871 | 14765 | 2015-11-16 04:02:55 | Not familiar with this breed. No tail (weird). Only 2 legs. Doesn't bark. Surprisingly quick. Shits eggs. 1/10 https://t.co/Asgdc6kuLX | 1 | 10 | None | |
| 2158 | 666102155909144576 | 16 | 81 | 2015-11-16 03:55:04 | Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq | 11 | 10 | None | |
| 2159 | 666099513787052032 | 73 | 164 | 2015-11-16 03:44:34 | Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C | 8 | 10 | None | |
| 2160 | 666094000022159362 | 79 | 169 | 2015-11-16 03:22:39 | This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP | 9 | 10 | None | |
| 2161 | 666082916733198337 | 47 | 121 | 2015-11-16 02:38:37 | Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 | 6 | 10 | None | |
| 2162 | 666073100786774016 | 174 | 335 | 2015-11-16 01:59:36 | Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY | 10 | 10 | None | |
| 2163 | 666071193221509120 | 67 | 154 | 2015-11-16 01:52:02 | Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx | 9 | 10 | None | |
| 2164 | 666063827256086533 | 232 | 496 | 2015-11-16 01:22:45 | This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK | 10 | 10 | NaN | |
| 2165 | 666058600524156928 | 61 | 115 | 2015-11-16 01:01:59 | Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p | 8 | 10 | NaN | |
| 2166 | 666057090499244032 | 146 | 304 | 2015-11-16 00:55:59 | My oh my. This is a rare blond Canadian terrier on wheels. Only $8.98. Rather docile. 9/10 very rare https://t.co/yWBqbrzy8O | 9 | 10 | NaN | |
| 2167 | 666055525042405380 | 261 | 448 | 2015-11-16 00:49:46 | Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt | 10 | 10 | NaN | |
| 2168 | 666051853826850816 | 879 | 1253 | 2015-11-16 00:35:11 | This is an odd dog. Hard on the outside but loving on the inside. Petting still fun. Doesn't play catch well. 2/10 https://t.co/v5A4vzSDdc | 2 | 10 | NaN | |
| 2169 | 666050758794694657 | 60 | 136 | 2015-11-16 00:30:50 | This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe | 10 | 10 | NaN | |
| 2170 | 666049248165822465 | 41 | 111 | 2015-11-16 00:24:50 | Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq | 5 | 10 | None | |
| 2171 | 666044226329800704 | 147 | 311 | 2015-11-16 00:04:52 | This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx | 6 | 10 | NaN | |
| 2172 | 666033412701032449 | 47 | 128 | 2015-11-15 23:21:54 | Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR | 9 | 10 | NaN | |
| 2173 | 666029285002620928 | 48 | 132 | 2015-11-15 23:05:30 | This is a western brown Mitsubishi terrier. Upset about leaf. Actually 2 dogs here. 7/10 would walk the shit out of https://t.co/r7mOb2m0UI | 7 | 10 | NaN | |
| 2174 | 666020888022790149 | 532 | 2535 | 2015-11-15 22:32:08 | Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj | 8 | 10 | None |
clean_images.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1484 entries, 0 to 1483 Data columns (total 8 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1484 non-null int64 1 jpg_url 1484 non-null object 2 img_num 1484 non-null int64 3 p1_dog 1484 non-null bool 4 p2_dog 1484 non-null bool 5 p3_dog 1484 non-null bool 6 dog_breed 1484 non-null object 7 confidence_levels 1484 non-null float64 dtypes: bool(3), float64(1), int64(2), object(2) memory usage: 73.9+ KB
final_df =pd.merge(TA_FT,clean_images, how ='inner')
final_df
| tweet_id | retweet_count | favorite_count | timestamp | text | rating_numerator | rating_denominator | name | dog_stage | jpg_url | img_num | p1_dog | p2_dog | p3_dog | dog_breed | confidence_levels | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892177421306343426 | 6514 | 33819 | 2017-08-01 00:17:27 | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | 13 | 10 | Tilly | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | True | True | True | Chihuahua | 0.323581 | |
| 1 | 891815181378084864 | 4328 | 25461 | 2017-07-31 00:18:03 | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | 12 | 10 | Archie | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | True | True | True | Chihuahua | 0.716012 | |
| 2 | 891327558926688256 | 9774 | 41048 | 2017-07-29 16:00:24 | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | 12 | 10 | Franklin | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | True | True | True | Basset | 0.555712 | |
| 3 | 891087950875897856 | 3261 | 20562 | 2017-07-29 00:08:17 | Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh | 13 | 10 | None | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | True | True | False | Chesapeake_bay_retriever | 0.425595 | |
| 4 | 890971913173991426 | 2158 | 12041 | 2017-07-28 16:27:12 | Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl | 13 | 10 | Jax | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | True | True | False | Appenzeller | 0.341703 | |
| 5 | 890729181411237888 | 16716 | 56848 | 2017-07-28 00:22:40 | When you watch your owner call another dog a good boy but then they turn back to you and say you're a great boy. 13/10 https://t.co/v0nONBcwxq | 13 | 10 | None | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | True | True | True | Pomeranian | 0.566142 | |
| 6 | 890609185150312448 | 4429 | 28226 | 2017-07-27 16:25:51 | This is Zoey. She doesn't want to be one of the scary sharks. Just wants to be a snuggly pettable boatpet. 13/10 #BarkWeek https://t.co/9TwLuAGH0b | 13 | 10 | Zoey | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | True | True | True | Irish_terrier | 0.487574 | |
| 7 | 890240255349198849 | 7711 | 32467 | 2017-07-26 15:59:51 | This is Cassie. She is a college pup. Studying international doggo communication and stick theory. 14/10 so elegant much sophisticate https://t.co/t1bfwz5S2A | 14 | 10 | Cassie | doggo | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | True | True | True | Pembroke | 0.511319 |
| 8 | 890006608113172480 | 7624 | 31166 | 2017-07-26 00:31:25 | This is Koda. He is a South Australian deckshark. Deceptively deadly. Frighteningly majestic. 13/10 would risk a petting #BarkWeek https://t.co/dVPW0B0Mme | 13 | 10 | Koda | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | True | True | True | Samoyed | 0.957979 | |
| 9 | 889880896479866881 | 5156 | 28268 | 2017-07-25 16:11:53 | This is Bruno. He is a service shark. Only gets out of the water to assist you. 13/10 terrifyingly good boy https://t.co/u1XPQMl29g | 13 | 10 | Bruno | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | True | True | False | French_bulldog | 0.377417 | |
| 10 | 889665388333682689 | 8538 | 38818 | 2017-07-25 01:55:32 | Here's a puppo that seems to be on the fence about something haha no but seriously someone help her. 13/10 https://t.co/BxvuXk0UCm | 13 | 10 | None | puppo | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | True | True | True | Pembroke | 0.966327 |
| 11 | 889638837579907072 | 4735 | 27672 | 2017-07-25 00:10:02 | This is Ted. He does his best. Sometimes that's not enough. But it's ok. 12/10 would assist https://t.co/f8dEDcrKSR | 12 | 10 | Ted | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | True | True | True | French_bulldog | 0.991650 | |
| 12 | 889531135344209921 | 2321 | 15359 | 2017-07-24 17:02:04 | This is Stuart. He's sporting his favorite fanny pack. Secretly filled with bones only. 13/10 puppared puppo #BarkWeek https://t.co/y70o6h3isq | 13 | 10 | Stuart | puppo | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | True | True | True | Golden_retriever | 0.953442 |
| 13 | 889278841981685760 | 5637 | 25652 | 2017-07-24 00:19:32 | This is Oliver. You're witnessing one of his many brutal attacks. Seems to be playing with his victim. 13/10 fr*ckin frightening #BarkWeek https://t.co/WpHvrQedPb | 13 | 10 | Oliver | https://pbs.twimg.com/ext_tw_video_thumb/889278779352338437/pu/img/VlbFB3v8H8VwzVNY.jpg | 1 | True | True | True | Whippet | 0.626152 | |
| 14 | 888917238123831296 | 4709 | 29611 | 2017-07-23 00:22:39 | This is Jim. He found a fren. Taught him how to sit like the good boys. 12/10 for both https://t.co/chxruIOUJN | 12 | 10 | Jim | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | True | True | True | Golden_retriever | 0.714719 | |
| 15 | 888804989199671297 | 4559 | 26080 | 2017-07-22 16:56:37 | This is Zeke. He has a new stick. Very proud of it. Would like you to throw it for him without taking it. 13/10 would do my best https://t.co/HTQ77yNQ5K | 13 | 10 | Zeke | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | True | True | True | Golden_retriever | 0.469760 | |
| 16 | 888554962724278272 | 3732 | 20290 | 2017-07-22 00:23:06 | This is Ralphus. He's powering up. Attempting maximum borkdrive. 13/10 inspirational af https://t.co/YnYAFCTTiK | 13 | 10 | Ralphus | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | True | True | True | Siberian_husky | 0.700377 | |
| 17 | 888078434458587136 | 3653 | 22201 | 2017-07-20 16:49:33 | This is Gerald. He was just told he didn't get the job he interviewed for. A h*ckin injustice. 12/10 didn't want the job anyway https://t.co/DK7iDPfuRX | 12 | 10 | Gerald | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | True | True | True | French_bulldog | 0.995026 | |
| 18 | 887705289381826560 | 5609 | 30779 | 2017-07-19 16:06:48 | This is Jeffrey. He has a monopoly on the pool noodles. Currently running a 'boop for two' midweek sale. 13/10 h*ckin strategic https://t.co/PhrUk20Q64 | 13 | 10 | Jeffrey | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | True | True | True | Basset | 0.821664 | |
| 19 | 887473957103951883 | 18781 | 69871 | 2017-07-19 00:47:34 | This is Canela. She attempted some fancy porch pics. They were unsuccessful. 13/10 someone help her https://t.co/cLyzpcUcMX | 13 | 10 | Canela | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | True | True | True | Pembroke | 0.809197 | |
| 20 | 887343217045368832 | 10737 | 34222 | 2017-07-18 16:08:03 | You may not have known you needed to see this today. 13/10 please enjoy (IG: emmylouroo) https://t.co/WZqNqygEyV | 13 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/887343120832229379/pu/img/6HSuFrW1lzI_9Mht.jpg | 1 | True | False | True | Mexican_hairless | 0.330741 | |
| 21 | 887101392804085760 | 6167 | 31061 | 2017-07-18 00:07:08 | This... is a Jubilant Antarctic House Bear. We only rate dogs. Please only send dogs. Thank you... 12/10 would suffocate in floof https://t.co/4Ad1jzJSdp | 12 | 10 | None | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | True | True | True | Samoyed | 0.733942 | |
| 22 | 886983233522544640 | 8084 | 35859 | 2017-07-17 16:17:36 | This is Maya. She's very shy. Rarely leaves her cup. 13/10 would find her an environment to thrive in https://t.co/I6oNy0CgiT | 13 | 10 | Maya | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | True | True | False | Chihuahua | 0.793469 | |
| 23 | 886736880519319552 | 3443 | 12306 | 2017-07-16 23:58:41 | This is Mingus. He's a wonderful father to his smol pup. Confirmed 13/10, but he needs your help\n\nhttps://t.co/bVi0Yr4Cff https://t.co/ISvKOSkd5b | 13 | 10 | Mingus | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | True | True | True | Kuvasz | 0.309706 | |
| 24 | 886366144734445568 | 3316 | 21524 | 2017-07-15 23:25:31 | This is Roscoe. Another pupper fallen victim to spontaneous tongue ejections. Get the BlepiPen immediate. 12/10 deep breaths Roscoe https://t.co/RGE08MIJox | 12 | 10 | Roscoe | pupper | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | True | True | True | French_bulldog | 0.999201 |
| 25 | 886258384151887873 | 6523 | 28469 | 2017-07-15 16:17:19 | This is Waffles. His doggles are pupside down. Unsure how to fix. 13/10 someone assist Waffles https://t.co/xZDA9Qsq1O | 13 | 10 | Waffles | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | True | False | False | Pug | 0.943575 | |
| 26 | 885984800019947520 | 7097 | 33382 | 2017-07-14 22:10:11 | Viewer discretion advised. This is Jimbo. He will rip ur finger right h*ckin off. Other dog clearly an accessory. 12/10 pls pet with caution https://t.co/BuveP0uMF1 | 12 | 10 | Jimbo | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | True | True | True | Blenheim_spaniel | 0.972494 | |
| 27 | 885528943205470208 | 6683 | 36689 | 2017-07-13 15:58:47 | This is Maisey. She fell asleep mid-excavation. Happens to the best of us. 13/10 would pat noggin approvingly https://t.co/tp1kQ8i9JF | 13 | 10 | Maisey | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | True | True | True | Pug | 0.369275 | |
| 28 | 884925521741709313 | 16439 | 68152 | 2017-07-12 00:01:00 | This is Earl. He found a hat. Nervous about what you think of it. 12/10 it's delightful, Earl https://t.co/MYJvdlNRVa | 12 | 10 | Earl | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | True | True | True | Italian_greyhound | 0.259916 | |
| 29 | 884876753390489601 | 6096 | 28514 | 2017-07-11 20:47:12 | This is Lola. It's her first time outside. Must test the earth and taste the atmosphere. 13/10 you're doing great Lola https://t.co/74TKAUsLkO | 13 | 10 | Lola | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | True | True | True | Chow | 0.822103 | |
| 30 | 884562892145688576 | 5100 | 24765 | 2017-07-11 00:00:02 | This is Kevin. He's just so happy. 13/10 what is your secret Kevin https://t.co/1r4MFCbCX5 | 13 | 10 | Kevin | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | True | True | True | Pug | 0.546406 | |
| 31 | 884441805382717440 | 5856 | 27478 | 2017-07-10 15:58:53 | I present to you, Pup in Hat. Pup in Hat is great for all occasions. Extremely versatile. Compact as h*ck. 14/10 (IG: itselizabethgales) https://t.co/vvBOcC2VdC | 14 | 10 | None | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | True | True | True | Pembroke | 0.993225 | |
| 32 | 884162670584377345 | 3128 | 20771 | 2017-07-09 21:29:42 | Meet Yogi. He doesn't have any important dog meetings today he just enjoys looking his best at all times. 12/10 for dangerously dapper doggo https://t.co/YSI00BzTBZ | 12 | 10 | Yogi | doggo | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | True | True | True | German_shepherd | 0.707046 |
| 33 | 883838122936631299 | 3586 | 22349 | 2017-07-09 00:00:04 | This is Noah. He can't believe someone made this mess. Got the vacuum out for you though. Offered to help clean pup. 12/10 super good boy https://t.co/V85xujjDDY | 12 | 10 | Noah | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | True | True | True | Doberman | 0.610946 | |
| 34 | 883482846933004288 | 10407 | 46860 | 2017-07-08 00:28:19 | This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/10 https://t.co/qjrljjt948 | 5 | 10 | Bella | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | True | True | True | Golden_retriever | 0.943082 | |
| 35 | 883360690899218434 | 3825 | 22986 | 2017-07-07 16:22:55 | Meet Grizzwald. He may be the floofiest floofer I ever did see. Lost eyes saving a schoolbus from a volcano erpuption. 13/10 heroic as h*ck https://t.co/rf661IFEYP | 13 | 10 | Grizzwald | floofer | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | True | True | True | Chow | 0.987997 |
| 36 | 883117836046086144 | 6949 | 37914 | 2017-07-07 00:17:54 | Please only send dogs. We don't rate mechanics, no matter how h*ckin good. Thank you... 13/10 would sneak a pat https://t.co/Se5fZ9wp5E | 13 | 10 | None | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | True | True | True | Golden_retriever | 0.949562 | |
| 37 | 882992080364220416 | 4122 | 24445 | 2017-07-06 15:58:11 | This is Rusty. He wasn't ready for the first pic. Clearly puppared for the second. 13/10 confirmed great boy https://t.co/tyER0KpdXj | 13 | 10 | Rusty | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | True | True | False | Eskimo_dog | 0.466778 | |
| 38 | 882762694511734784 | 5134 | 28903 | 2017-07-06 00:46:41 | This is Gus. He's quite the cheeky pupper. Already perfected the disinterested wink. 12/10 would let steal my girl https://t.co/D43I96SlVu | 12 | 10 | Gus | pupper | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | True | True | True | Labrador_retriever | 0.850050 |
| 39 | 882627270321602560 | 6342 | 28382 | 2017-07-05 15:48:34 | This is Stanley. He has his first swim lesson today. Doggle straps adjusted. Ready to go. 13/10 Phelps is nervous (IG: stanleythe_corgi) https://t.co/Nx52PGwH94 | 13 | 10 | Stanley | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | True | True | True | Pembroke | 0.542982 | |
| 40 | 882268110199369728 | 12118 | 45880 | 2017-07-04 16:01:23 | This is Alfy. You're witnessing his first watermelon experience. I think it was a success. 13/10 happy 4th Alfy 🇺🇸 https://t.co/fYP5RlutfA | 13 | 10 | Alfy | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | True | True | True | Golden_retriever | 0.762211 | |
| 41 | 881906580714921986 | 3533 | 24773 | 2017-07-03 16:04:48 | This is Rey. He's a Benebop Cumberfloof. 12/10 dangerously pettable https://t.co/503CgWbhxQ | 12 | 10 | Rey | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | True | True | False | Weimaraner | 0.291539 | |
| 42 | 881666595344535552 | 11099 | 51522 | 2017-07-03 00:11:11 | This is Gary. He couldn't miss this puppertunity for a selfie. Flawless focusing skills. 13/10 would boop intensely https://t.co/7CSWCl8I6s | 13 | 10 | Gary | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | True | True | True | Saluki | 0.529012 | |
| 43 | 881536004380872706 | 16570 | 50199 | 2017-07-02 15:32:16 | Here is a pupper approaching maximum borkdrive. Zooming at never before seen speeds. 14/10 paw-inspiring af \n(IG: puffie_the_chow) https://t.co/ghXBIIeQZF | 14 | 10 | NaN | pupper | https://pbs.twimg.com/ext_tw_video_thumb/881535971568889856/pu/img/9bawiZ--8FKywTkz.jpg | 1 | True | False | False | Samoyed | 0.281463 |
| 44 | 880872448815771648 | 3989 | 21734 | 2017-06-30 19:35:32 | Ugh not again. We only rate dogs. Please don't send in well-dressed floppy-tongued street penguins. Dogs only please. Thank you... 12/10 https://t.co/WiAMbTkDPf | 12 | 10 | None | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | True | True | True | Pembroke | 0.791416 | |
| 45 | 880465832366813184 | 6546 | 29075 | 2017-06-29 16:39:47 | This is Bella. She had her first beach experience this morning. Complete success. 12/10 would perform a sandy boop https://t.co/4VsFysDmiw | 12 | 10 | Bella | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | True | True | True | Golden_retriever | 0.913255 | |
| 46 | 880221127280381952 | 4436 | 27640 | 2017-06-29 00:27:25 | Meet Jesse. He's a Fetty Woof. His tongue ejects without warning. A true bleptomaniac. 12/10 would snug well https://t.co/fUod0tVmvK | 12 | 10 | Jesse | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | True | False | True | Chihuahua | 0.238525 | |
| 47 | 880095782870896641 | 4533 | 28150 | 2017-06-28 16:09:20 | Please don't send in photos without dogs in them. We're not @porch_rates. Insubordinate and churlish. Pretty good porch tho 11/10 https://t.co/HauE8M3Bu4 | 11 | 10 | None | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | True | True | True | Miniature_pinscher | 0.120298 | |
| 48 | 879862464715927552 | 3642 | 22667 | 2017-06-28 00:42:13 | This is Romeo. He would like to do an entrance. Requesting your immediate assistance. 13/10 https://t.co/Qh5aEkRQm9 | 13 | 10 | Romeo | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | True | True | True | Basset | 0.813507 | |
| 49 | 879492040517615616 | 3323 | 23822 | 2017-06-27 00:10:17 | This is Bailey. He thinks you should measure ear length for signs of growth instead. 12/10 https://t.co/IxM9IMKQq8 | 12 | 10 | Bailey | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | True | True | False | German_short-haired_pointer | 0.479896 | |
| 50 | 879415818425184262 | 45849 | 107956 | 2017-06-26 19:07:24 | This is Duddles. He did an attempt. 13/10 someone help him (vid by Georgia Felici) https://t.co/UDT7ZkcTgY | 13 | 10 | Duddles | https://pbs.twimg.com/ext_tw_video_thumb/879415784908390401/pu/img/cX7XI1TnUsseGET5.jpg | 1 | True | True | True | English_springer | 0.383404 | |
| 51 | 879008229531029506 | 2812 | 19317 | 2017-06-25 16:07:47 | This is Beau. That is Beau's balloon. He takes it everywhere. 13/10 would protect at all costs https://t.co/YDtpCjIPKN | 13 | 10 | Beau | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | True | True | True | Vizsla | 0.960513 | |
| 52 | 878776093423087618 | 4319 | 19763 | 2017-06-25 00:45:22 | This is Snoopy. He's a proud #PrideMonthPuppo. Impeccable handwriting for not having thumbs. 13/10 would love back #PrideMonth https://t.co/lNZwgNO4gS | 13 | 10 | Snoopy | puppo | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | True | True | True | Italian_greyhound | 0.734684 |
| 53 | 878281511006478336 | 1349 | 7913 | 2017-06-23 16:00:04 | Meet Shadow. In an attempt to reach maximum zooming borkdrive, he tore his ACL. Still 13/10 tho. Help him out below\n\nhttps://t.co/245xJJElsY https://t.co/lUiQH219v6 | 13 | 10 | Shadow | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | True | True | True | Basset | 0.320420 | |
| 54 | 878057613040115712 | 7181 | 42876 | 2017-06-23 01:10:23 | This is Emmy. She was adopted today. Massive round of pupplause for Emmy and her new family. 14/10 for all involved https://t.co/cwtWnHMVpe | 14 | 10 | Emmy | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | True | True | True | French_bulldog | 0.839097 | |
| 55 | 877736472329191424 | 17300 | 71144 | 2017-06-22 03:54:17 | This is Aja. She was just told she's a good dog. Suspicions confirmed. 13/10 would tell again https://t.co/lsPyyAiF1r | 13 | 10 | Aja | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | True | True | True | Chesapeake_bay_retriever | 0.837956 | |
| 56 | 877556246731214848 | 3994 | 23258 | 2017-06-21 15:58:08 | This is Penny. She's both pupset and fired pup. Not pleased w your barbaric attempts at cleanliness. 12/10 would enjoy more shampoo options https://t.co/OYdDlfOGXP | 12 | 10 | Penny | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | True | True | False | Basset | 0.995368 | |
| 57 | 877316821321428993 | 5414 | 27907 | 2017-06-21 00:06:44 | Meet Dante. At first he wasn't a fan of his new raincoat, then he saw his reflection. H*ckin handsome. 13/10 for water resistant good boy https://t.co/SHRTIo5pxc | 13 | 10 | Dante | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | True | True | True | Saluki | 0.509967 | |
| 58 | 877201837425926144 | 5880 | 27755 | 2017-06-20 16:29:50 | This is Nelly. He graduated with his dogtorate today. Wants to know if you're proud of him. 12/10 would give congratulatory boop https://t.co/4g4cfj3P4Y | 12 | 10 | Nelly | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | True | True | True | Pembroke | 0.931120 | |
| 59 | 876838120628539392 | 3506 | 21125 | 2017-06-19 16:24:33 | This is Ginger. She's having a ruff Monday. Too many pupper things going on. H*ckin exhausting. 12/10 would snug passionately https://t.co/j211oCDRs6 | 12 | 10 | Ginger | pupper | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | True | True | True | Bloodhound | 0.575751 |
| 60 | 876484053909872640 | 2511 | 19163 | 2017-06-18 16:57:37 | This is Benedict. He wants to thank you for this delightful urban walk. Hopes you know he loves you. 13/10 super duper good boy https://t.co/26BXueUgbs | 13 | 10 | Benedict | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | True | True | True | Golden_retriever | 0.874566 | |
| 61 | 876120275196170240 | 4903 | 28490 | 2017-06-17 16:52:05 | Meet Venti, a seemingly caffeinated puppoccino. She was just informed the weekend would include walks, pats and scritches. 13/10 much excite https://t.co/ejExJFq3ek | 13 | 10 | Venti | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.534327 | |
| 62 | 875747767867523072 | 4497 | 25773 | 2017-06-16 16:11:53 | This is Goose. He's a womanizer. Cheeky as h*ck, but also deep. Tongue slip game on another level. 13/10 will steal your girl https://t.co/V2WlACRJCN | 13 | 10 | Goose | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | True | True | True | Labrador_retriever | 0.799551 | |
| 63 | 875144289856114688 | 5081 | 22185 | 2017-06-15 00:13:52 | Meet Nugget and Hank. Nugget took Hank's bone. Hank is wondering if you would please return it to him. Both 13/10 would not intervene https://t.co/ogith9ejNj | 13 | 10 | Nugget | https://pbs.twimg.com/ext_tw_video_thumb/875144175078957056/pu/img/BRi_l7vUdpb93Knf.jpg | 1 | True | True | False | Siberian_husky | 0.245048 | |
| 64 | 875021211251597312 | 4922 | 26022 | 2017-06-14 16:04:48 | Guys please stop sending pictures without any dogs in th- oh never mind hello excuse me sir. 12/10 stealthy as h*ck https://t.co/brCQoqc8AW | 12 | 10 | None | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | True | True | True | West_highland_white_terrier | 0.714319 | |
| 65 | 874680097055178752 | 4875 | 28439 | 2017-06-13 17:29:20 | Meet Cash. He hath acquired a stick. A very good stick tbh. 12/10 would pat head approvingly https://t.co/lZhtizkURD | 12 | 10 | Cash | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | True | True | True | Labrador_retriever | 0.836052 | |
| 66 | 874296783580663808 | 4308 | 26651 | 2017-06-12 16:06:11 | This is Jed. He may be the fanciest pupper in the game right now. Knows it too. 13/10 would sign modeling contract https://t.co/0YplNnSMEm | 13 | 10 | Jed | pupper | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | True | True | True | Cocker_spaniel | 0.437216 |
| 67 | 874057562936811520 | 4125 | 23134 | 2017-06-12 00:15:36 | I can't believe this keeps happening. This, is a birb taking a bath. We only rate dogs. Please only send dogs. Thank you... 12/10 https://t.co/pwY9PQhtP2 | 12 | 10 | None | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | True | True | True | Flat-coated_retriever | 0.832177 | |
| 68 | 874012996292530176 | 11007 | 35501 | 2017-06-11 21:18:31 | This is Sebastian. He can't see all the colors of the rainbow, but he can see that this flag makes his human happy. 13/10 #PrideMonth puppo https://t.co/XBE0evJZ6V | 13 | 10 | Sebastian | puppo | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | True | True | True | Cardigan | 0.806674 |
| 69 | 873580283840344065 | 4143 | 24837 | 2017-06-10 16:39:04 | We usually don't rate Deck-bound Saskatoon Black Bears, but this one is h*ckin flawless. Sneaky tongue slip too. 13/10 would hug firmly https://t.co/mNuMH9400n | 13 | 10 | None | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | True | True | True | Newfoundland | 0.678537 | |
| 70 | 873213775632977920 | 1667 | 7467 | 2017-06-09 16:22:42 | This is Sierra. She's one precious pupper. Absolute 12/10. Been in and out of ICU her whole life. Help Sierra below\n\nhttps://t.co/Xp01EU3qyD https://t.co/V5lkvrGLdQ | 12 | 10 | Sierra | pupper | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | True | True | True | Vizsla | 0.619782 |
| 71 | 872967104147763200 | 5669 | 28031 | 2017-06-09 00:02:31 | Here's a very large dog. He has a date later. Politely asked this water person to check if his breath is bad. 12/10 good to go doggo https://t.co/EMYIdoblMR | 12 | 10 | None | doggo | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | True | True | True | Labrador_retriever | 0.476913 |
| 72 | 872820683541237760 | 3884 | 15029 | 2017-06-08 14:20:41 | Here are my favorite #dogsatpollingstations \nMost voted for a more consistent walking schedule and to increase daily pats tenfold. All 13/10 https://t.co/17FVMl4VZ5 | 13 | 10 | None | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | True | True | True | Pug | 0.999120 | |
| 73 | 872620804844003328 | 3911 | 21309 | 2017-06-08 01:06:27 | This is Monkey. She's supporting owners everywhere with her fancy #PrideMonth bandana. 13/10 love is love is love... https://t.co/lUcpnZDPz9 | 13 | 10 | Monkey | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | True | True | True | Cocker_spaniel | 0.513191 | |
| 74 | 872486979161796608 | 9429 | 41606 | 2017-06-07 16:14:40 | We. Only. Rate. Dogs. Do not send in other things like this fluffy floor shark clearly ready to attack. Get it together guys... 12/10 https://t.co/BZHiKx3FpQ | 12 | 10 | None | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | True | True | True | Pembroke | 0.931861 | |
| 75 | 872261713294495745 | 6649 | 35085 | 2017-06-07 01:19:32 | This is Harry. His ears are activated one at a time. Incredibly rare to witness in person. Very special moment here. 13/10 blessed as h*ck https://t.co/ejHvGDfWoa | 13 | 10 | Harry | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | True | True | True | Labrador_retriever | 0.972019 | |
| 76 | 871879754684805121 | 11918 | 39090 | 2017-06-06 00:01:46 | Say hello to Lassie. She's celebrating #PrideMonth by being a splendid mix of astute and adorable. Proudly supupporting her owner. 13/10 https://t.co/uK6PNyeh9w | 13 | 10 | Lassie | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | True | True | True | Shetland_sheepdog | 0.969171 | |
| 77 | 871762521631449091 | 3678 | 20787 | 2017-06-05 16:15:56 | This is Rover. As part of pupper protocol he had to at least attempt to eat the plant. Confirmed not tasty. Needs peanut butter. 12/10 https://t.co/AiVljI6QCg | 12 | 10 | Rover | pupper | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | True | True | True | Labrador_retriever | 0.921393 |
| 78 | 871515927908634625 | 3628 | 20730 | 2017-06-04 23:56:03 | This is Napolean. He's a Raggedy East Nicaraguan Zoom Zoom. Runs on one leg. Built for deception. No eyes. Good with kids. 12/10 great doggo https://t.co/PR7B7w1rUw | 12 | 10 | Napolean | doggo | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | True | True | False | Komondor | 0.974781 |
| 79 | 871032628920680449 | 3999 | 23255 | 2017-06-03 15:55:36 | This is Boomer. He's doing an advanced water takeoff. The opposite of Sully. Ears for control, mlem for style. 13/10 simply breathtaking https://t.co/noNpY2Laoo | 13 | 10 | Boomer | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | True | False | False | Kelpie | 0.398053 | |
| 80 | 870374049280663552 | 27680 | 85011 | 2017-06-01 20:18:38 | This is Zoey. She really likes the planet. Would hate to see willful ignorance and the denial of fairly elemental science destroy it. 13/10 https://t.co/T1xlgaPujm | 13 | 10 | Zoey | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | True | True | True | Golden_retriever | 0.841001 | |
| 81 | 870308999962521604 | 4384 | 22453 | 2017-06-01 16:00:09 | This is Rumble, but he's not ready to. Would rather fall asleep in his bath bucket. 13/10 would attempt a boop without waking https://t.co/MVQCzrF1g9 | 13 | 10 | Rumble | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | True | True | True | Greater_swiss_mountain_dog | 0.622752 | |
| 82 | 869772420881756160 | 10663 | 43710 | 2017-05-31 04:27:59 | This is Dewey (pronounced "covfefe"). He's having a good walk. Arguably the best walk. 13/10 would snug softly https://t.co/HciEaJkC4D | 13 | 10 | Dewey | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | True | True | True | Pembroke | 0.980148 | |
| 83 | 869702957897576449 | 6728 | 29116 | 2017-05-30 23:51:58 | Meet Stanley. He likes road trips. Will shift for you. One ear more effective than other. 13/10 we don't leave until you buckle pup Stanley https://t.co/vmCu3PFCQq | 13 | 10 | Stanley | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | True | True | True | Pembroke | 0.993449 | |
| 84 | 869596645499047938 | 3327 | 16476 | 2017-05-30 16:49:31 | This is Scout. He just graduated. Officially a doggo now. Have fun with taxes and losing sight of your ambitions. 12/10 would throw cap for https://t.co/DsA2hwXAJo | 12 | 10 | Scout | doggo | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | True | True | False | Chihuahua | 0.955156 |
| 85 | 869227993411051520 | 4023 | 21112 | 2017-05-29 16:24:37 | This is Gizmo. His favorite thing is standing pupright like a hooman. Sneaky tongue slip status achieved. 13/10 would boop well https://t.co/IoR3n1fiiQ | 13 | 10 | Gizmo | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | True | True | True | Pembroke | 0.664181 | |
| 86 | 868622495443632128 | 6275 | 28295 | 2017-05-28 00:18:35 | Here's a h*ckin peaceful boy. Unbothered by the comings and goings. 13/10 please reveal your wise ways https://t.co/yeaH8Ej5eM | 13 | 10 | None | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | True | True | True | Labrador_retriever | 0.868107 | |
| 87 | 868552278524837888 | 2240 | 10539 | 2017-05-27 19:39:34 | Say hello to Cooper. His expression is the same wet or dry. Absolute 12/10 but Coop desperately requests your help\n\nhttps://t.co/ZMTE4Mr69f https://t.co/7RyeXTYLNi | 12 | 10 | Cooper | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | True | True | True | Whippet | 0.378151 | |
| 88 | 867900495410671616 | 4439 | 24964 | 2017-05-26 00:29:37 | Unbelievable. We only rate dogs. Please don't send in non-canines like the "I" from Pixar's opening credits. Thank you... 12/10 https://t.co/JMhDNv5wXZ | 12 | 10 | None | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | True | True | True | Labrador_retriever | 0.522644 | |
| 89 | 867774946302451713 | 7788 | 35179 | 2017-05-25 16:10:44 | Meet Harold. He's h*ckin cooperative. 13/10 good work Harold https://t.co/ZYg3NZGICa | 13 | 10 | Harold | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | True | True | True | Border_collie | 0.661953 | |
| 90 | 867421006826221569 | 2697 | 16755 | 2017-05-24 16:44:18 | This is Shikha. She just watched you drop a skittle on the ground and still eat it. Could not be less impressed. 12/10 superior puppo https://t.co/XZlZKd73go | 12 | 10 | Shikha | puppo | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | True | True | True | Eskimo_dog | 0.616457 |
| 91 | 867051520902168576 | 8425 | 33420 | 2017-05-23 16:16:06 | Oh my this spooked me up. We only rate dogs, not happy ghosts. Please send dogs only. It's a very simple premise. Thank you... 13/10 https://t.co/M5Rz0R8SIQ | 13 | 10 | None | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | True | True | True | Samoyed | 0.471403 | |
| 92 | 866686824827068416 | 3727 | 20070 | 2017-05-22 16:06:55 | This is Lili. She can't believe you betrayed her with bath time. Never looking you in the eye again. 12/10 would puppologize profusely https://t.co/9b9J46E86Z | 12 | 10 | Lili | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | True | True | True | Flat-coated_retriever | 0.514730 | |
| 93 | 866450705531457537 | 32883 | 106827 | 2017-05-22 00:28:40 | This is Jamesy. He gives a kiss to every other pupper he sees on his walk. 13/10 such passion, much tender https://t.co/wk7TfysWHr | 13 | 10 | Jamesy | pupper | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | True | True | True | French_bulldog | 0.905334 |
| 94 | 866334964761202691 | 15546 | 54720 | 2017-05-21 16:48:45 | This is Coco. At first I thought she was a cloud but clouds don't bork with such passion. 12/10 would hug softly https://t.co/W86h5dgR6c | 12 | 10 | Coco | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | True | True | True | Samoyed | 0.984086 | |
| 95 | 865718153858494464 | 6008 | 26640 | 2017-05-19 23:57:46 | Meet Boomer. He's just checking pup on you. Hopes you had a good day. If not, he hopes he made it better. 13/10 extremely good boy https://t.co/pozUoHLkGg | 13 | 10 | Boomer | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | True | True | True | Golden_retriever | 0.673664 | |
| 96 | 865359393868664832 | 5384 | 27530 | 2017-05-19 00:12:11 | This is Sammy. Her tongue ejects without warning sometimes. It's a serious condition. Needs a hefty dose from a BlepiPen. 13/10 https://t.co/g20EmqK7vc | 13 | 10 | Sammy | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | True | True | True | Chesapeake_bay_retriever | 0.832435 | |
| 97 | 865006731092295680 | 8209 | 29063 | 2017-05-18 00:50:50 | This is Nelly. He really hopes you like his Hawaiian shirt. He already tore the tags off. 13/10 h*ck of a puppurchase https://t.co/LbkG5CiM7o | 13 | 10 | Nelly | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | True | True | True | Pembroke | 0.989882 | |
| 98 | 864279568663928832 | 3266 | 15195 | 2017-05-16 00:41:21 | This is Meatball. He doing what's known in the industry as a mid-strut mlem. H*ckin fancy boy. 12/10 I'd do anything for Meatball https://t.co/S2HdmFFPck | 12 | 10 | Meatball | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | True | True | True | Bull_mastiff | 0.668613 | |
| 99 | 863553081350529029 | 4489 | 15935 | 2017-05-14 00:34:33 | This is Neptune. He's a backpup vocalist for the Dixie Chicks. 13/10 (vid by @AmiWinehouse) https://t.co/tordvmaaop | 13 | 10 | Neptune | https://pbs.twimg.com/ext_tw_video_thumb/863553036815355904/pu/img/B6Dos-XOD8l82tK7.jpg | 1 | True | True | True | Eskimo_dog | 0.413330 | |
| 100 | 863432100342583297 | 5664 | 24829 | 2017-05-13 16:33:49 | This is Belle. She's never been more pupset. Encountered the worst imaginable type of zone. 12/10 would do anything to cheer pup https://t.co/fGQUzR8w3H | 12 | 10 | Belle | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.690517 | |
| 101 | 863079547188785154 | 1195 | 9094 | 2017-05-12 17:12:53 | Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen | 14 | 10 | None | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | True | True | False | Lakeland_terrier | 0.275242 | |
| 102 | 863062471531167744 | 2687 | 8945 | 2017-05-12 16:05:02 | Say hello to Quinn. She's quite the goofball. Not even a year old. Confirmed 13/10 but she really needs your help \n\nhttps://t.co/MOBkQnyHib https://t.co/EsOB4rLEKt | 13 | 10 | Quinn | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | True | True | True | French_bulldog | 0.935804 | |
| 103 | 862831371563274240 | 5457 | 20011 | 2017-05-12 00:46:44 | This is Zooey. She's the world's biggest fan of illiterate delivery people. 13/10 not your fault they don't listen, Zooey https://t.co/ixOFQ1tfqE | 13 | 10 | Zooey | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | True | True | True | Australian_terrier | 0.207281 | |
| 104 | 862722525377298433 | 3809 | 17779 | 2017-05-11 17:34:13 | This is Dave. He passed the h*ck out. It's barely the afternoon on a Thursday, Dave. Get it together. Still 11/10 would boop mid-snooze https://t.co/Eme9Uar6v2 | 11 | 10 | Dave | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | True | True | True | Basset | 0.393330 | |
| 105 | 862096992088072192 | 21840 | 66437 | 2017-05-10 00:08:34 | We only rate dogs. Please don't send perfectly toasted marshmallows attempting to drive. Thank you... 13/10 https://t.co/nvZyyrp0kd | 13 | 10 | None | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | True | True | True | Chow | 0.677589 | |
| 106 | 861383897657036800 | 11528 | 37744 | 2017-05-08 00:54:59 | This is Hobbes. He's never seen bubbles before. 13/10 deep breaths buddy https://t.co/QFRlbZw4Z1 | 13 | 10 | Hobbes | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | True | True | True | Cardigan | 0.771008 | |
| 107 | 861005113778896900 | 4119 | 17538 | 2017-05-06 23:49:50 | This is Burt. He thinks your thesis statement is comically underdeveloped. 12/10 intellectual af https://t.co/jH6EN9cEn6 | 12 | 10 | Burt | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | True | True | False | German_shepherd | 0.507951 | |
| 108 | 860563773140209665 | 2334 | 7878 | 2017-05-05 18:36:06 | Meet Lorenzo. He's an avid nifty hat wearer and absolute 13/10, but he needs your help to beat cancer. Link below\n\nhttps://t.co/qZdSdzm08p https://t.co/oDIQ1KkdPt | 13 | 10 | Lorenzo | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | True | True | True | Cardigan | 0.583936 | |
| 109 | 860524505164394496 | 5698 | 24678 | 2017-05-05 16:00:04 | This is Carl. He likes to dance. Doesn't care what you think about it. 13/10 h*ckin confident pup https://t.co/C2zHcNIu4I | 13 | 10 | Carl | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | True | True | True | Bedlington_terrier | 0.286558 | |
| 110 | 859924526012018688 | 4349 | 20021 | 2017-05-04 00:15:58 | Meet Milky. She has no idea what happened. Just as pupset as you. Perhaps a sheep exploded. Even offered to help clean. 12/10 very good girl https://t.co/g8vpXFzw29 | 12 | 10 | Milky | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | True | True | False | French_bulldog | 0.254587 | |
| 111 | 859607811541651456 | 1704 | 19476 | 2017-05-03 03:17:27 | Sorry for the lack of posts today. I came home from school and had to spend quality time with my puppo. Her name is Zoey and she's 13/10 https://t.co/BArWupFAn0 | 13 | 10 | None | puppo | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | True | True | True | Golden_retriever | 0.895529 |
| 112 | 859196978902773760 | 25661 | 75193 | 2017-05-02 00:04:57 | We only rate dogs. This is quite clearly a smol broken polar bear. We'd appreciate if you only send dogs. Thank you... 12/10 https://t.co/g2nSyGenG9 | 12 | 10 | NaN | https://pbs.twimg.com/ext_tw_video_thumb/859196962498805762/pu/img/-yBpr4-o4GJZECYE.jpg | 1 | False | True | False | Angora | 0.224218 | |
| 113 | 858843525470990336 | 3771 | 16304 | 2017-05-01 00:40:27 | I have stumbled puppon a doggo painting party. They're looking to be the next Pupcasso or Puppollock. All 13/10 would put it on the fridge https://t.co/cUeDMlHJbq | 13 | 10 | None | doggo | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | True | True | True | Golden_retriever | 0.578120 |
| 114 | 858471635011153920 | 5271 | 22640 | 2017-04-30 00:02:42 | This is Sophie. She just arrived. Used pawority shipping. Speedy as h*ck delivery. 13/10 would carefully assemble https://t.co/8jOC4zhNxy | 13 | 10 | Sophie | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | True | True | True | Pembroke | 0.987407 | |
| 115 | 858107933456039936 | 3154 | 16524 | 2017-04-28 23:57:28 | This is Wyatt. He had an interview earlier today. Was just told he didn't get the job. A h*ckin injustice. Still 12/10 keep your chin pup https://t.co/QXA4sCXSDF | 12 | 10 | Wyatt | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | True | True | False | Golden_retriever | 0.863874 | |
| 116 | 857989990357356544 | 2812 | 16952 | 2017-04-28 16:08:49 | This is Rosie. She was just informed of the walk that's about to happen. Knows there are many a stick along the way. 12/10 such excite https://t.co/sOl7cFaP5X | 12 | 10 | Rosie | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | True | True | True | French_bulldog | 0.432580 | |
| 117 | 857746408056729600 | 11524 | 36021 | 2017-04-28 00:00:54 | Meet Thor. He doesn't have finals because he's a dog but is pupset you have finals. Just wants to play. 13/10 would abandon education for https://t.co/7IFn3rkJai | 13 | 10 | Thor | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | True | True | True | Labrador_retriever | 0.919832 | |
| 118 | 857393404942143489 | 1785 | 6236 | 2017-04-27 00:38:11 | Instead of the usual nightly dog rate, I'm sharing this story with you. Meeko is 13/10 and would like your help \n\nhttps://t.co/Mj4j6QoIJk https://t.co/JdNE5oqYEV | 13 | 10 | None | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | True | True | True | Malamute | 0.841597 | |
| 119 | 857263160327368704 | 4934 | 21041 | 2017-04-26 16:00:39 | This is Oscar and Oliver. Oliver shrunk Oscar. Oscar isn't pleased about it. Quite pupset tbh. Oliver doesn't seem to mind. Both 13/10 https://t.co/e3U4NReleC | 13 | 10 | Oscar | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | True | True | True | Samoyed | 0.998021 | |
| 120 | 857029823797047296 | 4364 | 19910 | 2017-04-26 00:33:27 | This is Zeke. He performs group cheeky wink tutorials. Pawfect execution here. 12/10 would wink back https://t.co/uMH5CLjXJu | 12 | 10 | Zeke | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | True | True | True | Golden_retriever | 0.968623 | |
| 121 | 856543823941562368 | 3131 | 17135 | 2017-04-24 16:22:16 | This is Callie. She'll be your navigator today. Takes her job very seriously. Will shift for you. One ear always in the pupholder. 12/10 https://t.co/Bh9DtLhIBO | 12 | 10 | Callie | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | True | False | True | Boston_bull | 0.306910 | |
| 122 | 856526610513747968 | 2068 | 12446 | 2017-04-24 15:13:52 | THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA | 14 | 10 | None | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | True | True | True | Old_english_sheepdog | 0.798481 | |
| 123 | 855851453814013952 | 19196 | 47844 | 2017-04-22 18:31:02 | Here's a puppo participating in the #ScienceMarch. Cleverly disguising her own doggo agenda. 13/10 would keep the planet habitable for https://t.co/cMhq16isel | 13 | 10 | None | doggo, puppo | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | True | True | True | Flat-coated_retriever | 0.321676 |
| 124 | 855459453768019968 | 8987 | 31657 | 2017-04-21 16:33:22 | Guys, we only rate dogs. This is quite clearly a bulbasaur. Please only send dogs. Thank you... 12/10 human used pet, it's super effective https://t.co/Xc7uj1C64x | 12 | 10 | NaN | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | True | True | True | Blenheim_spaniel | 0.389513 | |
| 125 | 854732716440526848 | 6690 | 24188 | 2017-04-19 16:25:34 | This is Marlee. She fetched a flower and immediately requested that it be placed behind her ear. 12/10 elegant af https://t.co/nJztIEON5s | 12 | 10 | Marlee | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | True | True | True | Pembroke | 0.695548 | |
| 126 | 854482394044301312 | 7608 | 31131 | 2017-04-18 23:50:52 | This is Arya. She can barely contain her excitement for more peanut butter. Also patriotic af. 13/10 https://t.co/AL4Ahm1Rm5 | 13 | 10 | Arya | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | True | True | True | Chihuahua | 0.260242 | |
| 127 | 854365224396361728 | 5159 | 20046 | 2017-04-18 16:05:17 | This is Einstein. He's having a really good day. Hopes you are too. H*ckin nifty tongue. 13/10 would snug intensely https://t.co/mdaQhhfpv6 | 13 | 10 | Einstein | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | True | True | True | Pembroke | 0.907080 | |
| 128 | 854010172552949760 | 3433 | 17169 | 2017-04-17 16:34:26 | At first I thought this was a shy doggo, but it's actually a Rare Canadian Floofer Owl. Amateurs would confuse the two. 11/10 only send dogs https://t.co/TXdT3tmuYk | 11 | 10 | None | doggo, floofer | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | True | True | True | English_springer | 0.354733 |
| 129 | 853760880890318849 | 6403 | 30414 | 2017-04-17 00:03:50 | Say hello to Alice. I'm told she enjoys car rides and smells good. 12/10 would give her everything she could ever want https://t.co/yT4vw8y77x | 12 | 10 | Alice | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | True | True | True | Miniature_pinscher | 0.292519 | |
| 130 | 853639147608842240 | 11265 | 37198 | 2017-04-16 16:00:07 | A photographer took pictures before and after he told his bunny he's a good boy. Here are the results. 13/10 https://t.co/wiQZIsaWUe | 13 | 10 | None | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | True | True | True | German_shepherd | 0.509879 | |
| 131 | 852912242202992640 | 2037 | 9658 | 2017-04-14 15:51:39 | Meet Benny. He likes being adorable and making fun of you while you're on the trampoline. 12/10 let's help him out\n\nhttps://t.co/aVMjBqAy1x https://t.co/7gx2LksT3U | 12 | 10 | Benny | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | True | True | True | Great_dane | 0.783765 | |
| 132 | 852672615818899456 | 2388 | 15939 | 2017-04-13 23:59:28 | This is Aspen. She's never tasted a stick so succulent. On the verge of tears. A face of pure appreciation. 12/10 https://t.co/VlyBzOXHEW | 12 | 10 | Aspen | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | True | True | True | Golden_retriever | 0.711235 | |
| 133 | 852553447878664193 | 3885 | 17492 | 2017-04-13 16:05:56 | This is Jarod. He likes having his belly brushed. Tongue ejects when you hit the right spot. 13/10 downright h*ckin adorable https://t.co/ArnxkyD2kC | 13 | 10 | Jarod | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | True | True | True | Bloodhound | 0.186498 | |
| 134 | 851591660324737024 | 3819 | 17300 | 2017-04-11 00:24:08 | Oh jeez u did me quite the spook little fella. We normally don't rate triceratops but this one seems suspiciously good. 11/10 would pet well https://t.co/BMtfCmNbnS | 11 | 10 | None | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | True | True | True | Cardigan | 0.394507 | |
| 135 | 850753642995093505 | 10352 | 33348 | 2017-04-08 16:54:09 | This is Kyle. He made a joke about your shoes, then stuck his tongue out at you. Uncalled for. Step the h*ck up Kyle. 11/10 would forgive https://t.co/hLQ2Ilg2uN | 11 | 10 | Kyle | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | True | True | True | Pug | 0.996952 | |
| 136 | 850380195714523136 | 2915 | 13994 | 2017-04-07 16:10:12 | This is Leo. He's a personal triathlon coach. Currently overseeing this athlete's push-pups. H*ckin brutal. 13/10 would do all he asks of me https://t.co/FXZQtBcnTO | 13 | 10 | Leo | https://pbs.twimg.com/ext_tw_video_thumb/850380153985355777/pu/img/lFouhg-EZvJs8eMr.jpg | 1 | True | True | True | Yorkshire_terrier | 0.249012 | |
| 137 | 850019790995546112 | 5459 | 21944 | 2017-04-06 16:18:05 | Say hello to Boomer. He's a sandy pupper. Having a h*ckin blast. 12/10 would pet passionately https://t.co/ecb3LvExde | 12 | 10 | Boomer | pupper | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | True | True | True | Shetland_sheepdog | 0.759907 |
| 138 | 849776966551130114 | 8404 | 32390 | 2017-04-06 00:13:11 | Seriously guys? Again? We only rate dogs. Please stop submitting other things like this super good hammerhead shark. Thank you... 12/10 https://t.co/TCMC90mSOT | 12 | 10 | None | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | True | True | False | Chihuahua | 0.292092 | |
| 139 | 848690551926992896 | 4826 | 27104 | 2017-04-03 00:16:10 | Please stop sending in animals other than dogs. We only rate dogs. Not Furry Ecuadorian Sea Turtles. Thank you... 12/10 https://t.co/UOE79zb6VU | 12 | 10 | None | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | True | True | True | Flat-coated_retriever | 0.823648 | |
| 140 | 848324959059550208 | 4037 | 20229 | 2017-04-02 00:03:26 | Meet Odin. He's supposed to be giving directions but he'd rather look at u like that. Should probably buckle pup. 12/10 distracting as h*ck https://t.co/1pSqUbLQ5Z | 12 | 10 | Odin | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | True | True | True | Malamute | 0.544576 | |
| 141 | 848212111729840128 | 3444 | 17618 | 2017-04-01 16:35:01 | This is Jerry. He's doing a distinguished tongue slip. Slightly patronizing tbh. You think you're better than us, Jerry? 6/10 hold me back https://t.co/DkOBbwulw1 | 6 | 10 | Jerry | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | True | True | False | Bedlington_terrier | 0.333486 | |
| 142 | 847842811428974592 | 1522 | 5935 | 2017-03-31 16:07:33 | This is Rontu. He is described as a pal, cuddle bug, protector and constant shadow. 12/10, but he needs your help\n\nhttps://t.co/zK4cpKPFfU https://t.co/7Xvoalr798 | 12 | 10 | Rontu | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.951337 | |
| 143 | 847606175596138505 | 3774 | 20208 | 2017-03-31 00:27:14 | This is Cannon. He just heard something behind him. Fr*ckin frightened af. 12/10 don't look back just run https://t.co/WTPBWT6Ux1 | 12 | 10 | Cannon | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | True | True | False | Cardigan | 0.413688 | |
| 144 | 847251039262605312 | 4800 | 22036 | 2017-03-30 00:56:03 | This is Furzey. He's doing an elevated sandy zoom. Adjusts ears to steer. 12/10 would pet mid flight https://t.co/zhbRIZQgnq | 12 | 10 | Furzey | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | True | True | True | Airedale | 0.495380 | |
| 145 | 847157206088847362 | 6572 | 21588 | 2017-03-29 18:43:12 | Meet Daisy. She's been pup for adoption for months now but hasn't gotten any applications. 11/10 let's change that\n\nhttps://t.co/Jlb9L0m3J0 https://t.co/Eh7fGFuy6r | 11 | 10 | Daisy | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | True | True | True | Staffordshire_bullterrier | 0.219609 | |
| 146 | 846874817362120707 | 4404 | 21685 | 2017-03-29 00:01:05 | This is Tuck. As you can see, he's rather h*ckin rare. Taken seriously until his legs are seen. Tail stuck in a permanent zoom. 13/10 https://t.co/P7PBGqrKSe | 13 | 10 | Tuck | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | True | True | True | Shetland_sheepdog | 0.450539 | |
| 147 | 846514051647705089 | 13076 | 48410 | 2017-03-28 00:07:32 | This is Barney. He's an elder doggo. Hitches a ride when he gets tired. Waves goodbye before he leaves. 13/10 please come back soon https://t.co/cFAasDXauK | 13 | 10 | Barney | doggo | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | True | True | True | Golden_retriever | 0.650003 |
| 148 | 846153765933735936 | 10226 | 34394 | 2017-03-27 00:15:53 | This is Vixen. He really likes bananas. Steals them when he thinks nobody's watching. 13/10 opportunistic af https://t.co/a0CkS5ExFR | 13 | 10 | Vixen | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | True | True | True | Giant_schnauzer | 0.346468 | |
| 149 | 846042936437604353 | 3224 | 17256 | 2017-03-26 16:55:29 | Meet Jarvis. The snow pupsets him. Officially ready for summer. 12/10 would perform a chilly boop https://t.co/0hLkztpiOW | 12 | 10 | Jarvis | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | True | True | True | Golden_retriever | 0.961110 | |
| 150 | 845812042753855489 | 9894 | 31737 | 2017-03-26 01:38:00 | We usually don't rate polar bears but this one seems extra good. Majestic as h*ck. 13/10 would hug for a while https://t.co/TLNexlqzXP | 13 | 10 | None | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | True | True | False | Samoyed | 0.979803 | |
| 151 | 845677943972139009 | 5365 | 27154 | 2017-03-25 16:45:08 | C'mon guys. Please only send in dogs. We only rate dogs, not Exceptional-Tongued Peruvian Floor Bears. Thank you... 12/10 https://t.co/z30iQLiXNo | 12 | 10 | None | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | True | True | True | Chow | 0.808681 | |
| 152 | 845397057150107648 | 2072 | 8241 | 2017-03-24 22:08:59 | Say hello to Mimosa. She's an emotional support doggo who helps her owner with PTSD. 13/10, but she needs your help\n\nhttps://t.co/L6mLzrd7Mx https://t.co/jMutBFdw5o | 13 | 10 | Mimosa | doggo | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | True | True | True | Dandie_dinmont | 0.394404 |
| 153 | 845306882940190720 | 6039 | 25225 | 2017-03-24 16:10:40 | This is Pickles. She's a silly pupper. Thinks she's a dish. 12/10 would dry https://t.co/7mPCF4ZwEk | 12 | 10 | Pickles | pupper | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | True | True | True | Irish_water_spaniel | 0.567475 |
| 154 | 844973813909606400 | 3617 | 16361 | 2017-03-23 18:07:10 | This is Brady. He's a recovering alcoholic. Demonstrating incredible restraint here. 12/10 don't give pup, don't give in, Brady https://t.co/B1iBuSq3hr | 12 | 10 | Brady | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | True | True | True | Labrador_retriever | 0.742421 | |
| 155 | 844704788403113984 | 11633 | 42022 | 2017-03-23 00:18:10 | This is Luna. It's her first time outside and a bee stung her nose. Completely h*ckin uncalled for. 13/10 where's the bee I just wanna talk https://t.co/2RYiLGHuPN | 13 | 10 | Luna | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | True | True | True | Labrador_retriever | 0.980213 | |
| 156 | 844223788422217728 | 2450 | 14753 | 2017-03-21 16:26:50 | This is Margo. She just dug pup a massive hole. Can't wait for you to see it. H*ckin proud of herself. 12/10 would forgive then pet https://t.co/H38HB6rBTx | 12 | 10 | Margo | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | True | True | True | Labrador_retriever | 0.719510 | |
| 157 | 843856843873095681 | 5220 | 23211 | 2017-03-20 16:08:44 | Say hello to Sadie and Daisy. They do all their shopping together. Can never agree on what to get. Like an old married pupple. Both 12/10 https://t.co/f5C5l5wa0e | 12 | 10 | Sadie | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | True | True | True | Labrador_retriever | 0.922540 | |
| 158 | 843604394117681152 | 3081 | 18310 | 2017-03-19 23:25:35 | This is Hank. He's been outside for 3 minutes and already made a friend. Way to go Hank. 11/10 for both https://t.co/wHUElL84RC | 11 | 10 | Hank | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | True | True | True | Labrador_retriever | 0.430583 | |
| 159 | 843235543001513987 | 6852 | 23315 | 2017-03-18 22:59:54 | This is Tycho. She just had new wheels installed. About to do a zoom. 0-60 in 2.4 seconds. 13/10 inspirational as h*ck https://t.co/DKwp2ByMsL | 13 | 10 | Tycho | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | True | True | True | Pembroke | 0.958452 | |
| 160 | 842846295480000512 | 4023 | 16440 | 2017-03-17 21:13:10 | This is Charlie. He's wishing you a very fun and safe St. Pawtrick's Day. 13/10 festive af https://t.co/nFpNgCWWYs | 13 | 10 | Charlie | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | True | True | True | Labrador_retriever | 0.461076 | |
| 161 | 842535590457499648 | 3937 | 19637 | 2017-03-17 00:38:32 | This is Winnie. She lost her body saving a children's hospital from an avalanche. 13/10 what a h*ckin hero https://t.co/Tf0rh9ZgZe | 13 | 10 | Winnie | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | True | True | True | Pembroke | 0.685084 | |
| 162 | 842163532590374912 | 6568 | 26569 | 2017-03-16 00:00:07 | Meet George. He looks slightly deflated but overall quite powerful. Not sure how that human restrained him. 12/10 would snug with permission https://t.co/o6E0hB3xZl | 12 | 10 | George | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | True | False | True | French_bulldog | 0.891227 | |
| 163 | 842115215311396866 | 3386 | 15204 | 2017-03-15 20:48:07 | This is Bentley. It's his first time going to the beach. I think he's a fan. 12/10 would build sand castles with https://t.co/iDK4OyQJoy | 12 | 10 | Bentley | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | True | True | True | Chow | 0.293493 | |
| 164 | 841680585030541313 | 8748 | 27854 | 2017-03-14 16:01:03 | This is Penny. She's a dragon slayer. Feared by most, if not all, dragons. Showing off her latest victim here. 12/10 would pet with caution https://t.co/qUOijSlPnj | 12 | 10 | Penny | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | True | False | True | Chihuahua | 0.547401 | |
| 165 | 841314665196081154 | 5312 | 17305 | 2017-03-13 15:47:01 | This is Max. There's no way in h*ck you're taking his pacifier. Binky promises it's not happening. 13/10 very good stubborn boy https://t.co/9lVAqDEvZ5 | 13 | 10 | Max | https://pbs.twimg.com/ext_tw_video_thumb/841311812641533952/pu/img/sBUGt8u76n9azPWI.jpg | 1 | True | True | True | Afghan_hound | 0.903712 | |
| 166 | 841077006473256960 | 5991 | 24926 | 2017-03-13 00:02:39 | This is Dawn. She's just checking pup on you. Making sure you're doing okay. 12/10 she's here if you need her https://t.co/XKJrmO4fAQ | 12 | 10 | Dawn | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | True | True | True | Brittany_spaniel | 0.962985 | |
| 167 | 840632337062862849 | 1972 | 9761 | 2017-03-11 18:35:42 | Say hello to Maddie and Gunner. They are considerably pupset about bath time. Both 12/10 but Gunner needs your help\n\nhttps://t.co/JesYTzb1Jo https://t.co/5cncH08G1o | 12 | 10 | Maddie | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | True | True | True | Golden_retriever | 0.711148 | |
| 168 | 840268004936019968 | 6497 | 20950 | 2017-03-10 18:27:58 | This is Monty. He makes instantly regrettable decisions. Couldn't help himself. It looked like a ghost lollipop. 12/10 mistake happen https://t.co/8Wsr6b4RjE | 12 | 10 | Monty | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | True | True | True | Chesapeake_bay_retriever | 0.863987 | |
| 169 | 839990271299457024 | 2597 | 14640 | 2017-03-10 00:04:21 | Meet Sojourner. His nose is a Fibonacci Spiral. Legendary af. 13/10 we must protect him at all costs https://t.co/r7W1NbkOtr | 13 | 10 | Sojourner | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | True | True | True | Staffordshire_bullterrier | 0.604938 | |
| 170 | 839239871831150596 | 7422 | 29684 | 2017-03-07 22:22:32 | This is Odie. He's big. 13/10 would attempt to ride https://t.co/JEXB9RwBmm | 13 | 10 | Odie | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | True | True | True | Leonberg | 0.927021 | |
| 171 | 838921590096166913 | 2357 | 12183 | 2017-03-07 01:17:48 | This is Arlo. He's officially the king of snowy tongue slips. 13/10 would comfort during inevitable brain freeze https://t.co/oXVu9pNZZv | 13 | 10 | Arlo | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | True | True | True | Border_terrier | 0.664538 | |
| 172 | 838561493054533637 | 1504 | 11892 | 2017-03-06 01:26:54 | This is Walter. His owner has been watching all the Iditarod coverage and is convinced Walter can be a sled dog. 13/10 Walter isn't so sure https://t.co/0av1PEehFI | 13 | 10 | Walter | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | True | False | True | Kelpie | 0.216562 | |
| 173 | 838476387338051585 | 5484 | 24664 | 2017-03-05 19:48:43 | This is Stanley. Somehow he heard you tell him he's a good boy from all the way up there. 13/10 I love you Stanley https://t.co/51FXNuouHI | 13 | 10 | Stanley | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | True | True | True | Great_pyrenees | 0.997692 | |
| 174 | 838083903487373313 | 3582 | 19183 | 2017-03-04 17:49:08 | This is Daisy. She's puppears to be rare as all h*ck. Only seven like her currently domesticated. 13/10 pettable af https://t.co/meUc8jufAO | 13 | 10 | Daisy | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | True | False | True | Chow | 0.800975 | |
| 175 | 837820167694528512 | 8952 | 37277 | 2017-03-04 00:21:08 | Here's a pupper before and after being asked "who's a good girl?" Unsure as h*ck. 12/10 hint hint it's you https://t.co/ORiK6jlgdH | 12 | 10 | None | pupper | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | True | True | True | Golden_retriever | 0.887625 |
| 176 | 837471256429613056 | 2631 | 13967 | 2017-03-03 01:14:41 | This is Vincent. He's suave as h*ck. Will be your copilot this evening. Claims he doesn't need to look at the directions. 12/10 https://t.co/u51tzXSVi3 | 12 | 10 | Vincent | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | True | True | False | Norwegian_elkhound | 0.976255 | |
| 177 | 837366284874571778 | 6005 | 23074 | 2017-03-02 18:17:34 | This is Lucy. She has a portrait of herself on her ear. Excellent for identification pupposes. 13/10 innovative af https://t.co/uNmxbL2lns | 13 | 10 | Lucy | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.660085 | |
| 178 | 837110210464448512 | 2731 | 17480 | 2017-03-02 01:20:01 | This is Clark. He passed pupper training today. Round of appaws for Clark. 13/10 https://t.co/7pUjwe8X6B | 13 | 10 | Clark | pupper | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | True | True | True | Siberian_husky | 0.767696 |
| 179 | 836753516572119041 | 5237 | 21029 | 2017-03-01 01:42:39 | This is Meera. She just heard about taxes and how much a doghouse in a nice area costs. Not pupared to be a doggo anymore. 12/10 https://t.co/GZmNEdyoJY | 12 | 10 | Meera | doggo | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | False | False | True | Mortarboard | 0.936882 |
| 180 | 836260088725786625 | 4850 | 23177 | 2017-02-27 17:01:56 | This is Lucy. She spent all morning overseeing the shoveling of the driveway. H*ckin hard work. 13/10 very good girl Lucy https://t.co/gA2GECjiQD | 13 | 10 | Lucy | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | True | False | True | Borzoi | 0.564688 | |
| 181 | 835574547218894849 | 4121 | 19447 | 2017-02-25 19:37:50 | This is Eli. He works backstage at Bone Jovi concerts. Heavy duty earmuffs for puptection. H*ckin safe boy. 11/10 https://t.co/cVQEnUQd8q | 11 | 10 | Eli | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | True | False | True | Staffordshire_bullterrier | 0.610655 | |
| 182 | 835297930240217089 | 3381 | 17847 | 2017-02-25 01:18:40 | Meet Ash. He's a Benebop Cumberplop. Quite rare. Fairly portable. Lil sandy tho. Clearly knows something you don't. 12/10 would hug softly https://t.co/1U0z6r5LSO | 12 | 10 | Ash | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | True | True | True | Rottweiler | 0.341276 | |
| 183 | 835172783151792128 | 6516 | 28552 | 2017-02-24 17:01:22 | We only rate dogs. Please don't send in any non-canines like this Floppy Tongued House Panda. Thank you... 12/10 would still pet https://t.co/8fX2VkExnL | 12 | 10 | None | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | True | True | True | Border_collie | 0.663138 | |
| 184 | 834786237630337024 | 6159 | 22943 | 2017-02-23 15:25:23 | This is Tobi. She is properly fetching her shot. H*ckin nifty af bandana. 13/10 would send fully armed battalion to remind her of my love https://t.co/3FIqvumEXE | 13 | 10 | Tobi | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | True | True | True | Border_terrier | 0.156276 | |
| 185 | 834458053273591808 | 1899 | 10512 | 2017-02-22 17:41:18 | Meet Chester (bottom) & Harold (top). They are different dogs not only in appearance, but in personality as well. Both 12/10 symbiotic af https://t.co/8ZOZS2FSJe | 12 | 10 | Chester | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | True | True | True | Rhodesian_ridgeback | 0.468619 | |
| 186 | 834209720923721728 | 5476 | 22594 | 2017-02-22 01:14:30 | This is Wilson. He's aware that he has something on his face. Waiting for you to get it for him. 12/10 https://t.co/FaeinVjzTZ | 12 | 10 | Wilson | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | True | True | True | Golden_retriever | 0.754799 | |
| 187 | 833863086058651648 | 2729 | 14661 | 2017-02-21 02:17:06 | This is Bentley. Hairbrushes are his favorite thing in the h*ckin world. 12/10 impawsible to say no to https://t.co/HDloTYilWZ | 12 | 10 | Bentley | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | True | True | True | Kuvasz | 0.494969 | |
| 188 | 833826103416520705 | 3904 | 16728 | 2017-02-20 23:50:09 | Meet Charlie. She asked u to change the channel to Animal Planet at least 6 times. Now taking matters into her own paws. 13/10 assertive af https://t.co/WTzhtfevKY | 13 | 10 | Charlie | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | True | True | True | Chihuahua | 0.438054 | |
| 189 | 833722901757046785 | 3636 | 22585 | 2017-02-20 17:00:04 | This is Bronte. She's fairly h*ckin aerodynamic. Also patiently waiting for mom to make her a main character. 13/10 would be an honor to pet https://t.co/w1MQWO2PET | 13 | 10 | Bronte | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | True | True | True | West_highland_white_terrier | 0.918144 | |
| 190 | 833479644947025920 | 2357 | 16258 | 2017-02-20 00:53:27 | This is Poppy. She just arrived. 13/10 would snug passionately https://t.co/YGeSpyN8Gu | 13 | 10 | Poppy | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | True | True | True | Golden_retriever | 0.727039 | |
| 191 | 833124694597443584 | 5513 | 22133 | 2017-02-19 01:23:00 | This is Gidget. She's a spy pupper. Stealthy as h*ck. Must've slipped pup and got caught. 12/10 would forgive then pet https://t.co/zD97KYFaFa | 12 | 10 | Gidget | pupper | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | True | True | False | Cardigan | 0.710523 |
| 192 | 832998151111966721 | 2522 | 14549 | 2017-02-18 17:00:10 | This is Rhino. He arrived at a shelter with an elaborate doggo manual for his new family, written by someone who will always love him. 13/10 https://t.co/QX1h0oqMz0 | 13 | 10 | Rhino | doggo | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | True | True | True | Boxer | 0.539036 |
| 193 | 832757312314028032 | 4127 | 18423 | 2017-02-18 01:03:09 | This is Willow. She's the official strawberry taste tester. Palate delicate af. Currently noting the subtle piquancy of this one. 13/10 https://t.co/On7muWnWSQ | 13 | 10 | Willow | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | True | True | True | Cardigan | 0.160888 | |
| 194 | 832636094638288896 | 3220 | 17379 | 2017-02-17 17:01:29 | This is Orion. He just got back from the dentist. Cavity free af. 12/10 would give extra pats https://t.co/Y4DZx2UWsr | 12 | 10 | Orion | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | True | True | True | Eskimo_dog | 0.525032 | |
| 195 | 832397543355072512 | 2548 | 13126 | 2017-02-17 01:13:34 | This is Eevee. She wants to see how you're doing. Just checkin pup on you. She hopes you're doing okay. 12/10 extremely good girl https://t.co/nqAJGCHKEt | 12 | 10 | Eevee | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | True | True | False | Pekinese | 0.988916 | |
| 196 | 832369877331693569 | 3652 | 18792 | 2017-02-16 23:23:38 | This is Charlie. He fell asleep on a heating vent. Would puppreciate your assistance. 11/10 someone help Charlie https://t.co/Dhdx5HnQ4d | 11 | 10 | Charlie | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | True | True | True | Kelpie | 0.504690 | |
| 197 | 832273440279240704 | 2673 | 12385 | 2017-02-16 17:00:25 | Say hello to Smiley. He's a blind therapy doggo having a h*ckin blast high steppin around in the snow. 14/10 would follow anywhere https://t.co/SHAb1wHjMz | 14 | 10 | Smiley | doggo | https://pbs.twimg.com/ext_tw_video_thumb/832273373149413377/pu/img/qOqxM0b48fEarmq6.jpg | 1 | True | False | True | Pembroke | 0.134081 |
| 198 | 832032802820481025 | 4746 | 13887 | 2017-02-16 01:04:13 | This is Miguel. He was the only remaining doggo at the adoption center after the weekend. Let's change that. 12/10\n\nhttps://t.co/P0bO8mCQwN https://t.co/SU4K34NT4M | 12 | 10 | Miguel | doggo | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | True | True | True | Whippet | 0.601712 |
| 199 | 831939777352105988 | 7031 | 26404 | 2017-02-15 18:54:34 | This is Emanuel. He's a h*ckin rare doggo. Dwells in a semi-urban environment. Round features make him extra collectible. 12/10 would so pet https://t.co/k9bzgyVdUT | 12 | 10 | Emanuel | doggo | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | True | False | False | Pomeranian | 0.153862 |
| 200 | 831670449226514432 | 2059 | 11469 | 2017-02-15 01:04:21 | This is Daisy. She has a heart on her butt. 13/10 topical af https://t.co/u6p4LxzHKg | 13 | 10 | Daisy | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | True | True | True | Pembroke | 0.624802 | |
| 201 | 831650051525054464 | 2243 | 7908 | 2017-02-14 23:43:18 | I usually only share these on Friday's, but this is Blue. He's a very smoochable pooch who needs your help. 13/10\n\nhttps://t.co/piiX0ke8Z6 https://t.co/1UHrKcaCiO | 13 | 10 | None | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | True | True | True | Eskimo_dog | 0.530416 | |
| 202 | 831552930092285952 | 2632 | 9872 | 2017-02-14 17:17:22 | This is Dutch. He dressed up as his favorite emoji for Valentine's Day. I've got heart eyes for his heart eyes. 13/10 https://t.co/BCbmFYLrse | 13 | 10 | Dutch | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | True | True | True | Chihuahua | 0.257415 | |
| 203 | 831322785565769729 | 1744 | 10042 | 2017-02-14 02:02:51 | This is Pete. He has no eyes. Needs a guide doggo. Also appears to be considerably fluffy af. 12/10 would hug softly https://t.co/Xc0gyovCtK | 12 | 10 | Pete | doggo | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | True | True | False | Old_english_sheepdog | 0.999715 |
| 204 | 831309418084069378 | 2786 | 12819 | 2017-02-14 01:09:44 | This is Scooter and his son Montoya. Scooter is a wonderful father. He takes very good care of Montoya. Both 12/10 would pet at same time https://t.co/ghqMfxxa4V | 12 | 10 | Scooter | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | True | True | True | Doberman | 0.369389 | |
| 205 | 831262627380748289 | 2350 | 13066 | 2017-02-13 22:03:49 | This is Tucker. He's feeling h*ckin festive and his owners don't have the heart to tell him Christmas is over. 12/10 https://t.co/zqR5XKMpuY | 12 | 10 | Tucker | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | True | True | False | Cocker_spaniel | 0.263323 | |
| 206 | 830956169170665475 | 1735 | 8735 | 2017-02-13 01:46:03 | Say hello to Reggie. He hates puns. 12/10 lighten pup Reggie https://t.co/X4vNEzAod5 | 12 | 10 | Reggie | https://pbs.twimg.com/ext_tw_video_thumb/830956118893543424/pu/img/t2G0raF7pDPRMAH5.jpg | 1 | True | True | True | Kuvasz | 0.451516 | |
| 207 | 830583320585068544 | 19297 | 73397 | 2017-02-12 01:04:29 | This is Lilly. She just parallel barked. Kindly requests a reward now. 13/10 would pet so well https://t.co/SATN4If5H5 | 13 | 10 | Lilly | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | True | False | True | Labrador_retriever | 0.908703 | |
| 208 | 829861396166877184 | 2243 | 13441 | 2017-02-10 01:15:49 | This is Mia. She already knows she's a good dog. You don't have to tell her. 12/10 would probably tell her anyway https://t.co/xeudgDXmTU | 12 | 10 | Mia | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | True | True | True | Border_terrier | 0.394486 | |
| 209 | 829501995190984704 | 12224 | 34913 | 2017-02-09 01:27:41 | This is Leo. He was a skater pup. She said see ya later pup. He wasn't good enough for her. 12/10 you're good enough for me Leo https://t.co/Xw9JbJHTul | 12 | 10 | Leo | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | True | True | True | French_bulldog | 0.950851 | |
| 210 | 829449946868879360 | 2329 | 11519 | 2017-02-08 22:00:52 | Here's a stressed doggo. Had a long day. Many things on her mind. The hat communicates these feelings exquisitely. 11/10 https://t.co/fmRS43mWQB | 11 | 10 | None | doggo | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | True | True | True | Labrador_retriever | 0.315163 |
| 211 | 829374341691346946 | 10706 | 38074 | 2017-02-08 17:00:26 | This is Astrid. She's a guide doggo in training. 13/10 would follow anywhere https://t.co/xo7FZFIAao | 13 | 10 | Astrid | doggo | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.757547 |
| 212 | 829141528400556032 | 8530 | 26952 | 2017-02-08 01:35:19 | This is Malcolm. He goes from sneaky tongue slip to flirt wink city in a matter of seconds. 12/10 would hug softly https://t.co/rHwfySggqR | 12 | 10 | Malcolm | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | True | True | False | Golden_retriever | 0.573140 | |
| 213 | 829011960981237760 | 18627 | 58302 | 2017-02-07 17:00:28 | This is Dexter. He was reunited with his mom yesterday after she was stuck in Iran during the travel Bannon. 13/10 welcome home https://t.co/U50RlRw4is | 13 | 10 | Dexter | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | True | True | False | Boxer | 0.312221 | |
| 214 | 828650029636317184 | 1544 | 10467 | 2017-02-06 17:02:17 | Occasionally, we're sent fantastic stories. This is one of them. 14/10 for Grace https://t.co/bZ4axuH6OK | 14 | 10 | NaN | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | True | True | True | Golden_retriever | 0.649209 | |
| 215 | 828409743546925057 | 1305 | 6898 | 2017-02-06 01:07:28 | This is Mutt Ryan. He's quite confident at the moment. 12/10 rise pup! https://t.co/ZH5CvRlCxt | 12 | 10 | Mutt | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | False | True | True | Teddy | 0.908457 | |
| 216 | 828408677031882754 | 1477 | 8398 | 2017-02-06 01:03:14 | This is Bear. He went outside to play in the snow. Needed a break from the game. Feeling a tad better now. 12/10 deep breaths Bear https://t.co/7WFLKli2T3 | 12 | 10 | Bear | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | True | True | True | Weimaraner | 0.133033 | |
| 217 | 828381636999917570 | 2554 | 13864 | 2017-02-05 23:15:47 | Meet Doobert. He's a deaf doggo. Didn't stop him on the field tho. Absolute legend today. 14/10 would pat head approvingly https://t.co/iCk7zstRA9 | 14 | 10 | Doobert | doggo | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | True | True | True | Bedlington_terrier | 0.392535 |
| 218 | 828376505180889089 | 1216 | 8112 | 2017-02-05 22:55:23 | This is Beebop. Her name means "Good Dog" in robot. She also was a star on the field today. 13/10 would pet well https://t.co/HKBVZqXFNR | 13 | 10 | Beebop | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.523086 | |
| 219 | 828372645993398273 | 3344 | 13756 | 2017-02-05 22:40:03 | This is Alexander Hamilpup. He was one of the many stars in this year's Puppy Bowl. He just hopes both teams had fun. 12/10 https://t.co/JcTuUcyYNS | 12 | 10 | Alexander | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | True | True | True | Malamute | 0.663047 | |
| 220 | 828011680017821696 | 2451 | 11411 | 2017-02-04 22:45:42 | Say hello to Brutus and Jersey. They think they're the same size. Best furiends furever. Both 11/10 would pet simultaneously https://t.co/rkhCFfDtxB | 11 | 10 | Brutus | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.936662 | |
| 221 | 827933404142436356 | 5987 | 22180 | 2017-02-04 17:34:40 | This is Kona. Yesterday she stopped by the department to see what it takes to be a police pupper. 12/10 vest was only a smidge too big https://t.co/j8D3PQJvpJ | 12 | 10 | Kona | pupper | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | True | True | True | German_shepherd | 0.806115 |
| 222 | 827653905312006145 | 3433 | 16983 | 2017-02-03 23:04:02 | This is Boots. She doesn't know what to do with treats so she just holds them. Very good girl. 12/10 would give more treats https://t.co/eAA8lratd3 | 12 | 10 | Boots | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | True | True | True | Collie | 0.285555 | |
| 223 | 827600520311402496 | 1082 | 8143 | 2017-02-03 19:31:54 | Meet Tucker. It's his birthday. He's pupset with you because you're too busy playing @GoodDogsGame to celebrate. 13/10 would put down phone https://t.co/vrppizPGdb | 13 | 10 | Tucker | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | True | True | True | Pembroke | 0.325638 | |
| 224 | 827324948884643840 | 3510 | 17523 | 2017-02-03 01:16:53 | This is Ralphie. He's being treated for an overactive funny bone, which is no joke. 12/10 would try to pet with a straight face https://t.co/UU3KqQF5n5 | 12 | 10 | Ralphie | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | True | True | True | Golden_retriever | 0.352486 | |
| 225 | 826958653328592898 | 5757 | 23767 | 2017-02-02 01:01:21 | This is Loki. He smiles like Elvis. Ain't nothin but a hound doggo. 12/10 https://t.co/QV5nx6otZR | 12 | 10 | Loki | doggo | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | True | True | False | Golden_retriever | 0.617389 |
| 226 | 826598365270007810 | 2709 | 11117 | 2017-02-01 01:09:42 | This is Pawnd... James Pawnd. He's suave af. 13/10 would trust with my life https://t.co/YprN62Z74I | 13 | 10 | Pawnd | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | True | False | False | French_bulldog | 0.628119 | |
| 227 | 826476773533745153 | 4821 | 20275 | 2017-01-31 17:06:32 | This is Pilot. He has mastered the synchronized head tilt and sneaky tongue slip. Usually not unlocked until later doggo days. 12/10 https://t.co/YIV8sw8xkh | 12 | 10 | Pilot | doggo | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | True | True | True | German_shepherd | 0.741860 |
| 228 | 826240494070030336 | 2965 | 14614 | 2017-01-31 01:27:39 | We only rate dogs. Please don't send in any more non-dogs like this Wild Albanian Street Moose. Thank you... 11/10 https://t.co/srXL2s868C | 11 | 10 | None | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | True | True | True | French_bulldog | 0.903048 | |
| 229 | 826204788643753985 | 1075 | 5361 | 2017-01-30 23:05:46 | Here's a little more info on Dew, your favorite roaming doggo that went h*ckin viral. 13/10 \nhttps://t.co/1httNYrCeW https://t.co/KvaM8j3jhX | 13 | 10 | None | doggo | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | True | True | True | Labrador_retriever | 0.782058 |
| 230 | 825829644528148480 | 2848 | 14025 | 2017-01-29 22:15:05 | This is Toby. He just found out you only pretend to throw the ball sometimes. H*ckin puppalled. 12/10 would console https://t.co/YimNdkZrhM | 12 | 10 | Toby | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | True | True | True | Great_pyrenees | 0.853407 | |
| 231 | 825535076884762624 | 19669 | 56413 | 2017-01-29 02:44:34 | Here's a very loving and accepting puppo. Appears to have read her Constitution well. 14/10 would pat head approvingly https://t.co/6ao80wIpV1 | 14 | 10 | None | puppo | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | True | True | True | Rottweiler | 0.681495 |
| 232 | 825147591692263424 | 5244 | 20181 | 2017-01-28 01:04:51 | This is Sweet Pea. She hides in shoe boxes and waits for someone to pick her. Then she surpuprises them. 13/10 https://t.co/AyBEmx56MD | 13 | 10 | Sweet | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | True | True | True | Pekinese | 0.354823 | |
| 233 | 825026590719483904 | 1483 | 7020 | 2017-01-27 17:04:02 | Say hello to Pablo. He's one gorgeous puppo. A true 12/10. Click the link to see why Pablo requests your assistance\n\nhttps://t.co/koHvVQp9bL https://t.co/IhW0JKf7kc | 12 | 10 | Pablo | puppo | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | True | True | True | Eskimo_dog | 0.524454 |
| 234 | 824775126675836928 | 4069 | 16508 | 2017-01-27 00:24:48 | This is Scooter. His lack of opposable thumbs is rendering his resistance to tickling embarrassingly moot. 12/10 would keep tickling https://t.co/F0VWg2GztI | 12 | 10 | Scooter | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | True | True | True | Border_terrier | 0.610499 | |
| 235 | 824663926340194305 | 1993 | 11113 | 2017-01-26 17:02:56 | This is Wilson. Named after the volleyball. He tongue wrestled a bee and lost. 13/10 valiant effort tho https://t.co/A5Mx4h1FSM | 13 | 10 | Wilson | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | True | True | True | English_setter | 0.526488 | |
| 236 | 824325613288833024 | 11848 | 12999 | 2017-01-25 18:38:36 | Retweet the h*ck out of this 13/10 pupper #BellLetsTalk https://t.co/wBmc7OaGvS | 13 | 10 | None | pupper | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | True | True | True | Pembroke | 0.990793 |
| 237 | 824297048279236611 | 4463 | 16625 | 2017-01-25 16:45:05 | This is Nala. She got in trouble. One h*ck of a pupnishment. Still 11/10 would pet https://t.co/EmJbG0skLt | 11 | 10 | Nala | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | False | False | False | Teddy | 0.588230 | |
| 238 | 823939628516474880 | 3123 | 11755 | 2017-01-24 17:04:50 | This is Cash. He's officially given pup on today. 12/10 frighteningly relatable https://t.co/m0hrATIEyw | 12 | 10 | Cash | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | True | True | True | Schipperke | 0.234076 | |
| 239 | 823699002998870016 | 2772 | 13826 | 2017-01-24 01:08:40 | This is Winston. The goggles make him a superhero. Protects the entire city from criminals unless they rub his belly really well. 12/10 https://t.co/yCydYURYEL | 12 | 10 | Winston | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | True | False | True | Cairn | 0.203999 | |
| 240 | 823581115634085888 | 3031 | 14376 | 2017-01-23 17:20:14 | This is Crawford. He's quite h*ckin good at the selfies. Nose is incredibly boopable. 11/10 would snapchat https://t.co/6F5Rrp472U | 11 | 10 | Crawford | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | False | True | True | Dingo | 0.280949 | |
| 241 | 822872901745569793 | 48265 | 132810 | 2017-01-21 18:26:02 | Here's a super supportive puppo participating in the Toronto #WomensMarch today. 13/10 https://t.co/nTz3FtorBc | 13 | 10 | None | puppo | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | True | True | True | Lakeland_terrier | 0.196015 |
| 242 | 822859134160621569 | 2622 | 14576 | 2017-01-21 17:31:20 | This is Hobbes. He was told he was going to the park. Ended up at the vet. H*ckin bamboozled. Quite pupset with you. 12/10 https://t.co/SSQE06XClS | 12 | 10 | Hobbes | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | True | True | True | Malinois | 0.332897 | |
| 243 | 822610361945911296 | 3423 | 16327 | 2017-01-21 01:02:48 | Please stop sending in non-canines like this Very Pettable Dozing Bath Tortoise. We only rate dogs. Only send dogs... 12/10 https://t.co/mcagPeENIh | 12 | 10 | None | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | True | True | True | Cocker_spaniel | 0.664487 | |
| 244 | 822489057087389700 | 7390 | 20083 | 2017-01-20 17:00:46 | This is Paisley. She really wanted to be president this time. Dreams officially crushed. 13/10 https://t.co/liJGwMp17E | 13 | 10 | Paisley | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | True | True | True | Samoyed | 0.416769 | |
| 245 | 822462944365645825 | 17209 | 31800 | 2017-01-20 15:17:01 | This is Gabe. He was the unequivocal embodiment of a dream meme, but also one h*ck of a pupper. You will be missed by so many. 14/10 RIP https://t.co/M3hZGadUuO | 14 | 10 | Gabe | pupper | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | True | True | True | Pomeranian | 0.960199 |
| 246 | 822244816520155136 | 11421 | 38832 | 2017-01-20 00:50:15 | We only rate dogs. Please don't send pics of men capturing low level clouds. Thank you... 11/10 https://t.co/rLi83ZyCL5 | 11 | 10 | None | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | True | True | False | Samoyed | 0.585441 | |
| 247 | 821886076407029760 | 2692 | 12582 | 2017-01-19 01:04:45 | This is Jimison. He was just called a good boy. 13/10 https://t.co/djMep7mGkV | 13 | 10 | Jimison | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | True | True | True | Golden_retriever | 0.266238 | |
| 248 | 821765923262631936 | 1899 | 9317 | 2017-01-18 17:07:18 | This is Duchess. She uses dark doggo forces to levitate her toys. 13/10 magical af https://t.co/maDNMETA52 | 13 | 10 | Duchess | doggo | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | True | True | True | Golden_retriever | 0.980071 |
| 249 | 821522889702862852 | 2030 | 8871 | 2017-01-18 01:01:34 | This is Harlso. He has a really good idea but isn't sure you're going to like it. 13/10 he'll just keep it to himself https://t.co/IzcaR3Nqyn | 13 | 10 | Harlso | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | True | True | True | Doberman | 0.763539 | |
| 250 | 821407182352777218 | 5053 | 13075 | 2017-01-17 17:21:47 | This is Sundance. He's a doggo drummer. Even sings a bit on the side. 14/10 entertained af (vid by @sweetsundance) https://t.co/Xn5AQtiqzG | 14 | 10 | Sundance | doggo | https://pbs.twimg.com/ext_tw_video_thumb/821407155391725568/pu/img/AJC07gFJDDBuwNTD.jpg | 1 | True | True | True | Irish_setter | 0.505496 |
| 251 | 821149554670182400 | 2320 | 9718 | 2017-01-17 00:18:04 | This is Luca. He got caught howling. H*ckin embarrassed. 12/10 https://t.co/r8DxA8DYJ2 | 12 | 10 | Luca | https://pbs.twimg.com/ext_tw_video_thumb/821149477142556673/pu/img/88_DV098c60pC5AA.jpg | 1 | True | True | True | German_shepherd | 0.515933 | |
| 252 | 821107785811234820 | 2487 | 10645 | 2017-01-16 21:32:06 | Here's a doggo who looks like he's about to give you a list of mythical ingredients to go collect for his potion. 11/10 would obey https://t.co/8SiwKDlRcl | 11 | 10 | None | doggo | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | True | True | True | Pomeranian | 0.856590 |
| 253 | 821044531881721856 | 2636 | 14021 | 2017-01-16 17:20:45 | This is Flash. He went way too hard celebrating Martin Luther King Day last night. 12/10 now he's having a dream in his honor https://t.co/bryVdNaRcu | 12 | 10 | Flash | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | True | True | True | Old_english_sheepdog | 0.148020 | |
| 254 | 820749716845686786 | 11525 | 34984 | 2017-01-15 21:49:15 | Meet Sunny. He can take down a polar bear in one fell swoop. Fr*cken deadly af. 13/10 would pet with caution https://t.co/EMq8Ud6Ze1 | 13 | 10 | Sunny | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | True | True | True | Golden_retriever | 0.838012 | |
| 255 | 820690176645140481 | 3716 | 13518 | 2017-01-15 17:52:40 | The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd | 12 | 10 | None | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | True | True | True | West_highland_white_terrier | 0.872064 | |
| 256 | 820314633777061888 | 648 | 3706 | 2017-01-14 17:00:24 | We are proud to support @LoveYourMelon on their mission to put a hat on every kid battling cancer. They are 14/10\n\nhttps://t.co/XQlmPTLHPl https://t.co/ZNIkkHgtYE | 14 | 10 | None | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | True | True | True | Gordon_setter | 0.940724 | |
| 257 | 819952236453363712 | 1369 | 5927 | 2017-01-13 17:00:21 | This is Oliver. He has dreams of being a service puppo so he can help his owner. 13/10 selfless af\n\nmake it happen:\nhttps://t.co/f5WMsx0a9K https://t.co/6lJz0DKZIb | 13 | 10 | Oliver | puppo | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.925505 |
| 258 | 819588359383371776 | 2271 | 10606 | 2017-01-12 16:54:26 | This is Jazzy. She just found out that sandwich wasn't for her. Shocked and puppalled. 13/10 deep breaths Jazzy https://t.co/52cItP0vIO | 13 | 10 | Jazzy | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | True | True | True | Cardigan | 0.547935 | |
| 259 | 819347104292290561 | 1383 | 8008 | 2017-01-12 00:55:47 | Say hello to Anna and Elsa. They fall asleep in similar positions. It's pretty wild. Both 12/10 would snug simultaneously https://t.co/8rUL99bX4W | 12 | 10 | Anna | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | True | True | True | Rottweiler | 0.909106 | |
| 260 | 819227688460238848 | 7733 | 25652 | 2017-01-11 17:01:16 | This is Finn. He's wondering if you come here often. Fr*ckin flirtatious af. 12/10 would give number to https://t.co/ii5eNX5LJT | 12 | 10 | Finn | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | True | True | True | Border_terrier | 0.482452 | |
| 261 | 819004803107983360 | 42228 | 95450 | 2017-01-11 02:15:36 | This is Bo. He was a very good First Doggo. 14/10 would be an absolute honor to pet https://t.co/AdPKrI8BZ1 | 14 | 10 | Bo | doggo | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | True | True | True | Standard_poodle | 0.351308 |
| 262 | 818627210458333184 | 8564 | 24597 | 2017-01-10 01:15:10 | Meet Wafer. He represents every fiber of my being. 13/10 very good dog https://t.co/I7bkhxBxUG | 13 | 10 | Wafer | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | True | True | False | Labrador_retriever | 0.384188 | |
| 263 | 818259473185828864 | 2621 | 12197 | 2017-01-09 00:53:55 | This is Florence. He saw the same snap you sent him on your story. Pretty pupset with you. 12/10 https://t.co/rnkvT2kvib | 12 | 10 | Florence | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | True | True | True | Miniature_schnauzer | 0.367368 | |
| 264 | 818145370475810820 | 3014 | 13671 | 2017-01-08 17:20:31 | This is Autumn. Her favorite toy is a cheeseburger. She takes it everywhere. 11/10 https://t.co/JlPug12E5Z | 11 | 10 | Autumn | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | True | True | True | Golden_retriever | 0.621931 | |
| 265 | 817827839487737858 | 31314 | 57622 | 2017-01-07 20:18:46 | This is Buddy. He ran into a glass door once. Now he's h*ckin skeptical. 13/10 empowering af (vid by Brittany Gaunt) https://t.co/q2BgNIi3OA | 13 | 10 | Buddy | https://pbs.twimg.com/ext_tw_video_thumb/817827663108771841/pu/img/e9oi839RGWJR37jF.jpg | 1 | True | True | True | Cocker_spaniel | 0.387608 | |
| 266 | 817777686764523521 | 3084 | 11901 | 2017-01-07 16:59:28 | This is Dido. She's playing the lead role in "Pupper Stops to Catch Snow Before Resuming Shadow Box with Dried Apple." 13/10 (IG: didodoggo) https://t.co/m7isZrOBX7 | 13 | 10 | Dido | doggo, pupper | https://pbs.twimg.com/ext_tw_video_thumb/817777588030476288/pu/img/KbuLpE4krHF4VdPf.jpg | 1 | True | True | True | Curly-coated_retriever | 0.733256 |
| 267 | 817536400337801217 | 3505 | 13105 | 2017-01-07 01:00:41 | Say hello to Eugene & Patti Melt. No matter how dysfunctional they get, they will never top their owners. Both 12/10 would pet at same time https://t.co/jQUdvtdYMu | 12 | 10 | Eugene | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | True | True | True | Pug | 0.971358 | |
| 268 | 817415592588222464 | 1131 | 6267 | 2017-01-06 17:00:38 | Meet Strudel. He's rather h*ckin pupset that your clothes clash. 11/10 click the link to see how u can help Strudel\n\nhttps://t.co/3uxgLz8d0l https://t.co/O0ECL1StB2 | 11 | 10 | Strudel | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | True | True | True | Doberman | 0.806163 | |
| 269 | 817171292965273600 | 2326 | 9690 | 2017-01-06 00:49:53 | This is Tebow. He kindly requests that you put down the coffee and play with him. 13/10 such a good boy https://t.co/56uBP28eqw | 13 | 10 | Tebow | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | True | True | True | Golden_retriever | 0.295483 | |
| 270 | 817120970343411712 | 3011 | 13367 | 2017-01-05 21:29:55 | Name a more iconic quartet... I'll wait. 13/10 for all https://t.co/kCLgD8687T | 13 | 10 | None | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | True | True | True | Saluki | 0.568809 | |
| 271 | 817056546584727552 | 1927 | 9517 | 2017-01-05 17:13:55 | This is Chloe. She fell asleep at the wheel. Absolute menace on the roadways. Sneaky tongue slip tho. 11/10 https://t.co/r6SLVN2VUH | 11 | 10 | Chloe | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | True | True | True | Kelpie | 0.864415 | |
| 272 | 816816676327063552 | 2361 | 11071 | 2017-01-05 01:20:46 | This is Timber. He misses Christmas. Specifically the presents part. 12/10 cheer pup Timber https://t.co/dVVavqpeF9 | 12 | 10 | Timber | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | True | True | True | Malamute | 0.668164 | |
| 273 | 816697700272001025 | 2545 | 10905 | 2017-01-04 17:27:59 | This is Binky. She appears to be rather h*ckin cozy. Nifty leg cross as well. 12/10 would snug well https://t.co/WFt82XLyEF | 12 | 10 | Binky | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | True | True | True | Chihuahua | 0.756992 | |
| 274 | 816336735214911488 | 2269 | 9564 | 2017-01-03 17:33:39 | This is Dudley. He found a flower and now he's a queen. 11/10 would be an honor to pet https://t.co/nuJxtmlLcY | 11 | 10 | Dudley | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | True | True | True | Labrador_retriever | 0.919330 | |
| 275 | 816091915477250048 | 2500 | 9927 | 2017-01-03 01:20:49 | This is Comet. He's a Wild Estonian Poofer. Surprised they caught him. 12/10 would pet well https://t.co/tlfuZ25IMi | 12 | 10 | Comet | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | True | True | True | Pomeranian | 0.967345 | |
| 276 | 815990720817401858 | 1207 | 5545 | 2017-01-02 18:38:42 | Meet Jack. He's one of the rare doggos that doesn't mind baths. 11/10 click the link to see how you can help Jack!\n\nhttps://t.co/r4W111FzAq https://t.co/fQpYuMKG3p | 11 | 10 | Jack | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | True | True | True | Chihuahua | 0.428756 | |
| 277 | 815966073409433600 | 9907 | 25057 | 2017-01-02 17:00:46 | Here's a pupper with squeaky hiccups. Please enjoy. 13/10 https://t.co/MiMKtsLN6k | 13 | 10 | None | pupper | https://pbs.twimg.com/ext_tw_video_thumb/815965888126062592/pu/img/JleSw4wRhgKDWQj5.jpg | 1 | True | True | True | Tibetan_mastiff | 0.506312 |
| 278 | 815736392542261248 | 2625 | 10937 | 2017-01-02 01:48:06 | This is Akumi. It's his birthday. He received many lickable gifts. 11/10 happy h*ckin birthday https://t.co/gd9UlLOCQ0 | 11 | 10 | Akumi | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | True | True | True | Border_collie | 0.548907 | |
| 279 | 815639385530101762 | 1918 | 9161 | 2017-01-01 19:22:38 | This is Titan. His nose is quite chilly. Requests to return to the indoors. 12/10 would boop to warm https://t.co/bLZuOh9sKy | 12 | 10 | Titan | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | True | True | True | German_shepherd | 0.817953 | |
| 280 | 814986499976527872 | 1505 | 8485 | 2016-12-31 00:08:17 | This is Cooper. Someone attacked him with a sharpie. Poor pupper. 11/10 nifty tongue slip tho https://t.co/01vpuRDXQ8 | 11 | 10 | Cooper | pupper | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | True | True | True | Dalmatian | 0.999828 |
| 281 | 814638523311648768 | 3130 | 12511 | 2016-12-30 01:05:33 | This is Olivia. She's a passionate advocate of candid selfies. 12/10 would boop shnoop https://t.co/0LdNjoiNbv | 12 | 10 | Olivia | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | True | True | True | Golden_retriever | 0.650814 | |
| 282 | 814530161257443328 | 2156 | 9629 | 2016-12-29 17:54:58 | This is Alf. Someone just rubbed a balloon on his head. He's only a little pupset about it. 12/10 would pet well https://t.co/IOdgfnSE9G | 12 | 10 | Alf | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | True | True | True | Miniature_poodle | 0.626913 | |
| 283 | 814153002265309185 | 10080 | 32000 | 2016-12-28 16:56:16 | This is Oshie. He's ready to party. Bought that case himself. 12/10 someone tell Oshie it's Wednesday morning https://t.co/YIJo7X7K9J | 12 | 10 | Oshie | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | True | True | True | Golden_retriever | 0.490068 | |
| 284 | 813910438903693312 | 2194 | 10342 | 2016-12-28 00:52:25 | This is Chubbs. He dug a hole and now he's stuck in it. Dang h*ckin doggo. 11/10 would assist https://t.co/z1VRj1cYZf | 11 | 10 | Chubbs | doggo | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | True | True | True | Siberian_husky | 0.699355 |
| 285 | 813812741911748608 | 16267 | 40402 | 2016-12-27 18:24:12 | Meet Gary, Carrie Fisher's dog. Idk what I can say about Gary that reflects the inspirational awesomeness that was Carrie Fisher. 14/10 RIP https://t.co/uBnQTNEeGg | 14 | 10 | Gary | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | True | True | True | French_bulldog | 0.709146 | |
| 286 | 813800681631023104 | 2060 | 9300 | 2016-12-27 17:36:16 | This is Sky. She's learning how to roll her R's. 12/10 cultured af https://t.co/OuaVvVkwJ1 | 12 | 10 | Sky | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | True | True | True | Malamute | 0.501159 | |
| 287 | 813217897535406080 | 8476 | 20783 | 2016-12-26 03:00:30 | Here is Atlas. He went all out this year. 13/10 downright magical af https://t.co/DVYIZOnO81 | 13 | 10 | Atlas | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | True | True | True | Samoyed | 0.905972 | |
| 288 | 813202720496779264 | 2090 | 10192 | 2016-12-26 02:00:11 | Here's a doggo who has concluded that Christmas is entirely too bright. Requests you tone it down a notch. 11/10 https://t.co/cD967DjnIn | 11 | 10 | None | doggo | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | True | True | True | Cocker_spaniel | 0.701852 |
| 289 | 813187593374461952 | 5096 | 22085 | 2016-12-26 01:00:05 | We only rate dogs. Please don't send in other things like this very good Christmas tree. Thank you... 13/10 https://t.co/rvSANEsQZJ | 13 | 10 | None | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | True | True | True | Golden_retriever | 0.888181 | |
| 290 | 813142292504645637 | 2728 | 9361 | 2016-12-25 22:00:04 | Everybody stop what you're doing and look at this dog with her tiny Santa hat. 13/10 https://t.co/KK4XQK9SPi | 13 | 10 | None | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | True | True | True | Beagle | 0.848735 | |
| 291 | 813127251579564032 | 3652 | 13242 | 2016-12-25 21:00:18 | Here's an anonymous doggo that appears to be very done with Christmas. 11/10 cheer up pup https://t.co/BzITyGw3JA | 11 | 10 | None | doggo | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | True | True | True | Norwegian_elkhound | 0.432416 |
| 292 | 813112105746448384 | 3225 | 11515 | 2016-12-25 20:00:07 | Meet Toby. He's pupset because his hat isn't big enough. Christmas is ruined. 12/10 it'll be ok Toby https://t.co/zfdaGZlweq | 12 | 10 | Toby | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | False | True | True | Dingo | 0.287369 | |
| 293 | 813096984823349248 | 4207 | 11694 | 2016-12-25 19:00:02 | This is Rocky. He got triple-doggo-dared. Stuck af. 11/10 someone help him https://t.co/soNL00XWVu | 11 | 10 | Rocky | doggo | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | True | True | True | Great_dane | 0.128056 |
| 294 | 813081950185472002 | 3220 | 10989 | 2016-12-25 18:00:17 | This is Baron. He's officially festive as h*ck. Thinks it's just a fancy scarf. 11/10 would pat head approvingly https://t.co/PjulYEXTvg | 11 | 10 | Baron | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | True | True | True | Doberman | 0.909951 | |
| 295 | 813066809284972545 | 2276 | 8865 | 2016-12-25 17:00:08 | This is Tyr. He is disgusted by holiday traffic. Just trying to get to Christmas brunch on time. 12/10 hurry up pup https://t.co/syuTXARdtN | 12 | 10 | Tyr | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | True | True | True | Toy_terrier | 0.776400 | |
| 296 | 813051746834595840 | 8503 | 23337 | 2016-12-25 16:00:16 | This is Bauer. He had nothing to do with the cookies that disappeared. 13/10 very good boy https://t.co/AIMF8ouzvl | 13 | 10 | Bauer | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | True | True | True | Golden_retriever | 0.914804 | |
| 297 | 812781120811126785 | 2191 | 8380 | 2016-12-24 22:04:54 | This is Swagger. He's the Cleveland Browns ambassador. Hype as h*ck after that first win today. 10/10 https://t.co/lXFM1l22bG | 10 | 10 | Swagger | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | True | True | True | Bull_mastiff | 0.989316 | |
| 298 | 812709060537683968 | 1665 | 7373 | 2016-12-24 17:18:34 | This is Brandi and Harley. They are practicing their caroling for later. Both 12/10 festive af https://t.co/AbBDuGZUpp | 12 | 10 | Brandi | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | True | True | True | Irish_setter | 0.326873 | |
| 299 | 812372279581671427 | 4252 | 15224 | 2016-12-23 19:00:19 | This is Moe. He's a fetty woof. Got a cardboard cutout of himself for Christmas. 13/10 inspirational af https://t.co/gCnAeL2mvT | 13 | 10 | Moe | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | True | True | True | Golden_retriever | 0.784873 | |
| 300 | 811985624773361665 | 1647 | 8102 | 2016-12-22 17:23:53 | Say hello to Ted. He accidentally opened the front facing camera. 11/10 h*ckin unpupared https://t.co/sIB5C6FDop | 11 | 10 | Ted | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | True | True | False | Staffordshire_bullterrier | 0.610573 | |
| 301 | 811744202451197953 | 1884 | 8429 | 2016-12-22 01:24:33 | This is Halo. She likes watermelon. 13/10 https://t.co/TZkiQZqwA6 | 13 | 10 | Halo | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | True | True | True | Pekinese | 0.386082 | |
| 302 | 811627233043480576 | 3650 | 14265 | 2016-12-21 17:39:46 | This is Augie. He's a savage. Doesn't give a h*ck about your garden. Still 10/10 would forgive then pet https://t.co/IU8S0n4oxn | 10 | 10 | Augie | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | True | True | True | Beagle | 0.396280 | |
| 303 | 811386762094317568 | 7444 | 23302 | 2016-12-21 01:44:13 | This is Craig. That's actually a normal sized fence he's stuck on. H*ckin massive pupper. 11/10 someone help him https://t.co/aAUXzoxaBy | 11 | 10 | Craig | pupper | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | True | True | True | Pembroke | 0.804177 |
| 304 | 810984652412424192 | 1655 | 5927 | 2016-12-19 23:06:23 | Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx | 10 | 10 | Sam | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | True | True | True | Golden_retriever | 0.871342 | |
| 305 | 810896069567610880 | 2090 | 10093 | 2016-12-19 17:14:23 | This is Hunter. He just found out he needs braces. Requesting an orthodogtist stat. 11/10 you're fine Hunter, everything's fine https://t.co/zW1o0W4AYV | 11 | 10 | Hunter | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | True | True | True | Flat-coated_retriever | 0.820804 | |
| 306 | 810657578271330305 | 3057 | 12192 | 2016-12-19 01:26:42 | This is Pavlov. His floatation device has failed him. He's quite pupset about it. 11/10 would rescue https://t.co/MXd0AGDsRJ | 11 | 10 | Pavlov | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | True | True | True | Malamute | 0.753521 | |
| 307 | 810284430598270976 | 13369 | 39640 | 2016-12-18 00:43:57 | This is Phil. He's a father. A very good father too. 13/10 everybody loves Phil https://t.co/9p6ECXJMMu | 13 | 10 | Phil | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | True | True | True | Malamute | 0.620768 | |
| 308 | 810254108431155201 | 3901 | 16380 | 2016-12-17 22:43:27 | This is Gus. He likes to be close to you, which is good because you want to be close to Gus. 12/10 would boop then pet https://t.co/DrsrQkEfnb | 12 | 10 | Gus | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.292556 | |
| 309 | 809920764300447744 | 4521 | 17250 | 2016-12-17 00:38:52 | Please only send in dogs. We only rate dogs, not seemingly heartbroken ewoks. Thank you... still 10/10 would console https://t.co/HIraYS1Bzo | 10 | 10 | None | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | True | True | True | Norwich_terrier | 0.397163 | |
| 310 | 809448704142938112 | 1696 | 7727 | 2016-12-15 17:23:04 | I call this one "A Blep by the Sea" 12/10 https://t.co/EMdnCugNbo | 12 | 10 | None | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | True | True | True | Greater_swiss_mountain_dog | 0.375415 | |
| 311 | 809220051211603969 | 6554 | 22246 | 2016-12-15 02:14:29 | This is Kyro. He's a Stratocumulus Flop. Tongue ejects at random. Serious h*ckin condition. Still 12/10 would pet passionately https://t.co/wHu15q2Q6p | 12 | 10 | Kyro | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | True | True | True | Pomeranian | 0.819511 | |
| 312 | 809084759137812480 | 4046 | 14685 | 2016-12-14 17:16:53 | This is Wallace. You said you brushed your teeth but he checked your toothbrush and it was bone dry. 11/10 not pupset, just disappointed https://t.co/nadm8yWZ4h | 11 | 10 | Wallace | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | True | True | True | Vizsla | 0.911412 | |
| 313 | 808838249661788160 | 3536 | 11271 | 2016-12-14 00:57:20 | This is Ito. He'll be your uber driver tonight. Currently adjusting the mirrors. 13/10 incredibly h*ckin responsible https://t.co/Zrrcw29o13 | 13 | 10 | Ito | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | True | True | True | Rottweiler | 0.369530 | |
| 314 | 808501579447930884 | 3007 | 12595 | 2016-12-13 02:39:32 | This is Koda. He dug a hole and then sat in it because why not. Unamused by the bath that followed. 12/10 https://t.co/SQhyqrr8px | 12 | 10 | Koda | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | True | True | True | Airedale | 0.454239 | |
| 315 | 808106460588765185 | 2525 | 9701 | 2016-12-12 00:29:28 | Here we have Burke (pupper) and Dexter (doggo). Pupper wants to be exactly like doggo. Both 12/10 would pet at same time https://t.co/ANBpEYHaho | 12 | 10 | None | doggo, pupper | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | True | True | True | Golden_retriever | 0.426183 |
| 316 | 808001312164028416 | 4098 | 14015 | 2016-12-11 17:31:39 | This is Cooper. He likes to stick his tongue out at you and then laugh about it. 12/10 quite the jokester https://t.co/O9iGgvfuzl | 12 | 10 | Cooper | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | True | True | True | Labrador_retriever | 0.730959 | |
| 317 | 807621403335917568 | 4288 | 16236 | 2016-12-10 16:22:02 | This is Ollie Vue. He was a 3 legged pupper on a mission to overcome everything. This is very hard to write. 14/10 we will miss you Ollie https://t.co/qTRY2qX9y4 | 14 | 10 | Ollie | pupper | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | True | True | True | Golden_retriever | 0.873233 |
| 318 | 807106840509214720 | 56625 | 107015 | 2016-12-09 06:17:20 | This is Stephan. He just wants to help. 13/10 such a good boy https://t.co/DkBYaCAg2d | 13 | 10 | Stephan | https://pbs.twimg.com/ext_tw_video_thumb/807106774843039744/pu/img/8XZg1xW35Xp2J6JW.jpg | 1 | True | True | True | Chihuahua | 0.505370 | |
| 319 | 807010152071229440 | 4418 | 14514 | 2016-12-08 23:53:08 | This is Lennon. He's a Boopershnoop Pupperdoop. Quite rare. Exceptionally pettable. 12/10 would definitely boop that shnoop https://t.co/fhgP6vSfhX | 12 | 10 | Lennon | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | True | True | True | Golden_retriever | 0.610807 | |
| 320 | 806542213899489280 | 2752 | 11363 | 2016-12-07 16:53:43 | This is Waffles. He's concerned that the dandruff shampoo he just bought is faulty. 11/10 tragic af https://t.co/BCB87qUU0h | 11 | 10 | Waffles | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | True | True | True | Vizsla | 0.938617 | |
| 321 | 806219024703037440 | 1388 | 7145 | 2016-12-06 19:29:28 | We only rate dogs. Please stop sending in non-canines like this Freudian Poof Lion. This is incredibly frustrating... 11/10 https://t.co/IZidSrBvhi | 11 | 10 | NaN | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | True | True | True | Chow | 0.835102 | |
| 322 | 805932879469572096 | 2209 | 9178 | 2016-12-06 00:32:26 | This is Major. He put on a tie for his first real walk. Only a little crooked. Can also drool upwards. H*ckin talented. 12/10 https://t.co/Zcwr8LgoO8 | 12 | 10 | Major | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | True | True | True | Norwegian_elkhound | 0.657967 | |
| 323 | 805826884734976000 | 2132 | 7335 | 2016-12-05 17:31:15 | This is Duke. He is not a fan of the pupporazzi. 12/10 https://t.co/SgpBVYIL18 | 12 | 10 | Duke | https://pbs.twimg.com/ext_tw_video_thumb/805826823359631360/pu/img/yr_fF0TZCR-B70p2.jpg | 1 | True | True | True | Siberian_husky | 0.248926 | |
| 324 | 805520635690676224 | 1905 | 6368 | 2016-12-04 21:14:20 | This is Zeke the Wonder Dog. He never let that poor man keep his frisbees. One of the Spartans all time greatest receivers. 13/10 RIP Zeke https://t.co/zacX7S6GyJ | 13 | 10 | Zeke | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | True | True | True | Malinois | 0.643147 | |
| 325 | 805207613751304193 | 1972 | 8680 | 2016-12-04 00:30:29 | This is Shooter. He's doing quite the snowy zoom. 12/10 https://t.co/lHy4Xbyhd9 | 12 | 10 | Shooter | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | True | True | True | Pembroke | 0.244705 | |
| 326 | 804738756058218496 | 4480 | 15326 | 2016-12-02 17:27:25 | This is Django. He accidentally opened the front facing camera. Did him quite the frighten. 12/10 https://t.co/kQVQoOW9NZ | 12 | 10 | Django | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | True | True | True | Tibetan_mastiff | 0.915790 | |
| 327 | 803773340896923648 | 3220 | 11203 | 2016-11-30 01:31:12 | This is Diogi. He fell in the pool as soon as he was brought home. Clumsy puppo. 12/10 would pet until dry https://t.co/ZxeRjMKaWt | 12 | 10 | Diogi | puppo | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | True | True | True | Miniature_pinscher | 0.817066 |
| 328 | 803638050916102144 | 4828 | 12270 | 2016-11-29 16:33:36 | Pupper hath acquire enemy. 13/10 https://t.co/ns9qoElfsX | 13 | 10 | None | pupper | https://pbs.twimg.com/ext_tw_video_thumb/803638023904559104/pu/img/vxm0Htm5iIV7EOAQ.jpg | 1 | True | True | True | Labrador_retriever | 0.372776 |
| 329 | 803276597545603072 | 2887 | 11207 | 2016-11-28 16:37:19 | This is Winston. His selfie game is legendary. Will steal your girl with a single snap. 11/10 handsome as h*ck https://t.co/jxQhxoPsgL | 11 | 10 | Winston | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | True | True | True | Pembroke | 0.457086 | |
| 330 | 802952499103731712 | 2336 | 10085 | 2016-11-27 19:09:28 | This is Marley. She's having a ruff day. Pretty pupset. 12/10 would assist https://t.co/yLm7hQ6UXh | 12 | 10 | Marley | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | True | True | True | Chow | 0.944032 | |
| 331 | 802572683846291456 | 2926 | 9959 | 2016-11-26 18:00:13 | This is Winnie. She's h*ckin ferocious. Dandelion doesn't even see her coming. 12/10 would pet with caution https://t.co/EFfLCP7oQv | 12 | 10 | Winnie | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | True | True | True | Golden_retriever | 0.610171 | |
| 332 | 802265048156610565 | 1573 | 7039 | 2016-11-25 21:37:47 | Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze | 11 | 10 | None | doggo, pupper | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | True | True | True | Labrador_retriever | 0.897162 |
| 333 | 802239329049477120 | 3040 | 10132 | 2016-11-25 19:55:35 | This is Loki. He'll do your taxes for you. Can also make room in your budget for all the things you bought today. 12/10 what a puppo https://t.co/5oWrHCWg87 | 12 | 10 | Loki | puppo | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | True | True | True | Eskimo_dog | 0.482498 |
| 334 | 801958328846974976 | 1992 | 8608 | 2016-11-25 01:18:59 | This is Ronnie. He hopes you're having a great day. Nifty tongue slip. 12/10 would pat head approvingly https://t.co/4fY2bsAm65 | 12 | 10 | Ronnie | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.327887 | |
| 335 | 801538201127157760 | 2391 | 9141 | 2016-11-23 21:29:33 | This is Wallace. He'll be your chau-fur this evening. 12/10 eyes on the road Wallace https://t.co/p1RD39XjUe | 12 | 10 | Wallace | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | True | True | True | Pembroke | 0.550506 | |
| 336 | 801167903437357056 | 6961 | 27386 | 2016-11-22 20:58:07 | This is Milo. I would do terrible things for Milo. 13/10 https://t.co/R6wJyC2Tey | 13 | 10 | Milo | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | True | True | True | Cocker_spaniel | 0.740220 | |
| 337 | 801115127852503040 | 2429 | 8992 | 2016-11-22 17:28:25 | This is Bones. He's being haunted by another doggo of roughly the same size. 12/10 deep breaths pupper everything's fine https://t.co/55Dqe0SJNj | 12 | 10 | Bones | doggo, pupper | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | True | True | True | Dalmatian | 0.823356 |
| 338 | 800751577355128832 | 3214 | 11701 | 2016-11-21 17:23:47 | Say hello to Mauve and Murphy. They're rather h*ckin filthy. Preferred nap over bath. Both 12/10 https://t.co/4UwCTW3lXG | 12 | 10 | Mauve | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | True | True | True | Cocker_spaniel | 0.771984 | |
| 339 | 800513324630806528 | 3495 | 14685 | 2016-11-21 01:37:04 | This is Chef. Chef loves everyone and wants everyone to love each other. 11/10 https://t.co/ILHGs0e6Dm | 11 | 10 | Chef | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | True | True | True | Pembroke | 0.828904 | |
| 340 | 800459316964663297 | 2489 | 10538 | 2016-11-20 22:02:27 | Here's a very sleepy pupper. Appears to be portable as h*ck. 12/10 would snug intensely https://t.co/61sX7pW5Ca | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | False | False | False | Teddy | 0.311928 |
| 341 | 800388270626521089 | 3265 | 12456 | 2016-11-20 17:20:08 | This is Doc. He takes time out of every day to worship our plant overlords. 12/10 quite the floofer https://t.co/azMneS6Ly5 | 12 | 10 | Doc | floofer | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | True | True | True | Golden_retriever | 0.359860 |
| 342 | 800141422401830912 | 2980 | 17092 | 2016-11-20 00:59:15 | This is Peaches. She's the ultimate selfie sidekick. Super sneaky tongue slip appreciated. 13/10 https://t.co/pbKOesr8Tg | 13 | 10 | Peaches | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | True | True | True | Golden_retriever | 0.938048 | |
| 343 | 799757965289017345 | 2506 | 9390 | 2016-11-18 23:35:32 | This is Sobe. She's a h*ckin happy doggo. Only one leg tho. Must have good balance. 13/10 would smile back https://t.co/OiH8PaOxB1 | 13 | 10 | Sobe | doggo | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | True | True | True | Border_collie | 0.442534 |
| 344 | 799422933579902976 | 2213 | 8965 | 2016-11-18 01:24:14 | This is Longfellow (prolly sophisticated). He's a North Appalachian Oatzenjammer. Concerned about wrinkled feets. 12/10 would hug softly https://t.co/bpLuQuxzHZ | 12 | 10 | Longfellow | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | True | True | True | Miniature_pinscher | 0.583630 | |
| 345 | 799297110730567681 | 3227 | 11065 | 2016-11-17 17:04:16 | This is Jeffrey. He's quite the jokester. Takes it too far sometimes. Still 11/10 would pet https://t.co/YDtZcAiMAf | 11 | 10 | Jeffrey | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | True | True | True | Malamute | 0.985028 | |
| 346 | 799063482566066176 | 2863 | 9058 | 2016-11-17 01:35:54 | This is Mister. He only wears the most fashionable af headwear. 11/10 h*ckin stylish https://t.co/BXJFKOVnJm | 11 | 10 | Mister | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | True | True | True | Norfolk_terrier | 0.334436 | |
| 347 | 798933969379225600 | 5203 | 14712 | 2016-11-16 17:01:16 | This is Iroh. He's in a predicament. 12/10 someone help him https://t.co/KJAKO2kXsL | 12 | 10 | Iroh | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | True | True | True | Siberian_husky | 0.703224 | |
| 348 | 798925684722855936 | 1663 | 8246 | 2016-11-16 16:28:21 | This is Shadow. He's a firm believer that they're all good dogs. H*ckin passionate about it too. 11/10 I stand with Shadow https://t.co/8yvpacwBcu | 11 | 10 | Shadow | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | True | True | True | West_highland_white_terrier | 0.539463 | |
| 349 | 798209839306514432 | 2954 | 11548 | 2016-11-14 17:03:50 | This is Cooper. His bow tie was too heavy for the front so he moved it to the side. Balanced af now. 13/10 https://t.co/jG1PAFkB81 | 13 | 10 | Cooper | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | True | True | True | Pekinese | 0.524583 | |
| 350 | 797971864723324932 | 3652 | 13018 | 2016-11-14 01:18:12 | Here's a helicopter pupper. He takes off at random. H*ckin hard to control. 12/10 rare af https://t.co/GRWPgNKt2z | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.489845 |
| 351 | 797545162159308800 | 5656 | 16198 | 2016-11-12 21:02:38 | This is Cassie. She steals things. Guilt increases slightly each time. 12/10 would forgive almost immediately https://t.co/Ia19irLwyB | 12 | 10 | Cassie | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | True | True | True | Pembroke | 0.954089 | |
| 352 | 797236660651966464 | 7726 | 22328 | 2016-11-12 00:36:46 | This is Pancake. She loves Batman and winks like a h*ckin champ. 12/10 real crowd pleaser https://t.co/6kqsAjJNhi | 12 | 10 | Pancake | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | True | True | True | Collie | 0.767005 | |
| 353 | 796865951799083009 | 2198 | 8564 | 2016-11-11 00:03:42 | This is Tyr. He's just checking on you. Nifty af tongue slip. 12/10 would absolutely pet https://t.co/Jgnuiyvq06 | 12 | 10 | Tyr | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | True | True | True | Cardigan | 0.839129 | |
| 354 | 796759840936919040 | 3562 | 13256 | 2016-11-10 17:02:03 | Say hello to Romeo. He was just told that it's too cold for the pool. H*ckin nonsense. 11/10 would help fill up https://t.co/6hx7ur6sNI | 11 | 10 | Romeo | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.463996 | |
| 355 | 796484825502875648 | 2042 | 8472 | 2016-11-09 22:49:15 | Here's a sleepy doggo that requested some assistance. 12/10 would carry everywhere https://t.co/bvkkqOjNDV | 12 | 10 | None | doggo | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | True | False | True | Cocker_spaniel | 0.116924 |
| 356 | 796387464403357696 | 4861 | 12334 | 2016-11-09 16:22:22 | This is Snicku. He's having trouble reading because he's a dog. Glasses only helped a little. Nap preferred. 12/10 would snug well https://t.co/cVLUasbKA5 | 12 | 10 | Snicku | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | True | True | False | Pekinese | 0.461164 | |
| 357 | 796149749086875649 | 16628 | 36177 | 2016-11-09 00:37:46 | This is Ruby. She just turned on the news. Officially terrified. 11/10 deep breaths Ruby https://t.co/y5KarNXWXt | 11 | 10 | Ruby | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | True | True | False | Golden_retriever | 0.600276 | |
| 358 | 796116448414461957 | 2813 | 10139 | 2016-11-08 22:25:27 | I didn't believe it at first but now I can see that voter fraud is a serious h*ckin issue. 11/10 https://t.co/7i0bDMbrVN | 11 | 10 | None | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | True | True | True | Cardigan | 0.700182 | |
| 359 | 796080075804475393 | 2703 | 9469 | 2016-11-08 20:00:55 | This is Yogi. He's 98% floof. Snuggable af. 12/10 https://t.co/opoXKxmfFm | 12 | 10 | Yogi | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | True | True | False | Chow | 0.973846 | |
| 360 | 796031486298386433 | 4284 | 12071 | 2016-11-08 16:47:50 | This is Daisy. She's here to make your day better. 13/10 mission h*ckin successful https://t.co/PbgvuD0qIL | 13 | 10 | Daisy | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | True | True | False | Golden_retriever | 0.893775 | |
| 361 | 795464331001561088 | 27728 | 55683 | 2016-11-07 03:14:10 | Elder doggo does a splash. Both 13/10 incredible stuff https://t.co/gBUDjdEcqz | 13 | 10 | None | doggo | https://pbs.twimg.com/ext_tw_video_thumb/795464066940764160/pu/img/jPkMMQXdydb7CqFX.jpg | 1 | True | True | True | Golden_retriever | 0.193082 |
| 362 | 795400264262053889 | 3323 | 11270 | 2016-11-06 22:59:35 | This is Brody. He's trying to make the same face as the football. 12/10 https://t.co/2H4MfOGlpQ | 12 | 10 | Brody | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | True | True | False | Golden_retriever | 0.925494 | |
| 363 | 794926597468000259 | 2697 | 11492 | 2016-11-05 15:37:24 | This is Mack. He's rather h*ckin sleepy. Exceptional ears. 12/10 would boop https://t.co/XRPvTPF0VH | 12 | 10 | Mack | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | False | False | True | Teddy | 0.569566 | |
| 364 | 794332329137291264 | 3088 | 10686 | 2016-11-04 00:15:59 | This is Nimbus (like the cloud). He just bought this fancy af duck raincoat. Only protects one ear tho. 12/10 so h*ckin floofy https://t.co/SIQbb8c3AU | 12 | 10 | Nimbus | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | True | True | True | Samoyed | 0.988307 | |
| 365 | 793962221541933056 | 5711 | 18910 | 2016-11-02 23:45:19 | This is Maximus. His face is stuck like that. Tragic really. Great tongue tho. 12/10 would pet firmly https://t.co/xIfrsMNLBR | 12 | 10 | Maximus | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | True | True | True | Labrador_retriever | 0.861651 | |
| 366 | 793845145112371200 | 2187 | 10295 | 2016-11-02 16:00:06 | This is Clark. He was just caught wearing pants. 13/10 game-changing af https://t.co/2Xo19aPrG5 | 13 | 10 | Clark | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | True | True | True | Old_english_sheepdog | 0.765277 | |
| 367 | 793601777308463104 | 1908 | 8926 | 2016-11-01 23:53:02 | This is Dobby. I can't stop looking at her feet. 12/10 would absolutely snug https://t.co/LhzPWv6rTv | 12 | 10 | Dobby | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | True | True | True | Miniature_pinscher | 0.538981 | |
| 368 | 793500921481273345 | 2786 | 11953 | 2016-11-01 17:12:16 | This is Fiona. She's an extremely mediocre copilot. Very distracting. Wink makes up for all the missed turns. 12/10 https://t.co/aF5MmpvPqN | 12 | 10 | Fiona | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | True | True | True | Golden_retriever | 0.326122 | |
| 369 | 793286476301799424 | 10723 | 27597 | 2016-11-01 03:00:09 | This is Moreton. He's the Good Boy Who Lived. 13/10 magical as h*ck https://t.co/rLHGx3VAF3 | 13 | 10 | Moreton | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | True | True | False | Afghan_hound | 0.274637 | |
| 370 | 793271401113350145 | 2763 | 9677 | 2016-11-01 02:00:14 | Meet Dave. It's his favorite day of the year. He gets to fulfill his dream of being a dinosaur. 12/10 inspirational af https://t.co/MgQSdfZGPN | 12 | 10 | Dave | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | True | True | True | Siberian_husky | 0.231695 | |
| 371 | 793256262322548741 | 9714 | 22350 | 2016-11-01 01:00:05 | Oh h*ck look at this spookling right here. Fright level off the charts. 12/10 sufficiently spooked https://t.co/BNy9IIJMb0 | 12 | 10 | None | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | True | True | True | Basset | 0.207622 | |
| 372 | 793241302385262592 | 3812 | 11780 | 2016-11-01 00:00:38 | This is Tucker. He's out here bustin h*ckin ghosts. 13/10 dedicated af https://t.co/Ap477GhwXt | 13 | 10 | Tucker | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | True | True | True | Golden_retriever | 0.559308 | |
| 373 | 793226087023144960 | 3338 | 11001 | 2016-10-31 23:00:11 | This is Juno. She spooked me up real good, but only to get my attention. Above average handwriting for a dog I think. 11/10 https://t.co/hFxxBCWlwj | 11 | 10 | Juno | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | True | True | True | Wire-haired_fox_terrier | 0.456047 | |
| 374 | 793195938047070209 | 6547 | 17063 | 2016-10-31 21:00:23 | Say hello to Lily. She's pupset that her costume doesn't fit as well as last year. 12/10 poor puppo https://t.co/YSi6K1firY | 12 | 10 | Lily | puppo | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | True | True | True | Labrador_retriever | 0.654762 |
| 375 | 793180763617361921 | 2310 | 7740 | 2016-10-31 20:00:05 | This is Newt. He's a strawberry. 11/10 https://t.co/2VhmlwxA1Q | 11 | 10 | Newt | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | True | True | True | Lakeland_terrier | 0.266824 | |
| 376 | 793165685325201412 | 3238 | 10478 | 2016-10-31 19:00:10 | This is Benji. He's Air Bud. It's a low effort costume but he pulls it off rather h*ckin well. 12/10 would happily get dunked on https://t.co/IbzT7DJvBo | 12 | 10 | Benji | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | True | True | False | Golden_retriever | 0.946224 | |
| 377 | 793150605191548928 | 1984 | 6909 | 2016-10-31 18:00:14 | This is Nida. She's a free elf. Waited so long for this day. 11/10 https://t.co/3lE8Izgmkf | 11 | 10 | Nida | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | True | True | True | Italian_greyhound | 0.193869 | |
| 378 | 793120401413079041 | 4551 | 14202 | 2016-10-31 16:00:13 | This is Robin. She's desperately trying to do me a frighten, but her tongue drastically decreases her spook value. Still 11/10 great effort https://t.co/sxMrsOZ8zb | 11 | 10 | Robin | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | True | True | True | Labrador_retriever | 0.724944 | |
| 379 | 792773781206999040 | 1963 | 8209 | 2016-10-30 17:02:53 | This is Monster. Not an actual monster tho. He's showing you his tongue. Very impressive Monster. 12/10 would snug https://t.co/RhaPExuxJL | 12 | 10 | Monster | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | True | True | True | Yorkshire_terrier | 0.912804 | |
| 380 | 792394556390137856 | 4998 | 15128 | 2016-10-29 15:55:58 | Meet BeBe. She rocks the messy bun of your dreams. H*ckin flawless. 12/10 would watch her tutorial https://t.co/of0pFNBIl8 | 12 | 10 | BeBe | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | True | True | True | Cocker_spaniel | 0.746387 | |
| 381 | 792050063153438720 | 2088 | 8029 | 2016-10-28 17:07:05 | This is Remus. He's a mop that came to life. Can't see anything. Constantly trips over himself. Still a very good dog. 11/10 https://t.co/S3f1SYylzu | 11 | 10 | Remus | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | True | False | True | Komondor | 0.942856 | |
| 382 | 791672322847637504 | 3661 | 13129 | 2016-10-27 16:06:04 | When she says you're a good boy and you know you're a good boy because you're a good boy. 13/10 https://t.co/O5IUmRHRIh | 13 | 10 | None | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | True | True | True | Golden_retriever | 0.705092 | |
| 383 | 790987426131050500 | 2483 | 11089 | 2016-10-25 18:44:32 | This is Misty. She has a cowboy hat on her nose. 12/10 https://t.co/Eno0mypHIr | 12 | 10 | Misty | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | True | True | True | Cocker_spaniel | 0.349195 | |
| 384 | 790698755171364864 | 2203 | 9158 | 2016-10-24 23:37:28 | This is Mosby. He appears to be rather h*ckin snuggable af. 12/10 keep it up Mosby https://t.co/IiiBq460I7 | 12 | 10 | Mosby | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.996541 | |
| 385 | 790337589677002753 | 2167 | 8740 | 2016-10-23 23:42:19 | Meet Maggie. She can hear your cells divide. 12/10 can also probably fly https://t.co/ovE2hqXryV | 12 | 10 | Maggie | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | True | True | True | Pembroke | 0.658808 | |
| 386 | 790277117346975746 | 3732 | 14081 | 2016-10-23 19:42:02 | This is Bruce. He never backs down from a challenge. 11/10 you got this Bruce https://t.co/aI7umZHIq7 | 11 | 10 | Bruce | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | True | True | True | Labrador_retriever | 0.427742 | |
| 387 | 789628658055020548 | 2080 | 8448 | 2016-10-22 00:45:17 | This is Eli. He can fly. 13/10 magical af https://t.co/huPSJJ7FDI | 13 | 10 | Eli | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | True | False | True | Chow | 0.260702 | |
| 388 | 789599242079838210 | 2279 | 7620 | 2016-10-21 22:48:24 | This is Brownie. She's wearing a Halloween themed onesie. 12/10 festive af https://t.co/0R4meWXFOx | 12 | 10 | Brownie | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | True | True | True | Chesapeake_bay_retriever | 0.878822 | |
| 389 | 789530877013393408 | 3942 | 13188 | 2016-10-21 18:16:44 | This is Rizzy. She smiles a lot. 12/10 contagious af https://t.co/TU4sZogVIq | 12 | 10 | Rizzy | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | True | True | True | Schipperke | 0.363272 | |
| 390 | 789268448748703744 | 3014 | 10196 | 2016-10-21 00:53:56 | This is Stella. She's happier than I will ever be. 10/10 would trade lives with https://t.co/JSs2bfDtTS | 10 | 10 | Stella | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | True | True | True | Malamute | 0.812860 | |
| 391 | 789137962068021249 | 3244 | 10875 | 2016-10-20 16:15:26 | This is Bo. He's a West Congolese Bugaboop Snuggle. Rather exotic. Master of the head tilt. 12/10 would pay to pet https://t.co/2jwxxtNzoN | 12 | 10 | Bo | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | True | True | True | Chihuahua | 0.746135 | |
| 392 | 788765914992902144 | 12014 | 30658 | 2016-10-19 15:37:03 | This is Butter. She can have whatever she wants forever. 12/10 would hug softly https://t.co/x5gXRS1abq | 12 | 10 | Butter | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | True | True | False | Cocker_spaniel | 0.500509 | |
| 393 | 788412144018661376 | 5990 | 16060 | 2016-10-18 16:11:17 | This is Dexter. He breaks hearts for a living. 11/10 h*ckin handsome af https://t.co/4DhSsC1W7S | 11 | 10 | Dexter | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | True | True | True | Golden_retriever | 0.805238 | |
| 394 | 788178268662984705 | 2488 | 8100 | 2016-10-18 00:41:57 | Atlas is back and this time he's got doggles. Still 13/10 solarly conscious af https://t.co/s7MgFWDySc | 13 | 10 | None | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | True | True | False | Samoyed | 0.735480 | |
| 395 | 788150585577050112 | 1510 | 6865 | 2016-10-17 22:51:57 | This is Leo. He's a golden chow. Rather h*ckin rare. 13/10 would give extra pats https://t.co/xosHjFzVXc | 13 | 10 | Leo | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | True | True | True | Chow | 0.814145 | |
| 396 | 787810552592695296 | 3540 | 9717 | 2016-10-17 00:20:47 | This is Frank. He wears sunglasses and walks himself. 11/10 I'll never be this cool or independent https://t.co/pNNjBtHWPc | 11 | 10 | Frank | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | True | True | True | Pug | 0.362835 | |
| 397 | 787717603741622272 | 3240 | 11416 | 2016-10-16 18:11:26 | This is Tonks. She is a service puppo. Can hear a caterpillar hiccup from 7 miles away. 13/10 would follow anywhere https://t.co/i622ZbWkUp | 13 | 10 | Tonks | puppo | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | True | True | True | German_shepherd | 0.992339 |
| 398 | 787397959788929025 | 3300 | 12120 | 2016-10-15 21:01:17 | This is Moose. He's rather h*ckin dangerous (you can tell by the collar). 11/10 would still attempt to snug https://t.co/lHVHGdDzb3 | 11 | 10 | Moose | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | True | True | True | Chihuahua | 0.900483 | |
| 399 | 786963064373534720 | 9327 | 29725 | 2016-10-14 16:13:10 | This is Rory. He's got an interview in a few minutes. Looking spiffy af. Nervous as h*ck tho. 12/10 would hire https://t.co/ibj5g6xaAj | 12 | 10 | Rory | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | True | True | True | Golden_retriever | 0.915303 | |
| 400 | 786709082849828864 | 7069 | 20296 | 2016-10-13 23:23:56 | This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/10 https://t.co/yBO5wuqaPS | 11 | 10 | Logan | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | True | False | True | Pomeranian | 0.467321 | |
| 401 | 786664955043049472 | 2996 | 11957 | 2016-10-13 20:28:35 | "Honestly Kathleen I just want more Ken Bone" 12/10 https://t.co/HmlEvAMP4r | 12 | 10 | None | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | True | True | True | Leonberg | 0.512034 | |
| 402 | 786595970293370880 | 3601 | 10497 | 2016-10-13 15:54:28 | This is Dale. He's a real spookster. Did me quite the frighten. 11/10 not too spooky to pet tho https://t.co/L8BWDD4oBX | 11 | 10 | Dale | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | True | True | True | Pembroke | 0.709512 | |
| 403 | 786363235746385920 | 4072 | 12189 | 2016-10-13 00:29:39 | This is Rizzo. He has many talents. A true renaissance doggo. 13/10 entertaining af https://t.co/TVXpEJB7Wn | 13 | 10 | Rizzo | doggo | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | True | True | True | Golden_retriever | 0.929266 |
| 404 | 786233965241827333 | 5571 | 17178 | 2016-10-12 15:55:59 | This is Mattie. She's extremely dangerous. Will bite your h*ckin finger right off. Still 11/10 would pet with caution https://t.co/78c9W8kLFh | 11 | 10 | Mattie | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | True | True | True | Labrador_retriever | 0.478193 | |
| 405 | 785927819176054784 | 3652 | 12696 | 2016-10-11 19:39:28 | This is Lucy. She's strives to be the best potato she can be. 12/10 would boop https://t.co/lntsj7Fc4Y | 12 | 10 | Lucy | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | False | True | True | Teddy | 0.972070 | |
| 406 | 785872687017132033 | 2130 | 7489 | 2016-10-11 16:00:24 | Meet Rusty. He appears to be rather h*ckin fluffy. Also downright adorable af. 12/10 would rub my face against his https://t.co/1j9kLGb4wV | 12 | 10 | Rusty | https://pbs.twimg.com/ext_tw_video_thumb/785872596088811520/pu/img/5O-_BgqdFQu_2Bt7.jpg | 1 | True | True | True | Great_pyrenees | 0.392108 | |
| 407 | 785533386513321988 | 2334 | 10183 | 2016-10-10 17:32:08 | This is Dallas. Her tongue is ridiculous. 11/10 h*ckin proud af https://t.co/h4jhlH4EyG | 11 | 10 | Dallas | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | True | True | True | Miniature_pinscher | 0.436023 | |
| 408 | 785264754247995392 | 1911 | 8128 | 2016-10-09 23:44:41 | This is Doc. He requested to be carried around like that. 12/10 anything for Doc https://t.co/mWYACm4qnx | 12 | 10 | Doc | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | False | False | True | Teddy | 0.674893 | |
| 409 | 784826020293709826 | 3712 | 11310 | 2016-10-08 18:41:19 | This is Rusty. He's going D1 for sure. Insane vertical. 13/10 would draft https://t.co/AsykOwMrXQ | 13 | 10 | Rusty | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | True | False | True | Chow | 0.090341 | |
| 410 | 784517518371221505 | 2970 | 10039 | 2016-10-07 22:15:26 | This is Frankie. He has yet to learn how to control his tongue. 11/10 maybe one day https://t.co/p6fgYe2dB6 | 11 | 10 | Frankie | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | True | True | True | Malamute | 0.757764 | |
| 411 | 784431430411685888 | 1491 | 6329 | 2016-10-07 16:33:21 | This is Stormy. He's curly af. Already pupared for Coachella next year. 12/10 https://t.co/PHA1vtqqpt | 12 | 10 | Stormy | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | True | True | True | Miniature_poodle | 0.744819 | |
| 412 | 783821107061198850 | 2269 | 8209 | 2016-10-06 00:08:09 | This is Mairi. She has mastered the art of camouflage. 12/10 h*ckin sneaky af https://t.co/STcPjiNAHp | 12 | 10 | Mairi | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | True | True | True | Lakeland_terrier | 0.265659 | |
| 413 | 783695101801398276 | 3737 | 11650 | 2016-10-05 15:47:27 | This is Loomis. He's the leader of the Kenneth search party. The passion is almost overwhelming. 12/10 one day he will be free https://t.co/kCRKlFg4AY | 12 | 10 | Loomis | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | True | True | True | Chow | 0.314265 | |
| 414 | 783466772167098368 | 2608 | 9468 | 2016-10-05 00:40:09 | This is Finn. He likes eavesdropping from filing cabinets. It's a real issue but no one has approached him about it. 11/10 would still pet https://t.co/s8W8Del9HQ | 11 | 10 | Finn | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | True | True | True | Chihuahua | 0.789000 | |
| 415 | 783334639985389568 | 13616 | 32651 | 2016-10-04 15:55:06 | This is Dave. He's currently in a predicament. Doesn't seem to mind tho. 12/10 someone assist Dave https://t.co/nfprKAXqwu | 12 | 10 | Dave | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | True | True | True | Cardigan | 0.593858 | |
| 416 | 783085703974514689 | 2565 | 9112 | 2016-10-03 23:25:55 | This is Earl. He can't catch. Did his best tho. 11/10 would repair confidence with extra pats https://t.co/IsqyvbjFgM | 11 | 10 | Earl | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.240602 | |
| 417 | 782747134529531904 | 1604 | 8310 | 2016-10-03 01:00:34 | This is Deacon. He's the happiest almost dry doggo I've ever seen. 11/10 would smile back https://t.co/C6fUMnHt1H | 11 | 10 | Deacon | doggo | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | True | True | True | Golden_retriever | 0.560699 |
| 418 | 782722598790725632 | 6238 | 19250 | 2016-10-02 23:23:04 | This is Penny. She fought a bee and the bee won. 10/10 you're fine Penny, everything's fine https://t.co/zrMVdfFej6 | 10 | 10 | Penny | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | True | True | False | Irish_setter | 0.574557 | |
| 419 | 782598640137187329 | 2184 | 8694 | 2016-10-02 15:10:30 | This is Timmy. He's quite large. According to a trusted source it's actually a dog wearing a dog suit. 11/10 https://t.co/BIUchFwHqn | 11 | 10 | Timmy | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | True | True | True | Malamute | 0.840871 | |
| 420 | 782305867769217024 | 6470 | 18630 | 2016-10-01 19:47:08 | This is Sampson. He just graduated. Ready to be a doggo now. Time for the real world. 12/10 have fun with taxes https://t.co/pgVKxRw0s1 | 12 | 10 | Sampson | doggo | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | True | True | True | Briard | 0.504427 |
| 421 | 781661882474196992 | 3129 | 11634 | 2016-09-30 01:08:10 | Who keeps sending in pictures without dogs in them? This needs to stop. 5/10 for the mediocre road https://t.co/ELqelxWMrC | 5 | 10 | None | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | True | True | True | Pembroke | 0.438087 | |
| 422 | 781251288990355457 | 2458 | 9428 | 2016-09-28 21:56:36 | This is Oakley. He just got yelled at for going 46 in a 45. Churlish af. 11/10 would still pet so well https://t.co/xIYsa6LPA4 | 11 | 10 | Oakley | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | True | True | False | Mexican_hairless | 0.887771 | |
| 423 | 781163403222056960 | 3168 | 10895 | 2016-09-28 16:07:23 | We normally don't rate lobsters, but this one appears to be a really good lobster. 10/10 would pet with caution https://t.co/YkHc7U7uUy | 10 | 10 | None | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | True | True | True | Shetland_sheepdog | 0.973841 | |
| 424 | 780858289093574656 | 2328 | 8033 | 2016-09-27 19:54:58 | This is Dash. He's very stylish, but also incredibly unimpressed with the current state of our nation. 10/10 would pet ears first https://t.co/YElO4hvXI6 | 10 | 10 | Dash | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.488555 | |
| 425 | 780800785462489090 | 1505 | 6141 | 2016-09-27 16:06:28 | This is Koda. He has a weird relationship with tall grass. Slightly concerning. 11/10 would def still pet https://t.co/KQzSR8eCsw | 11 | 10 | Koda | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | True | True | True | Siberian_husky | 0.951963 | |
| 426 | 780601303617732608 | 3839 | 13525 | 2016-09-27 02:53:48 | Meet Hercules. He can have whatever he wants for the rest of eternity. 12/10 would snug passionately https://t.co/mH0IOyFdIG | 12 | 10 | Hercules | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | True | True | True | Saint_bernard | 0.995143 | |
| 427 | 780543529827336192 | 2032 | 7040 | 2016-09-26 23:04:13 | Here's a perturbed super floof. 12/10 would snug so damn well https://t.co/VG095mi09Q | 12 | 10 | None | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | True | True | True | Golden_retriever | 0.628312 | |
| 428 | 780459368902959104 | 1224 | 5892 | 2016-09-26 17:29:48 | This is Bear. Don't worry, he's not a real bear tho. Contains unreal amounts of squish. 11/10 heteroskedastic af https://t.co/coi4l1T2Sm | 11 | 10 | Bear | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | True | True | True | Great_dane | 0.382491 | |
| 429 | 780192070812196864 | 2589 | 9712 | 2016-09-25 23:47:39 | We only rate dogs. Pls stop sending in non-canines like this Urban Floof Giraffe. I can't handle this. 11/10 https://t.co/zHIqpM5Gni | 11 | 10 | None | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | True | False | False | Vizsla | 0.144012 | |
| 430 | 779834332596887552 | 8237 | 21252 | 2016-09-25 00:06:08 | This is Scout. He really wants to kiss himself. H*ckin inappropriate. 11/10 narcissistic af https://t.co/x0gV2Ck3AD | 11 | 10 | Scout | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | True | True | True | Golden_retriever | 0.993830 | |
| 431 | 779123168116150273 | 4207 | 13206 | 2016-09-23 01:00:13 | This is Reggie. He hugs everyone he meets. 12/10 keep spreading the love Reggie https://t.co/uMfhduaate | 12 | 10 | Reggie | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | True | True | True | Toy_poodle | 0.431080 | |
| 432 | 779056095788752897 | 5247 | 16500 | 2016-09-22 20:33:42 | Everybody drop what you're doing and look at this dog. 13/10 must be super h*ckin rare https://t.co/I1bJUzUEW5 | 13 | 10 | None | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | True | True | True | Chihuahua | 0.721188 | |
| 433 | 778990705243029504 | 8437 | 22342 | 2016-09-22 16:13:51 | This is Jay. He's really h*ckin happy about the start of fall. Sneaky tongue slip in 2nd pic. 11/10 snuggly af https://t.co/vyx1X5eyWI | 11 | 10 | Jay | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | True | True | True | Cocker_spaniel | 0.715351 | |
| 434 | 778748913645780993 | 1562 | 7717 | 2016-09-22 00:13:04 | This is Mya (pronounced "mmmyah?"). Her head is round af. 11/10 would pat accordingly https://t.co/1dpEuALnY0 | 11 | 10 | Mya | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.351434 | |
| 435 | 778650543019483137 | 1729 | 6430 | 2016-09-21 17:42:10 | Meet Strider. He thinks he's a sorority girl. Already wants to go to NYC for a weekend to say he's "studied abroad" 10/10 https://t.co/KYZkPuiC1l | 10 | 10 | Strider | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | True | True | True | German_shepherd | 0.515699 | |
| 436 | 778624900596654080 | 1176 | 5177 | 2016-09-21 16:00:17 | This is Penny. She's a sailor pup. 11/10 would take to the open seas with https://t.co/0rRxyBQt32 | 11 | 10 | Penny | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | True | True | True | Airedale | 0.786089 | |
| 437 | 778408200802557953 | 5023 | 15135 | 2016-09-21 01:39:11 | RIP Loki. Thank you for the good times. You will be missed by many. 14/10 https://t.co/gJKD9pst5A | 14 | 10 | None | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | True | True | True | Pembroke | 0.848362 | |
| 438 | 778383385161035776 | 1271 | 6515 | 2016-09-21 00:00:35 | This is Nala. She's a future Dogue model. Won't respond to my texts. 13/10 would be an honor to pet https://t.co/zP1IvAATWv | 13 | 10 | Nala | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | True | True | True | Collie | 0.345266 | |
| 439 | 778286810187399168 | 3836 | 11576 | 2016-09-20 17:36:50 | This is Stanley. He has too much skin. Isn't happy about it. Quite pupset actually. Still 11/10 would comfort https://t.co/hhTfnPrWfb | 11 | 10 | Stanley | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | True | True | False | Boston_bull | 0.322070 | |
| 440 | 778039087836069888 | 3065 | 9417 | 2016-09-20 01:12:28 | Evolution of a pupper yawn featuring Max. 12/10 groundbreaking stuff https://t.co/t8Y4x9DmVD | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | True | True | True | German_shepherd | 0.717776 |
| 441 | 777885040357281792 | 1893 | 7078 | 2016-09-19 15:00:20 | This is Wesley. He's clearly trespassing. Seems rather h*ckin violent too. Weaponized forehead. 3/10 wouldn't let in https://t.co/pL7wbMRW7M | 3 | 10 | Wesley | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | True | True | True | Afghan_hound | 0.123529 | |
| 442 | 777684233540206592 | 3403 | 12518 | 2016-09-19 01:42:24 | "Yep... just as I suspected. You're not flossing." 12/10 and 11/10 for the pup not flossing https://t.co/SuXcI9B7pQ | 12 | 10 | None | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | True | True | True | Cocker_spaniel | 0.253442 | |
| 443 | 777621514455814149 | 2910 | 9742 | 2016-09-18 21:33:11 | This is Derek. You can't look at him and not smile. Must've just had a blue pupsicle. 12/10 would snug intensely https://t.co/BnVTMtUeI3 | 12 | 10 | Derek | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | True | True | True | Chow | 0.999823 | |
| 444 | 777189768882946048 | 4999 | 15921 | 2016-09-17 16:57:35 | This is Jeffrey. He's being held so he doesn't fly away. 12/10 would set free https://t.co/d3aLyCykn7 | 12 | 10 | Jeffrey | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | True | True | False | Chihuahua | 0.988412 | |
| 445 | 776813020089548800 | 1405 | 5444 | 2016-09-16 16:00:31 | Meet Solomon. He was arrested for possession of adorable and attempted extra pats on the head. 12/10 would post bail https://t.co/nFqLaOLUQA | 12 | 10 | Solomon | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | True | True | True | Toy_poodle | 0.516610 | |
| 446 | 776477788987613185 | 3249 | 9858 | 2016-09-15 17:48:25 | This is Huck. He's addicted to caffeine. Hope it's not too latte to seek help. 11/10 stay strong pupper https://t.co/iJE3F0VozW | 11 | 10 | Huck | pupper | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | True | True | False | Labrador_retriever | 0.884839 |
| 447 | 776218204058357768 | 18497 | 33345 | 2016-09-15 00:36:55 | Atlas rolled around in some chalk and now he's a magical rainbow floofer. 13/10 please never take a bath https://t.co/nzqTNw0744 | 13 | 10 | None | floofer | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | True | True | True | Samoyed | 0.940326 |
| 448 | 776201521193218049 | 2919 | 10681 | 2016-09-14 23:30:38 | This is O'Malley. That is how he sleeps. Doesn't care what you think about it. 10/10 comfy af https://t.co/Pq150LeRaC | 10 | 10 | O | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | True | True | True | Rottweiler | 0.502228 | |
| 449 | 775842724423557120 | 3116 | 13022 | 2016-09-13 23:44:54 | This is Blue. He was having an average day until his owner told him about Bront. 12/10 h*ckin hysterical af https://t.co/saRYTcxQeH | 12 | 10 | Blue | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | True | False | True | Chow | 0.520022 | |
| 450 | 775364825476165632 | 3472 | 8295 | 2016-09-12 16:05:54 | This is Finley. He's an independent doggo still adjusting to life on his own. 11/10 https://t.co/7FNcBaKbci | 11 | 10 | Finley | doggo | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | True | True | True | Beagle | 0.571229 |
| 451 | 775085132600442880 | 5488 | 17281 | 2016-09-11 21:34:30 | This is Tucker. He would like a hug. 13/10 someone hug him https://t.co/wdgY9oHPrT | 13 | 10 | Tucker | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | True | True | True | Chow | 0.316565 | |
| 452 | 774757898236878852 | 2035 | 9462 | 2016-09-10 23:54:11 | This is Finley. She's a Beneboop Cumbersplash. 12/10 I'd do unspeakable things for Finley https://t.co/dS8SCbNF9P | 12 | 10 | Finley | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | True | True | True | Toy_poodle | 0.719941 | |
| 453 | 774639387460112384 | 2013 | 7508 | 2016-09-10 16:03:16 | This is Sprinkles. He's trapped in light jail. 10/10 would post bail for him https://t.co/4s5Xlijogu | 10 | 10 | Sprinkles | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | True | True | True | Walker_hound | 0.627593 | |
| 454 | 774314403806253056 | 6478 | 24167 | 2016-09-09 18:31:54 | I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC BY HIS OWNER THIS IS SO WILD. 14/10 ULTIMATE LEGEND STATUS https://t.co/7oQ1wpfxIH | 14 | 10 | None | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | True | True | True | Eskimo_dog | 0.596045 | |
| 455 | 773922284943896577 | 1999 | 7110 | 2016-09-08 16:33:46 | This is Heinrich (pronounced "Pat"). He's a Botswanian Vanderfloof. Snazzy af bandana. 12/10 downright puptacular https://t.co/G56ikYAqFg | 12 | 10 | Heinrich | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | True | True | True | Pomeranian | 0.554331 | |
| 456 | 773704687002451968 | 1891 | 7317 | 2016-09-08 02:09:06 | This is Loki. He knows he's adorable. One ear always pupared. 12/10 would snug in depicted fashion forever https://t.co/OqNggd4Oio | 12 | 10 | Loki | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | True | True | True | Silky_terrier | 0.324251 | |
| 457 | 773670353721753600 | 1501 | 5935 | 2016-09-07 23:52:41 | This is Shakespeare. He appears to be maximum level pettable. Born with no eyes tho (tragic). 10/10 probably wise https://t.co/rA8WUVOLBr | 10 | 10 | Shakespeare | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | True | True | True | Old_english_sheepdog | 0.969311 | |
| 458 | 773547596996571136 | 7126 | 24553 | 2016-09-07 15:44:53 | This is Chelsea. She forgot how to dog. 11/10 get it together pupper https://t.co/nBJ5RE4yHb | 11 | 10 | Chelsea | pupper | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | True | True | True | Norwegian_elkhound | 0.372202 |
| 459 | 773191612633579521 | 4736 | 11117 | 2016-09-06 16:10:20 | This is Grey. He's the dogtor in charge of your checkpup today. 12/10 I'd never miss an appointment https://t.co/9HEVPJEioD | 12 | 10 | Grey | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | True | True | True | Blenheim_spaniel | 0.427766 | |
| 460 | 772826264096874500 | 2669 | 8842 | 2016-09-05 15:58:34 | Meet Roosevelt. He's preparing for takeoff. Make sure tray tables are in their full pupright & licked position\n11/10 https://t.co/7CQkn3gHOQ | 11 | 10 | Roosevelt | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | True | True | True | Basset | 0.915351 | |
| 461 | 772581559778025472 | 1968 | 7192 | 2016-09-04 23:46:12 | Guys this is getting so out of hand. We only rate dogs. This is a Galapagos Speed Panda. Pls only send dogs... 10/10 https://t.co/8lpAGaZRFn | 10 | 10 | NaN | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | True | True | True | Newfoundland | 0.574345 | |
| 462 | 772193107915964416 | 1612 | 6665 | 2016-09-03 22:02:38 | This is Willem. He's a Penn State pupper. Thinks the hood makes him more intimidating. It doesn't. 12/10 https://t.co/Dp0s7MRIHK | 12 | 10 | Willem | pupper | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | True | True | True | Pembroke | 0.367945 |
| 463 | 772152991789019136 | 1300 | 4181 | 2016-09-03 19:23:13 | Here's a couple rufferees making sure all the sports are played fairly today. Both 10/10 would bribe with extra pets https://t.co/H9yjI9eo3A | 10 | 10 | None | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | True | True | True | Golden_retriever | 0.275318 | |
| 464 | 772117678702071809 | 848 | 4165 | 2016-09-03 17:02:54 | Meet Jack. He's a Clemson pup. Appears to be rather h*ckin pettable. Almost makes me want to root for Clemson. 12/10 https://t.co/GHOfbTVQti | 12 | 10 | Jack | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | True | True | True | Labrador_retriever | 0.217821 | |
| 465 | 772114945936949249 | 546 | 3005 | 2016-09-03 16:52:02 | This is Finn. He's very nervous for the game. Has a lot of money riding on it.10/10 would attempt to comfort https://t.co/CbtNfecWiT | 10 | 10 | Finn | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | True | True | True | Chihuahua | 0.803293 | |
| 466 | 772102971039580160 | 1065 | 4448 | 2016-09-03 16:04:27 | This is Penny. She's an OU cheerleader. About to do a triple back handspring down the stairs. 11/10 hype af https://t.co/B2f3XkGU5c | 11 | 10 | Penny | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | True | True | True | Pembroke | 0.541780 | |
| 467 | 771770456517009408 | 3924 | 13356 | 2016-09-02 18:03:10 | This is Davey. He'll have your daughter home by 8. Just a stand up pup. 11/10 would introduce to mom https://t.co/E6bGWf9EOm | 11 | 10 | Davey | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | True | True | True | Papillon | 0.533180 | |
| 468 | 771500966810099713 | 3018 | 9167 | 2016-09-02 00:12:18 | This is Dakota. He's just saying hi. That's all. 12/10 someone wave back https://t.co/1tWe5zZoHv | 12 | 10 | Dakota | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | True | True | False | Labrador_retriever | 0.833952 | |
| 469 | 771380798096281600 | 5912 | 11746 | 2016-09-01 16:14:48 | Meet Fizz. She thinks love is a social construct consisting solely of ideals perpetuated by mass media 11/10 woke af https://t.co/sPB5JMnWBn | 11 | 10 | Fizz | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | True | True | True | Collie | 0.503728 | |
| 470 | 771102124360998913 | 1663 | 6898 | 2016-08-31 21:47:27 | This is Charlie. He works for @TODAYshow. Super sneaky tongue slip here. 12/10 would pet until someone made me stop https://t.co/K5Jo7QRCvA | 12 | 10 | Charlie | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | True | True | True | Labrador_retriever | 0.568789 | |
| 471 | 770787852854652928 | 1415 | 5498 | 2016-08-31 00:58:39 | This is Winston. His tongue has gone rogue. Doing him quite a frighten. 10/10 hang in there Winston https://t.co/d0QEbp78Yi | 10 | 10 | Winston | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.787812 | |
| 472 | 770772759874076672 | 1626 | 5749 | 2016-08-30 23:58:40 | This is Sebastian. He's super h*ckin fluffy. That's really all you need to know. 11/10 would snug intensely https://t.co/lqr0NdtwQo | 11 | 10 | Sebastian | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | True | True | True | Chow | 0.979515 | |
| 473 | 770293558247038976 | 1718 | 6923 | 2016-08-29 16:14:30 | This is Jackson. There's nothing abnormal about him. Just your average really good dog. 10/10 https://t.co/3fEPpj0KYw | 10 | 10 | Jackson | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | True | True | True | Italian_greyhound | 0.931668 | |
| 474 | 770069151037685760 | 2651 | 8385 | 2016-08-29 01:22:47 | Say hello to Carbon. This is his first time swimming. He's having a h*ckin blast. 10/10 we should all be this happy https://t.co/mADHGenzFS | 10 | 10 | Carbon | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | True | True | True | Boston_bull | 0.414965 | |
| 475 | 769940425801170949 | 11131 | 34948 | 2016-08-28 16:51:16 | This is Klein. These pics were taken a month apart. He knows he's a stud now. 12/10 total heartthrob https://t.co/guDkLrX8zV | 12 | 10 | Klein | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | True | True | True | Miniature_pinscher | 0.796313 | |
| 476 | 769695466921623552 | 1926 | 7101 | 2016-08-28 00:37:54 | This is Titan. He's trying to make friends. Offering up his favorite stick. 13/10 philanthropic af https://t.co/vhrkz0dK4v | 13 | 10 | Titan | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | True | False | True | Pug | 0.407117 | |
| 477 | 769212283578875904 | 1969 | 5980 | 2016-08-26 16:37:54 | This is DonDon. He's way up but doesn't feel blessed. Rather uncomfortable actually. 12/10 I'll save you DonDon https://t.co/OCYLz3fjVE | 12 | 10 | DonDon | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | True | True | True | Golden_retriever | 0.166538 | |
| 478 | 768970937022709760 | 7574 | 16017 | 2016-08-26 00:38:52 | This is Kirby. His bowl weighs more than him. 12/10 would assist https://t.co/UlB2mzw3Xs | 12 | 10 | Kirby | https://pbs.twimg.com/ext_tw_video_thumb/768967618174877700/pu/img/4wfsrs0ZnQ5pstXm.jpg | 1 | True | True | False | Pomeranian | 0.182358 | |
| 479 | 768855141948723200 | 1034 | 4660 | 2016-08-25 16:58:45 | This is Jesse. He really wants a belly rub. Will be as cute as possible to achieve that goal. 11/10 https://t.co/1BxxcdVNJ8 | 11 | 10 | Jesse | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | True | True | True | Chow | 0.720219 | |
| 480 | 768609597686943744 | 1382 | 4580 | 2016-08-25 00:43:02 | This is Lou. His sweater is too small and he already cut the tags off. Very very churlish. 10/10 would still pet https://t.co/dZPMLresEr | 10 | 10 | Lou | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | True | True | True | Basenji | 0.183283 | |
| 481 | 768596291618299904 | 1473 | 5592 | 2016-08-24 23:50:10 | Say hello to Oakley and Charlie. They're convinced that they each have their own stick. Nobody tell them. Both 12/10 https://t.co/J2AJdyxglH | 12 | 10 | Oakley | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | True | True | True | Great_pyrenees | 0.729745 | |
| 482 | 768473857036525572 | 3958 | 15110 | 2016-08-24 15:43:39 | Meet Chevy. He had a late breakfast and now has to choose between a late lunch or an early dinner. 11/10 very pupset https://t.co/goy9053wC7 | 11 | 10 | Chevy | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | True | True | True | Labrador_retriever | 0.739170 | |
| 483 | 767754930266464257 | 6221 | 17814 | 2016-08-22 16:06:54 | This is Philbert. His toilet broke and he doesn't know what to do. Trying not to panic. 11/10 furustrated af https://t.co/Nb68IsVb9O | 11 | 10 | Philbert | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | True | False | True | Vizsla | 0.307794 | |
| 484 | 767500508068192258 | 2688 | 8295 | 2016-08-21 23:15:55 | This is Louie. He's making quite a h*ckin mess. Doesn't seem to care. 12/10 jubilant af https://t.co/Z2g2YWPzX2 | 12 | 10 | Louie | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | True | True | True | Chow | 0.483228 | |
| 485 | 767122157629476866 | 3261 | 11227 | 2016-08-20 22:12:29 | This is Rupert. You betrayed him with bath time but he forgives you. Cuddly af 13/10 https://t.co/IEARC2sRzC | 13 | 10 | Rupert | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | True | True | True | Toy_poodle | 0.873841 | |
| 486 | 766793450729734144 | 1565 | 5650 | 2016-08-20 00:26:19 | This is Rufus. He just missed out on the 100m final at Rio. Already training hard for Tokyo. 10/10 never give pup https://t.co/exrRjjJqeO | 10 | 10 | Rufus | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | True | True | True | Beagle | 0.451697 | |
| 487 | 766693177336135680 | 918 | 4484 | 2016-08-19 17:47:52 | This is Brudge. He's a Doberdog. Going to be h*ckin massive one day. 11/10 would pat on head approvingly https://t.co/cTlHjEUNK8 | 11 | 10 | Brudge | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | True | True | True | Doberman | 0.948355 | |
| 488 | 766423258543644672 | 1825 | 6671 | 2016-08-18 23:55:18 | This is Shadoe. Her tongue flies out of her mouth at random. Can't have a serious conversation with her. 9/10 https://t.co/Tytt15VquG | 9 | 10 | Shadoe | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | True | True | True | Keeshond | 0.995823 | |
| 489 | 766313316352462849 | 2166 | 7493 | 2016-08-18 16:38:26 | This is Oscar. He has legendary eyebrows and he h*ckin knows it. Curly af too. 12/10 would hug passionately https://t.co/xuxZoObmF0 | 12 | 10 | Oscar | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | True | True | True | Toy_poodle | 0.966896 | |
| 490 | 766008592277377025 | 571 | 4149 | 2016-08-17 20:27:34 | This is Angel. She stole the @ShopWeRateDogs shirt from her owner. Fits pretty well actually. 11/10 would forgive https://t.co/jaivZ1dcUL | 11 | 10 | Angel | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | True | True | True | Welsh_springer_spaniel | 0.728153 | |
| 491 | 765719909049503744 | 2475 | 8021 | 2016-08-17 01:20:27 | This is Brat. He has a hard time being ferocious so his owner helps out. H*ckin scary af now. 12/10 would still pet https://t.co/soxdNqZDZ2 | 12 | 10 | Brat | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | True | True | True | Golden_retriever | 0.969518 | |
| 492 | 765669560888528897 | 1407 | 5760 | 2016-08-16 22:00:23 | This is Tove. She's a Balsamic Poinsetter. Surprisingly deadly. 12/10 snug with caution https://t.co/t6RvnVEdRR | 12 | 10 | Tove | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | True | True | True | Beagle | 0.993333 | |
| 493 | 765395769549590528 | 3127 | 20539 | 2016-08-16 03:52:26 | This is my dog. Her name is Zoey. She knows I've been rating other dogs. She's not happy. 13/10 no bias at all https://t.co/ep1NkYoiwB | 13 | 10 | NaN | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | True | True | True | Pembroke | 0.509491 | |
| 494 | 765371061932261376 | 2475 | 7842 | 2016-08-16 02:14:15 | This is Louie. He's had a long day. Did a lot of pupper things. Also appears to be rather heckin pettable. 11/10 https://t.co/w2qDmoTIZ5 | 11 | 10 | Louie | pupper | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | True | True | True | Golden_retriever | 0.829456 |
| 495 | 765222098633691136 | 3914 | 12902 | 2016-08-15 16:22:20 | This is Gromit. He's pupset because there's no need to beware of him. Just wants a pettin. 10/10 https://t.co/eSvz4EapHH | 10 | 10 | Gromit | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | True | True | True | Dalmatian | 0.556595 | |
| 496 | 764857477905154048 | 2029 | 7099 | 2016-08-14 16:13:27 | This is Aubie. He has paws for days. Nibbling tables is one of his priorities. Second only to being cuddly af. 12/10 https://t.co/cBIFBsCRz6 | 12 | 10 | Aubie | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.792059 | |
| 497 | 764259802650378240 | 1745 | 6718 | 2016-08-13 00:38:30 | This is Kota and her son Benedict. She doesn't know why you're staring. They are a normal family. Both 10/10 https://t.co/Q1v9BZylvZ | 10 | 10 | Kota | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | True | True | True | German_shepherd | 0.973677 | |
| 498 | 763837565564780549 | 4858 | 14041 | 2016-08-11 20:40:41 | This is Alfie. He's touching a butt. Couldn't be happier. 11/10 https://t.co/gx3xF5mZbo | 11 | 10 | Alfie | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | True | False | True | Malamute | 0.375098 | |
| 499 | 763183847194451968 | 1702 | 6004 | 2016-08-10 01:23:03 | This is Clark. He collects teddy bears. It's absolutely h*ckin horrifying. 8/10 please stop this Clark https://t.co/EDMcwt86fU | 8 | 10 | Clark | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | True | True | False | Miniature_poodle | 0.354674 | |
| 500 | 762699858130116608 | 4190 | 13518 | 2016-08-08 17:19:51 | This is Leela. She's a Fetty Woof. Lost eye while saving a baby from an avalanche. 11/10 true h*ckin hero https://t.co/2lBg3ZgivD | 11 | 10 | Leela | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | True | True | False | Kelpie | 0.519047 | |
| 501 | 762471784394268675 | 7612 | 12571 | 2016-08-08 02:13:34 | Meet Glenn. Being in public scares him. Frighteningly relatable. 12/10 keep hangin in there Glenn (Imgur - Wuhahha) https://t.co/pA4MDKwRci | 12 | 10 | Glenn | https://pbs.twimg.com/ext_tw_video_thumb/762471745303355393/pu/img/RKcEUz7-VDipoGKJ.jpg | 1 | True | True | True | Samoyed | 0.540276 | |
| 502 | 761976711479193600 | 2310 | 5992 | 2016-08-06 17:26:19 | This is Shelby. She finds stuff to put on her head for attention. It works really well. 12/10 talented af https://t.co/WTZ484EntP | 12 | 10 | Shelby | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | True | True | True | Labrador_retriever | 0.475552 | |
| 503 | 761599872357261312 | 1336 | 4578 | 2016-08-05 16:28:54 | This is Sephie. According to this picture, she can read. Fantastic at following directions. 11/10 such a good girl https://t.co/7HY9RvCudo | 11 | 10 | Sephie | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | True | True | True | Gordon_setter | 0.240427 | |
| 504 | 761334018830917632 | 1669 | 5792 | 2016-08-04 22:52:29 | This is Bruce. I really want to hear the joke he was told. 10/10 for chuckle pup https://t.co/ErPLjjJOKc | 10 | 10 | Bruce | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | True | True | True | Norwegian_elkhound | 0.822936 | |
| 505 | 761292947749015552 | 1265 | 4957 | 2016-08-04 20:09:17 | Meet Bonaparte. He's pupset because it's cloudy at the beach. Can't take any pics for his Instagram. 11/10 https://t.co/0THNOfv2Jo | 11 | 10 | Bonaparte | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | True | True | True | Standard_poodle | 0.660893 | |
| 506 | 761004547850530816 | 3952 | 12482 | 2016-08-04 01:03:17 | This is Bo and Ty. Bo eats paper and Ty felt left out. 11/10 for both https://t.co/1acHQS8rvK | 11 | 10 | Bo | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | True | True | True | Golden_retriever | 0.735163 | |
| 507 | 760893934457552897 | 1104 | 4228 | 2016-08-03 17:43:45 | This is Wishes. He has the day off. Daily struggles of being a doggo have finally caught up with him. 11/10 https://t.co/H9YgrUkYwa | 11 | 10 | Wishes | doggo | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | True | True | True | Blenheim_spaniel | 0.113992 |
| 508 | 760656994973933572 | 2210 | 7343 | 2016-08-03 02:02:14 | This is Rose. Her face is stuck like that. 11/10 would pet so heckin well https://t.co/tl3gNYdoq2 | 11 | 10 | Rose | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | True | True | True | Golden_retriever | 0.760546 | |
| 509 | 760539183865880579 | 4168 | 8399 | 2016-08-02 18:14:06 | This is Atlas. Swinging is his passion. 12/10 would push all day https://t.co/9k8LLjJ0uJ | 12 | 10 | Atlas | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | True | True | True | Samoyed | 0.988013 | |
| 510 | 760290219849637889 | 13140 | 29618 | 2016-08-02 01:44:48 | This is Rocco. He's doing his best. 13/10 someone help him (IG: rocco_roni) https://t.co/qFsl1nnXMv | 13 | 10 | Rocco | https://pbs.twimg.com/ext_tw_video_thumb/760289324994879489/pu/img/3ItvBEoo4aebPfvr.jpg | 1 | True | True | True | Old_english_sheepdog | 0.302200 | |
| 511 | 759923798737051648 | 6521 | 16284 | 2016-08-01 01:28:46 | We only rate dogs... this is a Taiwanese Guide Walrus. Im getting real heckin tired of this. Please send dogs. 10/10 https://t.co/49hkNAsubi | 10 | 10 | None | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | True | False | True | Labrador_retriever | 0.324579 | |
| 512 | 759846353224826880 | 2265 | 7433 | 2016-07-31 20:21:02 | This is Kirby. He's a Beneblip Cumberpat. Pretty heckin rare. 11/10 would put my face against his face https://t.co/fd6uucghY6 | 11 | 10 | Kirby | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | True | True | True | Sussex_spaniel | 0.355395 | |
| 513 | 759793422261743616 | 2173 | 6620 | 2016-07-31 16:50:42 | Meet Maggie & Lila. Maggie is the doggo, Lila is the pupper. They are sisters. Both 12/10 would pet at the same time https://t.co/MYwR4DQKll | 12 | 10 | Maggie | doggo, pupper | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | True | True | True | Golden_retriever | 0.985876 |
| 514 | 759557299618865152 | 1341 | 5202 | 2016-07-31 01:12:26 | This is Emma. She can't believe her last guess didn't hit. Convinced ur stacking them on top of each other. 10/10 https://t.co/JRV1dhBYwu | 10 | 10 | Emma | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | True | True | True | Golden_retriever | 0.763333 | |
| 515 | 759447681597108224 | 2827 | 9418 | 2016-07-30 17:56:51 | This is Oakley. He has no idea what happened here. Even offered to help clean it up. 11/10 such a heckin good boy https://t.co/vT3JM8b989 | 11 | 10 | Oakley | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | True | True | False | Kuvasz | 0.223148 | |
| 516 | 759197388317847553 | 2221 | 6725 | 2016-07-30 01:22:17 | This is Luna. She's just heckin precious af I have nothing else to say. 12/10 https://t.co/gQH2mmKIJW | 12 | 10 | Luna | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | True | True | False | Kuvasz | 0.511341 | |
| 517 | 759099523532779520 | 4813 | 16101 | 2016-07-29 18:53:24 | Meet Toby. He has a drinking problem. Inflatable marijuana plant in the back is also not a good look. 7/10 cmon Toby https://t.co/Cim4DSj6Oi | 7 | 10 | Toby | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | True | True | True | Shetland_sheepdog | 0.129034 | |
| 518 | 759047813560868866 | 2302 | 7227 | 2016-07-29 15:27:55 | This is Spencer. He's part of the Queen's Guard. Takes his job very seriously. 11/10 https://t.co/8W5iSOgXfx | 11 | 10 | Spencer | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | True | False | True | Labrador_retriever | 0.778546 | |
| 519 | 758828659922702336 | 4376 | 12376 | 2016-07-29 00:57:05 | This doggo is just waiting for someone to be proud of her and her accomplishment. 13/10 legendary af https://t.co/9T2h14yn4Q | 13 | 10 | None | doggo | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.480048 |
| 520 | 758740312047005698 | 1824 | 6339 | 2016-07-28 19:06:01 | Meet Boston. He's worried because his tongue won't fit all the way in his mouth. 12/10 it'll be ok deep breaths pup https://t.co/rfWQ4T9iQj | 12 | 10 | Boston | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.848514 | |
| 521 | 758474966123810816 | 1132 | 4227 | 2016-07-28 01:31:38 | This is Brandonald. He accidentally opened the front facing camera. Playing it off rather heckin well. 11/10 https://t.co/uPUAotqQtM | 11 | 10 | Brandonald | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | True | True | True | Pembroke | 0.546145 | |
| 522 | 758467244762497024 | 2539 | 5316 | 2016-07-28 01:00:57 | Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE | 11 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/758467147756691456/pu/img/YTNzjRFDSPNXukmM.jpg | 1 | True | True | True | Labrador_retriever | 0.436377 | |
| 523 | 758355060040593408 | 1245 | 3797 | 2016-07-27 17:35:10 | This is Corey. He's a Portobello Corgicool. Trying to convince you that he's not a hipster. 11/10 yea right Corey https://t.co/NzWUrFZydr | 11 | 10 | Corey | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | True | True | False | Pembroke | 0.987643 | |
| 524 | 757611664640446465 | 1272 | 5026 | 2016-07-25 16:21:11 | This is Cooper. He tries to come across as feisty but it never works for very long. 12/10 https://t.co/AVks8DjHwB | 12 | 10 | Cooper | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | True | True | True | Bluetick | 0.829259 | |
| 525 | 757393109802180609 | 2009 | 6462 | 2016-07-25 01:52:43 | Here's a doggo completely oblivious to the double rainbow behind him. 10/10 someone tell him https://t.co/OfvRoD6ndV | 10 | 10 | None | doggo | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | True | True | True | Labrador_retriever | 0.787125 |
| 526 | 757354760399941633 | 1637 | 4995 | 2016-07-24 23:20:20 | This is Devón (pronounced "Eric"). He forgot how to eat the apple halfway through. Wtf Devón get it together. 8/10 https://t.co/7waRPODGyO | 8 | 10 | Devón | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | True | True | False | Italian_greyhound | 0.914667 | |
| 527 | 756939218950160384 | 2295 | 7342 | 2016-07-23 19:49:07 | This is Jax. He is a majestic mountain pupper. Thinks flat ground is for the weak. 12/10 would totally hike with https://t.co/KGdeHuFJnH | 12 | 10 | Jax | pupper | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | True | True | True | Golden_retriever | 0.790371 |
| 528 | 756651752796094464 | 1511 | 5612 | 2016-07-23 00:46:50 | This is Gert. He just wants you to be happy. 11/10 would pat on the head so damn well https://t.co/l0Iwj6rLFW | 11 | 10 | Gert | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | True | True | True | Pembroke | 0.294808 | |
| 529 | 756303284449767430 | 1231 | 4359 | 2016-07-22 01:42:09 | Pwease accept dis rose on behalf of dog. 11/10 https://t.co/az5BVcIV5I | 11 | 10 | None | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | True | True | True | Golden_retriever | 0.981652 | |
| 530 | 756275833623502848 | 1738 | 7114 | 2016-07-21 23:53:04 | When ur older siblings get to play in the deep end but dad says ur not old enough. Maybe one day puppo. All 10/10 https://t.co/JrDAzMhwG9 | 10 | 10 | None | puppo | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | True | True | True | Airedale | 0.602957 |
| 531 | 755955933503782912 | 3285 | 8092 | 2016-07-21 02:41:54 | Here's a frustrated pupper attempting to escape a pool of Frosted Flakes. 12/10 https://t.co/GAYViEweWr | 12 | 10 | None | pupper | https://pbs.twimg.com/ext_tw_video_thumb/755955658164465664/pu/img/YcjfthN7C3z61GUj.jpg | 1 | True | True | True | Pekinese | 0.596882 |
| 532 | 755110668769038337 | 12621 | 23446 | 2016-07-18 18:43:07 | This is Watson. He trust falls on command. 13/10 it's elementary... (IG: wat.ki) https://t.co/goX3jewkYN | 13 | 10 | Watson | https://pbs.twimg.com/ext_tw_video_thumb/755110610942169088/pu/img/3-INz45pSRMkzOEF.jpg | 1 | True | True | True | Labrador_retriever | 0.708974 | |
| 533 | 754856583969079297 | 2870 | 7616 | 2016-07-18 01:53:28 | This is Winnie. She's not a fan of the fast moving air. 11/10 objects in mirror may be more fluffy than they appear https://t.co/FyHrk20gUR | 11 | 10 | Winnie | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | True | True | True | Golden_retriever | 0.872385 | |
| 534 | 754747087846248448 | 591 | 2854 | 2016-07-17 18:38:22 | This is Keith. He's pursuing a more 2D lifestyle. Idiosyncratic af. 12/10 follow your dreams Keith https://t.co/G9ufksBMlU | 12 | 10 | Keith | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | False | False | False | Rotisserie | 0.471493 | |
| 535 | 754449512966619136 | 846 | 4147 | 2016-07-16 22:55:55 | This is Dex. He can see into your past and future. Mesmerizing af 11/10 https://t.co/0dYI0Cpdge | 11 | 10 | Dex | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | True | True | True | Beagle | 0.858513 | |
| 536 | 754120377874386944 | 2670 | 8655 | 2016-07-16 01:08:03 | When you hear your owner say they need to hatch another egg, but you've already been on 17 walks today. 10/10 https://t.co/lFEoGqZ4oA | 10 | 10 | None | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | True | True | True | Chow | 0.168909 | |
| 537 | 754011816964026368 | 4079 | 9726 | 2016-07-15 17:56:40 | This is Charlie. He pouts until he gets to go on the swing. 12/10 manipulative af https://t.co/ilwQqWFKCh | 12 | 10 | Charlie | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | True | True | True | French_bulldog | 0.600985 | |
| 538 | 753655901052166144 | 2492 | 6458 | 2016-07-14 18:22:23 | "The dogtor is in hahahaha no but seriously I'm very qualified and that tumor is definitely malignant" 10/10 https://t.co/ULqThwWmLg | 10 | 10 | None | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | True | True | True | Miniature_pinscher | 0.456092 | |
| 539 | 753398408988139520 | 2186 | 6384 | 2016-07-14 01:19:12 | This is Scout. Her batteries are low. 12/10 precious af https://t.co/ov05LIoQJX | 12 | 10 | Scout | https://pbs.twimg.com/ext_tw_video_thumb/753398183879991296/pu/img/bqFy5Zc_PEk6Mx-B.jpg | 1 | True | True | True | Whippet | 0.163794 | |
| 540 | 753375668877008896 | 2655 | 8411 | 2016-07-13 23:48:51 | This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc | 8 | 10 | Hank | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | True | False | False | Bluetick | 0.360071 | |
| 541 | 753294487569522689 | 1191 | 3758 | 2016-07-13 18:26:16 | This is Ace. He's a window washer. One of the best around. 11/10 helpful af https://t.co/sTuRoYfzPv | 11 | 10 | Ace | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | True | False | True | Chow | 0.194773 | |
| 542 | 753026973505581056 | 1109 | 4283 | 2016-07-13 00:43:15 | Say hello to Tayzie. She's a Barbadian Bugaboop. Seems quite social. A rare quality for a Bugaboop. 10/10 petable af https://t.co/6qF5YZx6OV | 10 | 10 | Tayzie | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | True | True | True | Pembroke | 0.868511 | |
| 543 | 752917284578922496 | 1790 | 7592 | 2016-07-12 17:27:23 | This is Grizzie. She's a semi-submerged Bahraini Buttersplotch. Appears alert af. Snazzy tongue. 11/10 would def pet https://t.co/WZ4zzkXXnW | 11 | 10 | Grizzie | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | True | True | True | German_shepherd | 0.609283 | |
| 544 | 752682090207055872 | 1846 | 6642 | 2016-07-12 01:52:49 | Nothing better than a doggo and a sunset. 10/10 majestic af https://t.co/xVSodF19PS | 10 | 10 | None | doggo | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | True | True | True | German_shepherd | 0.299966 |
| 545 | 752334515931054080 | 1263 | 4238 | 2016-07-11 02:51:40 | Here's a doggo trying to catch some fish. 8/10 futile af (vid by @KellyBauerx) https://t.co/jwd0j6oWLE | 8 | 10 | None | doggo | https://pbs.twimg.com/ext_tw_video_thumb/752334354492362752/pu/img/uWISPc0YRmhUi9Ju.jpg | 1 | True | True | True | Bedlington_terrier | 0.399163 |
| 546 | 752173152931807232 | 2106 | 6569 | 2016-07-10 16:10:29 | This is Brody. He's a lifeguard. Always prepared for rescue. 12/10 would fake drown just to get saved by him https://t.co/olDmwNjOy1 | 12 | 10 | Brody | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | True | True | True | Labrador_retriever | 0.527659 | |
| 547 | 751937170840121344 | 1530 | 5770 | 2016-07-10 00:32:46 | This is Ruby. Her ice cube is melting. She doesn't know what to do about it. 11/10 https://t.co/Vfc3eAFl2q | 11 | 10 | Ruby | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | True | False | True | Lakeland_terrier | 0.424168 | |
| 548 | 751830394383790080 | 2227 | 6428 | 2016-07-09 17:28:29 | This is Tucker. He's very camera shy. 12/10 would give stellar belly rubs to https://t.co/BJRsxuLF1w | 12 | 10 | Tucker | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | True | True | False | Chow | 0.703569 | |
| 549 | 751598357617971201 | 3440 | 8699 | 2016-07-09 02:06:27 | This is Toby. A cat got his tongue. 13/10 adorable af https://t.co/fHQrBKYSLC | 13 | 10 | Toby | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | True | True | True | Toy_poodle | 0.757756 | |
| 550 | 751583847268179968 | 1265 | 4849 | 2016-07-09 01:08:47 | Please stop sending it pictures that don't even have a doggo or pupper in them. Churlish af. 5/10 neat couch tho https://t.co/u2c9c7qSg8 | 5 | 10 | None | doggo, pupper | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | True | False | False | Dalmatian | 0.868304 |
| 551 | 751538714308972544 | 1445 | 5547 | 2016-07-08 22:09:27 | This is Max. She has one ear that's always slightly more alert than the other. 10/10 wonky af https://t.co/5eJg69G8vY | 10 | 10 | Max | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | True | True | False | Labrador_retriever | 0.516257 | |
| 552 | 751456908746354688 | 1127 | 3516 | 2016-07-08 16:44:23 | Here's a pupper that's very hungry but too lazy to get up and eat. 12/10 (vid by @RealDavidCortes) https://t.co/lsVAMBq6ex | 12 | 10 | None | pupper | https://pbs.twimg.com/ext_tw_video_thumb/751456786360725504/pu/img/hWqfIQ29A0cBv6f_.jpg | 1 | True | True | True | Golden_retriever | 0.714409 |
| 553 | 751251247299190784 | 6695 | 13791 | 2016-07-08 03:07:09 | This is Gilbert. He's being chased by a battalion of miniature floof cows. 10/10 we all believe in you Gilbert https://t.co/wayKZkDRTG | 10 | 10 | Gilbert | https://pbs.twimg.com/ext_tw_video_thumb/751250895690731520/pu/img/eziHbU1KbgZg-ijN.jpg | 1 | True | True | True | Walker_hound | 0.178852 | |
| 554 | 751205363882532864 | 2086 | 6948 | 2016-07-08 00:04:50 | "This photographer took pics of her best friend before and after she told them they were beautiful" 12/10 https://t.co/510gJW9fsy | 12 | 10 | None | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | True | True | True | Labrador_retriever | 0.947164 | |
| 555 | 751132876104687617 | 1480 | 5610 | 2016-07-07 19:16:47 | This is Cooper. He's just so damn happy. 10/10 what's your secret puppo? https://t.co/yToDwVXEpA | 10 | 10 | Cooper | puppo | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | True | True | True | Labrador_retriever | 0.929390 |
| 556 | 750719632563142656 | 5747 | 14621 | 2016-07-06 15:54:42 | This is Meyer. He has to hold somebody's hand during car rides. He's also wearing a seatbelt. 12/10 responsible af https://t.co/WS6BoApYyL | 12 | 10 | Meyer | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | True | True | True | Pembroke | 0.972587 | |
| 557 | 750429297815552001 | 4947 | 14569 | 2016-07-05 20:41:01 | This is Arnie. He's a Nova Scotian Fridge Floof. Rare af. 12/10 https://t.co/lprdOylVpS | 12 | 10 | Arnie | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | True | True | False | Golden_retriever | 0.964929 | |
| 558 | 750383411068534784 | 1309 | 5005 | 2016-07-05 17:38:41 | This is Zoe. She was trying to stealthily take a picture of you but you just noticed. 9/10 not so sneaky pupper https://t.co/FfH3o88Vta | 9 | 10 | Zoe | pupper | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | True | True | True | Border_collie | 0.672791 |
| 559 | 750147208377409536 | 1095 | 3409 | 2016-07-05 02:00:06 | And finally, happy 4th of July from the squad 🇺🇸 13/10 for all https://t.co/Mr8Lr3iOUe | 13 | 10 | None | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | True | True | True | Pug | 0.977765 | |
| 560 | 750132105863102464 | 1440 | 3990 | 2016-07-05 01:00:05 | This is Stewie. He will roundhouse kick anyone who questions his independence. 11/10 free af https://t.co/dDx2gKefYo | 11 | 10 | Stewie | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | True | True | False | Toy_poodle | 0.478018 | |
| 561 | 750117059602808832 | 1466 | 4740 | 2016-07-05 00:00:18 | This is Calvin. He just loves America so much. 10/10 would roll around in flag with https://t.co/RXdzWaCQHm | 10 | 10 | Calvin | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | True | True | True | Shih-tzu | 0.814405 | |
| 562 | 750101899009982464 | 959 | 3344 | 2016-07-04 23:00:03 | Meet Lilah. She agreed on one quick pic. Now she'd like to go mentally prepare for the onslaught of fireworks. 11/10 https://t.co/enCpXzZHkD | 11 | 10 | Lilah | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | True | False | True | Golden_retriever | 0.316704 | |
| 563 | 750086836815486976 | 613 | 2383 | 2016-07-04 22:00:12 | This is Spanky. He was a member of the 2002 USA Winter Olympic speed skating team. Accomplished af. 12/10 https://t.co/7tlZPrePXd | 12 | 10 | Spanky | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | True | False | True | Pug | 0.978277 | |
| 564 | 750056684286914561 | 1011 | 3444 | 2016-07-04 20:00:23 | This is Jameson. He had a few too many in the name of freedom. I can't not respect that. 11/10 'Merica https://t.co/8zQvXM6pG5 | 11 | 10 | Jameson | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | True | True | True | Saluki | 0.484428 | |
| 565 | 750041628174217216 | 703 | 3502 | 2016-07-04 19:00:33 | This is Beau. He's trying to keep his daddy from packing to leave for Annual Training. 13/10 and now I'm crying https://t.co/7JeDfQvzzI | 13 | 10 | Beau | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | True | True | True | Labrador_retriever | 0.252031 | |
| 566 | 750026558547456000 | 888 | 2986 | 2016-07-04 18:00:41 | Meet Jax & Jil. Jil is yelling the pledge of allegiance. If u cant take the freedom get out the kitchen Jax. 10/10s https://t.co/jrg29NDNhI | 10 | 10 | Jax | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | True | False | True | Standard_poodle | 0.258732 | |
| 567 | 749996283729883136 | 919 | 3331 | 2016-07-04 16:00:22 | This is Bo. He emanates happiness. 12/10 I could cut the freedom with a knife https://t.co/c7LNFt39eR | 12 | 10 | Bo | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | True | True | True | Old_english_sheepdog | 0.515319 | |
| 568 | 749774190421639168 | 1493 | 5114 | 2016-07-04 01:17:51 | This is Lucy. She's a Benebop Cumberplop. 12/10 would hold against my face https://t.co/4yXa801fgl | 12 | 10 | Lucy | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | True | True | True | Pekinese | 0.879012 | |
| 569 | 749417653287129088 | 1904 | 6721 | 2016-07-03 01:41:06 | This is Finn. He's the most unphotogenic pupper of all time. 11/10 https://t.co/qvA2rCUl6v | 11 | 10 | Finn | pupper | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | True | True | True | Papillon | 0.772894 |
| 570 | 749403093750648834 | 622 | 2892 | 2016-07-03 00:43:15 | Duuun dun... duuun dun... dunn dun. dunn dun. dun dun dun dun dun dun dun dun dun dun dun dun dun dun dun. 10/10 https://t.co/9qdJ2Q1Cwx | 10 | 10 | None | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.694541 | |
| 571 | 749395845976588288 | 3951 | 9488 | 2016-07-03 00:14:27 | This is George. He just remembered that bees are dying globally at an alarming rate. Scary stuff George. 10/10 https://t.co/lznl6QGkYc | 10 | 10 | George | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | True | True | True | Pomeranian | 0.973715 | |
| 572 | 749317047558017024 | 2509 | 6076 | 2016-07-02 19:01:20 | This is Blu. He's a wild bush Floofer. I wish anything made me as happy as bushes make Blu. 12/10 would frolic with https://t.co/HHUAnBb6QB | 12 | 10 | Blu | floofer | https://pbs.twimg.com/ext_tw_video_thumb/749316899712950272/pu/img/nvZI9mkoAxt89sul.jpg | 1 | True | True | False | Wire-haired_fox_terrier | 0.155144 |
| 573 | 749064354620928000 | 1714 | 5277 | 2016-07-02 02:17:13 | Meet Winston. He's pupset because I forgot to mention that it's Canada Day today. 11/10 please forgive me Winston https://t.co/xEY8dbJxnF | 11 | 10 | Winston | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | True | True | True | Pug | 0.985222 | |
| 574 | 748977405889503236 | 3759 | 11235 | 2016-07-01 20:31:43 | What jokester sent in a pic without a dog in it? This is not @rock_rates. This is @dog_rates. Thank you ...10/10 https://t.co/nDPaYHrtNX | 10 | 10 | NaN | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | True | True | True | German_short-haired_pointer | 0.742216 | |
| 575 | 748932637671223296 | 2564 | 6461 | 2016-07-01 17:33:49 | Say hello to Divine Doggo. Must be magical af. 13/10 would be an honor to pet https://t.co/BbcABzohKb | 13 | 10 | Divine | doggo | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | True | True | True | Borzoi | 0.742912 |
| 576 | 748699167502000129 | 1814 | 5213 | 2016-07-01 02:06:06 | Meet Tripp. He's being eaten by a sherk and doesn't even care. Unfazed af. 11/10 keep doin you Tripp https://t.co/gGxjthmG1c | 11 | 10 | Tripp | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | True | True | True | Pembroke | 0.849029 | |
| 577 | 748568946752774144 | 776 | 2411 | 2016-06-30 17:28:39 | This is Cora. She rings a bell for treats. 12/10 precious af (vid by @skyehellenkamp) https://t.co/uUncaAGH18 | 12 | 10 | Cora | https://pbs.twimg.com/ext_tw_video_thumb/748568890477789184/pu/img/1MzP7FuodJdHw8zA.jpg | 1 | True | True | True | Tibetan_terrier | 0.328161 | |
| 578 | 748346686624440324 | 1413 | 5735 | 2016-06-30 02:45:28 | "So... we meat again" (I'm so sorry for that pun I couldn't resist pls don't unfollow) 10/10 https://t.co/XFBrrqapZa | 10 | 10 | None | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | True | True | True | Borzoi | 0.596455 | |
| 579 | 748324050481647620 | 867 | 4078 | 2016-06-30 01:15:31 | This is Duke. He permanently looks like he just tripped over something. 11/10 https://t.co/1sNtG7GgiO | 11 | 10 | Duke | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | True | True | True | Shetland_sheepdog | 0.880499 | |
| 580 | 747963614829678593 | 2444 | 6397 | 2016-06-29 01:23:16 | PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this pupper in your thoughts https://t.co/ZPfeRtOX0Q | 10 | 10 | None | pupper | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | True | True | False | Kelpie | 0.307672 |
| 581 | 747933425676525569 | 2894 | 7310 | 2016-06-28 23:23:19 | Pls don't send more sherks. I don't care how seemingly floofy they are. It does me so much frighten. Thank u. 11/10 https://t.co/oQqlOsla4R | 11 | 10 | None | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | True | True | True | Samoyed | 0.998201 | |
| 582 | 747885874273214464 | 1116 | 3243 | 2016-06-28 20:14:22 | This is a mighty rare blue-tailed hammer sherk. Human almost lost a limb trying to take these. Be careful guys. 8/10 https://t.co/TGenMeXreW | 8 | 10 | NaN | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | True | True | True | Kuvasz | 0.408450 | |
| 583 | 747844099428986880 | 851 | 3084 | 2016-06-28 17:28:22 | This is Huxley. He's pumped for #BarkWeek. Even has a hat. Ears are quite magical. 11/10 would remove hat to pat https://t.co/V7h5NMYbYz | 11 | 10 | Huxley | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | True | True | True | Pembroke | 0.360428 | |
| 584 | 747816857231626240 | 1316 | 5346 | 2016-06-28 15:40:07 | Viewer discretion is advised. This is a terrible attack in progress. Not even in water (tragic af). 4/10 bad sherk https://t.co/L3U0j14N5R | 4 | 10 | NaN | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | True | True | True | Pembroke | 0.768923 | |
| 585 | 747600769478692864 | 619 | 2545 | 2016-06-28 01:21:27 | This is Bookstore and Seaweed. Bookstore is tired and Seaweed is an asshole. 10/10 and 7/10 respectively https://t.co/eUGjGjjFVJ | 10 | 10 | Bookstore | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.804363 | |
| 586 | 747594051852075008 | 1205 | 4065 | 2016-06-28 00:54:46 | Again w the sharks guys. This week is about dogs ACTING or DRESSING like sharks. NOT actual sharks. Thank u ...11/10 https://t.co/Ie2mWXWjpr | 11 | 10 | None | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | True | False | True | Basenji | 0.389136 | |
| 587 | 747512671126323200 | 1803 | 6110 | 2016-06-27 19:31:23 | Guys pls stop sending actual sharks. It's too dangerous for me and the people taking the photos. Thank you ...10/10 https://t.co/12lICZN2SP | 10 | 10 | None | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | True | True | True | Cardigan | 0.111493 | |
| 588 | 747219827526344708 | 1791 | 5792 | 2016-06-27 00:07:44 | This is Atticus. He's remaining calm but his costume looks terrified. 11/10 https://t.co/uT7QeZI34U | 11 | 10 | Atticus | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | True | False | True | Shetland_sheepdog | 0.548018 | |
| 589 | 747103485104099331 | 4548 | 10534 | 2016-06-26 16:25:26 | Guys... I said DOGS with "shark qualities" or "costumes." Not actual sharks. This did me a real frighten ...11/10 https://t.co/DX1JUHJVN7 | 11 | 10 | None | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | True | True | False | Labrador_retriever | 0.991954 | |
| 590 | 746872823977771008 | 2429 | 6593 | 2016-06-26 01:08:52 | This is a carrot. We only rate dogs. Please only send in dogs. You all really should know this by now ...11/10 https://t.co/9e48aPrBm2 | 11 | 10 | NaN | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | True | True | True | Pembroke | 0.540201 | |
| 591 | 746818907684614144 | 1944 | 5807 | 2016-06-25 21:34:37 | Guys... Dog Jesus 2.0\n13/10 buoyant af https://t.co/CuNA7OwfKQ | 13 | 10 | None | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | False | False | True | Dingo | 0.175518 | |
| 592 | 746790600704425984 | 1806 | 5345 | 2016-06-25 19:42:08 | When you just can't resist... 10/10 topnotch tongue https://t.co/jeWEGUgbXf | 10 | 10 | None | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | True | False | True | Boston_bull | 0.936183 | |
| 593 | 746726898085036033 | 2037 | 6648 | 2016-06-25 15:29:00 | Meet Abby. She's incredibly distracting. Just wants to help steer. Hazardous af. Still 12/10 would pet while driving https://t.co/gLbLiZtwsp | 12 | 10 | Abby | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | True | True | False | Golden_retriever | 0.256505 | |
| 594 | 746507379341139972 | 1226 | 5094 | 2016-06-25 00:56:43 | This is Shiloh. She did not pass the soft mouth egg test. 10/10 would absolutely still pet https://t.co/PlR6hjqvr5 | 10 | 10 | Shiloh | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | True | True | True | Toy_poodle | 0.508292 | |
| 595 | 746369468511756288 | 1854 | 6637 | 2016-06-24 15:48:42 | This is an Iraqi Speed Kangaroo. It is not a dog. Please only send in dogs. I'm very angry with all of you ...9/10 https://t.co/5qpBTTpgUt | 9 | 10 | NaN | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | True | True | False | German_shepherd | 0.622957 | |
| 596 | 746131877086527488 | 2511 | 7565 | 2016-06-24 00:04:36 | This is Gustav. He has claimed that plant. It is his now. 10/10 would not try to take his plant away https://t.co/uRI7HBgGJX | 10 | 10 | Gustav | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | True | True | True | Chow | 0.575637 | |
| 597 | 746056683365994496 | 931 | 3904 | 2016-06-23 19:05:49 | This is Arlen and Thumpelina. They are best pals. Cuddly af. 11/10 for both puppers https://t.co/VJgbgIzIHx | 11 | 10 | Arlen | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | True | True | True | Shetland_sheepdog | 0.433320 | |
| 598 | 745789745784041472 | 1207 | 4437 | 2016-06-23 01:25:06 | This is Gus. He didn't win the Powerball. Quite perturbed about it. Still 10/10 would comfort in time of need https://t.co/3wc246LOtu | 10 | 10 | Gus | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | True | True | True | Pekinese | 0.984267 | |
| 599 | 745422732645535745 | 2768 | 9412 | 2016-06-22 01:06:43 | We only rate dogs. Pls stop sending in non-canines like this Jamaican Flop Seal. This is very very frustrating. 9/10 https://t.co/nc53zEN0hZ | 9 | 10 | NaN | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | True | True | False | Labrador_retriever | 0.663800 | |
| 600 | 745057283344719872 | 2585 | 7945 | 2016-06-21 00:54:33 | This is Oliver. He's downright gorgeous as hell. Should be on the cover of Dogue. 12/10 would introduce to mom https://t.co/BkgU3rrsXA | 12 | 10 | Oliver | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | True | True | True | Shetland_sheepdog | 0.963985 | |
| 601 | 744995568523612160 | 716 | 3277 | 2016-06-20 20:49:19 | This is Abby. She got her face stuck in a glass. Churlish af. 9/10 rookie move puppo https://t.co/2FPb45NXrK | 9 | 10 | Abby | puppo | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | True | True | True | Old_english_sheepdog | 0.427481 |
| 602 | 744971049620602880 | 3042 | 8652 | 2016-06-20 19:11:53 | Say hello to Indie and Jupiter. They're having a stellar day out on the boat. Both 12/10 adorbz af https://t.co/KgSEkrPA3r | 12 | 10 | Indie | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | True | True | True | Toy_poodle | 0.497755 | |
| 603 | 744709971296780288 | 1771 | 6150 | 2016-06-20 01:54:27 | This is Harvey. He's stealthy af. 10/10 would do my best to pet https://t.co/zAzaRT6NnT | 10 | 10 | Harvey | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | True | True | True | Shetland_sheepdog | 0.234431 | |
| 604 | 744334592493166593 | 2412 | 7443 | 2016-06-19 01:02:50 | This is Blanket. She has overthrown her human. Demands walks like this every hour on the hour. 11/10 so damn fluffy https://t.co/hrJugNHs2Z | 11 | 10 | Blanket | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | True | True | False | Samoyed | 0.960543 | |
| 605 | 744234799360020481 | 79515 | 131075 | 2016-06-18 18:26:18 | Here's a doggo realizing you can stand in a pool. 13/10 enlightened af (vid by Tina Conrad) https://t.co/7wE9LTEXC4 | 13 | 10 | None | doggo | https://pbs.twimg.com/ext_tw_video_thumb/744234667679821824/pu/img/1GaWmtJtdqzZV7jy.jpg | 1 | True | False | True | Labrador_retriever | 0.825333 |
| 606 | 743980027717509120 | 1231 | 4551 | 2016-06-18 01:33:55 | This is Geno. He's a Wrinkled Baklavian Velveeta. Looks sad but that's just the extra skin. 11/10 would smoosh face https://t.co/Kxda28JmQ2 | 11 | 10 | Geno | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | True | True | True | Bull_mastiff | 0.975730 | |
| 607 | 743895849529389061 | 1087 | 3999 | 2016-06-17 19:59:26 | When you're given AUX cord privileges from the back seat and accidentally start blasting an audiobook... both 10/10 https://t.co/gCCrY8P0K9 | 10 | 10 | None | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | True | True | True | Dalmatian | 0.562315 | |
| 608 | 743609206067040256 | 1560 | 4917 | 2016-06-17 01:00:24 | Meet Stark. He just had his first ice cream cone. Got some on his nose. Requests your assistance. 10/10 would assist https://t.co/YwfN1lbpKA | 10 | 10 | Stark | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | True | True | True | Weimaraner | 0.982794 | |
| 609 | 743253157753532416 | 1366 | 4624 | 2016-06-16 01:25:36 | This is Kilo. He cannot reach the snackum. Nifty tongue, but not nifty enough. 10/10 maybe one day puppo https://t.co/gSmp31Zrsx | 10 | 10 | Kilo | puppo | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | True | True | True | Malamute | 0.442612 |
| 610 | 743222593470234624 | 2164 | 6792 | 2016-06-15 23:24:09 | This is a very rare Great Alaskan Bush Pupper. Hard to stumble upon without spooking. 12/10 would pet passionately https://t.co/xOBKCdpzaa | 12 | 10 | NaN | pupper | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | True | True | True | Kuvasz | 0.350629 |
| 611 | 743210557239623680 | 1560 | 4215 | 2016-06-15 22:36:19 | Meet Kayla, an underground poker legend. Players lose on purpose hoping she'll let them pet her. 10/10 strategic af https://t.co/EkLku795aO | 10 | 10 | Kayla | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | True | True | True | Golden_retriever | 0.930705 | |
| 612 | 742423170473463808 | 4319 | 10812 | 2016-06-13 18:27:32 | This is Bell. She likes holding hands. 12/10 would definitely pet with other hand https://t.co/BXIuvkQO9b | 12 | 10 | Bell | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | True | True | True | Pug | 0.997310 | |
| 613 | 742385895052087300 | 2266 | 7457 | 2016-06-13 15:59:24 | This is Phil. That's his comfort stick. He holds onto it whenever he's sad. 11/10 don't be sad Phil https://t.co/ULdPY6CLpq | 11 | 10 | Phil | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | True | True | True | Cardigan | 0.566911 | |
| 614 | 741793263812808706 | 1698 | 4982 | 2016-06-12 00:44:30 | When your crush won't pay attention to you. Both 10/10 tragic af https://t.co/d3LELGVlqu | 10 | 10 | None | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | True | True | True | Kuvasz | 0.311325 | |
| 615 | 741743634094141440 | 3144 | 8945 | 2016-06-11 21:27:17 | Meet Aqua. She's a sandy pupper. Not sure how she feels about being so sandy. Radical tongue slip. 11/10 petable af https://t.co/rYxJ0UQtbE | 11 | 10 | Aqua | pupper | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | True | True | True | Labrador_retriever | 0.786089 |
| 616 | 741438259667034112 | 937 | 4026 | 2016-06-11 01:13:51 | This is Tucker. He's still figuring out couches. 9/10 keep your head up pup https://t.co/pXU77HPbJ5 | 9 | 10 | Tucker | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.292675 | |
| 617 | 741303864243200000 | 3650 | 9631 | 2016-06-10 16:19:48 | This is Theodore. He just saw an adult wearing crocs. Did him a frighten. Lost other ear back in nam. 12/10 hero af https://t.co/O4iw9NlLaQ | 12 | 10 | Theodore | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | True | True | True | Chihuahua | 0.768156 | |
| 618 | 741067306818797568 | 3520 | 10342 | 2016-06-10 00:39:48 | This is just downright precious af. 12/10 for both pupper and doggo https://t.co/o5J479bZUC | 12 | 10 | NaN | doggo, pupper | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | True | True | True | Golden_retriever | 0.843799 |
| 619 | 740995100998766593 | 3154 | 7018 | 2016-06-09 19:52:53 | This is Leo. He's a vape god. Blows o's for days. Probably drives a Subaru. Definitely owns multiple fedoras. 10/10 https://t.co/nt2x3fHaRJ | 10 | 10 | Leo | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | True | True | True | Malamute | 0.454363 | |
| 620 | 740711788199743490 | 1062 | 3736 | 2016-06-09 01:07:06 | Here we are witnessing the touchdown of a pupnado. It's not funny it's actually very deadly. 9/10 might still pet https://t.co/CmLoKMbOHv | 9 | 10 | None | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | True | False | False | Toy_poodle | 0.388277 | |
| 621 | 740373189193256964 | 9220 | 20648 | 2016-06-08 02:41:38 | After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ | 14 | 10 | None | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | True | True | True | Golden_retriever | 0.807644 | |
| 622 | 740359016048689152 | 967 | 3610 | 2016-06-08 01:45:19 | This is Chase. He's in a predicament. 9/10 help is on the way buddy https://t.co/0HmBk5sSbW | 9 | 10 | Chase | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | True | True | True | Golden_retriever | 0.863687 | |
| 623 | 740214038584557568 | 2220 | 7335 | 2016-06-07 16:09:13 | This is getting incredibly frustrating. This is a Mexican Golden Beaver. We only rate dogs. Only send dogs ...10/10 https://t.co/0yolOOyD3X | 10 | 10 | NaN | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.586414 | |
| 624 | 739979191639244800 | 6719 | 21898 | 2016-06-07 00:36:02 | This is Nollie. She's waving at you. If you don't wave back you're a monster. She's also portable as hell. 12/10 https://t.co/7AKdkCOlMf | 12 | 10 | Nollie | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | True | False | True | Irish_water_spaniel | 0.285800 | |
| 625 | 739844404073074688 | 966 | 4138 | 2016-06-06 15:40:26 | This is Simba. He's the grand prize. The trophy is just for participation. 12/10 would pet so damn well https://t.co/4qiuC0lXq5 | 12 | 10 | Simba | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | True | False | True | Toy_poodle | 0.342397 | |
| 626 | 739606147276148736 | 1876 | 5897 | 2016-06-05 23:53:41 | Meet Benji. He just turned 1. Has already given up on a traditional pupper physique. Just inhaled that thing. 9/10 https://t.co/sLUC4th3Zj | 9 | 10 | Benji | pupper | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | True | True | True | Blenheim_spaniel | 0.933755 |
| 627 | 739544079319588864 | 24319 | 43694 | 2016-06-05 19:47:03 | This... is a Tyrannosaurus rex. We only rate dogs. Please only send in dogs. Thank you ...10/10 https://t.co/zxw8d5g94P | 10 | 10 | None | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | True | True | False | Labrador_retriever | 0.967397 | |
| 628 | 739485634323156992 | 3309 | 7887 | 2016-06-05 15:54:48 | This is Kyle. He's a heavy drinker and an avid pot user. Just wants to be pupular. 6/10 I can't support this Kyle https://t.co/rRULp7XFnO | 6 | 10 | Kyle | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | True | True | True | Walker_hound | 0.640256 | |
| 629 | 739238157791694849 | 52360 | 75163 | 2016-06-04 23:31:25 | Here's a doggo blowing bubbles. It's downright legendary. 13/10 would watch on repeat forever (vid by Kent Duryee) https://t.co/YcXgHfp1EC | 13 | 10 | None | doggo | https://pbs.twimg.com/ext_tw_video_thumb/739238016737267712/pu/img/-tLpyiuIzD5zR1et.jpg | 1 | True | True | True | Eskimo_dog | 0.503372 |
| 630 | 738883359779196928 | 917 | 3661 | 2016-06-04 00:01:35 | When a single soap orb changes your entire perception of the universe... 10/10 https://t.co/9eCXpVExJc | 10 | 10 | None | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | True | True | True | Labrador_retriever | 0.691137 | |
| 631 | 738537504001953792 | 1759 | 5575 | 2016-06-03 01:07:16 | This is Bayley. She fell asleep trying to escape her evil fence enclosure. 11/10 night night puppo https://t.co/AxSiqAKEKu | 11 | 10 | Bayley | puppo | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | True | False | True | Chow | 0.808737 |
| 632 | 738402415918125056 | 955 | 3599 | 2016-06-02 16:10:29 | "Don't talk to me or my son ever again" ...10/10 for both https://t.co/s96OYXZIfK | 10 | 10 | None | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | True | True | True | Cocker_spaniel | 0.346695 | |
| 633 | 738184450748633089 | 1360 | 4727 | 2016-06-02 01:44:22 | For the last time, we only rate dogs. Pls stop sending other animals like this Duck-Billed Platypus. Thank you. 9/10 https://t.co/twxYcPOafl | 9 | 10 | None | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | True | True | True | Bedlington_terrier | 0.289471 | |
| 634 | 738166403467907072 | 3828 | 9635 | 2016-06-02 00:32:39 | This is Axel. He's a professional leaf catcher. 12/10 gifted af https://t.co/P8bgOMMTRs | 12 | 10 | Axel | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | True | True | True | Keeshond | 0.878886 | |
| 635 | 738156290900254721 | 748 | 2768 | 2016-06-01 23:52:28 | This is Storkson. He's wet and sad. 10/10 cheer up pup https://t.co/nrzvzPuTvC | 10 | 10 | Storkson | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | True | False | False | Pug | 0.751758 | |
| 636 | 737826014890496000 | 2006 | 5757 | 2016-06-01 02:00:04 | This is Remy. He has some long ass ears (probably magical). Also very proud of broken stick. 10/10 such a good boy https://t.co/EZx0YjPjPK | 10 | 10 | Remy | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | True | True | True | Vizsla | 0.990391 | |
| 637 | 737800304142471168 | 3904 | 10943 | 2016-06-01 00:17:54 | This is Bella. She's ubering home after a few too many drinks. 10/10 socially conscious af https://t.co/KxkOgq80Xj | 10 | 10 | Bella | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | True | True | False | Malamute | 0.374682 | |
| 638 | 737678689543020544 | 1509 | 5528 | 2016-05-31 16:14:39 | We only rate dogs. Pls stop sending in non-canines like this Slovak Car Bunny. It makes my job very difficult. 11/10 https://t.co/VflvQLH2y5 | 11 | 10 | None | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | True | True | True | Pembroke | 0.935307 | |
| 639 | 737445876994609152 | 5048 | 11302 | 2016-05-31 00:49:32 | Just wanted to share this super rare Rainbow Floofer in case you guys haven't seen it yet. 13/10 colorful af https://t.co/CaG9MzD3WT | 13 | 10 | None | floofer | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | True | True | True | Samoyed | 0.400568 |
| 640 | 736736130620620800 | 1972 | 4736 | 2016-05-29 01:49:16 | This is Chadrick. He's gnarly af 13/10 https://t.co/447tyBN0mW | 13 | 10 | Chadrick | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | True | True | True | Schipperke | 0.545502 | |
| 641 | 736225175608430592 | 3115 | 8901 | 2016-05-27 15:58:54 | We only rate dogs. Please stop sending in non-canines like this Alaskan Flop Turtle. This is very frustrating. 10/10 https://t.co/qXteK6Atxc | 10 | 10 | NaN | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | True | True | True | Labrador_retriever | 0.399217 | |
| 642 | 736010884653420544 | 3355 | 8652 | 2016-05-27 01:47:23 | Right after you graduate vs when you remember you're on your own now and can barely work a washing machine ...10/10 https://t.co/O1TLuYjsNS | 10 | 10 | None | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | True | True | True | Golden_retriever | 0.553901 | |
| 643 | 735991953473572864 | 1283 | 3934 | 2016-05-27 00:32:10 | This is Maxaroni. He's curly af. Also rather fabulous. 11/10 would hug well https://t.co/A216OjIdca | 11 | 10 | Maxaroni | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | True | True | True | Cocker_spaniel | 0.961643 | |
| 644 | 735648611367784448 | 1237 | 4397 | 2016-05-26 01:47:51 | *faints* 12/10 perfection in pupper form https://t.co/t6TxTwTLEK | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | True | False | True | Pembroke | 0.462594 |
| 645 | 735635087207878657 | 2659 | 6776 | 2016-05-26 00:54:06 | This is Dakota. He hasn't grow into his skin yet. 11/10 would squeeze softly https://t.co/IvFSlNXpgj | 11 | 10 | Dakota | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | True | False | False | Pug | 0.891871 | |
| 646 | 735256018284875776 | 993 | 3675 | 2016-05-24 23:47:49 | This is Kellogg. He accidentally opened the front facing camera. 8/10 get it together doggo https://t.co/MRYv7nDPyS | 8 | 10 | Kellogg | doggo | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | True | True | False | Staffordshire_bullterrier | 0.523191 |
| 647 | 735137028879360001 | 1092 | 3428 | 2016-05-24 15:55:00 | Meet Buckley. His family & some neighbors came over to watch him perform but he's nervous af. 9/10 u got this pupper https://t.co/5bdCpPlno9 | 9 | 10 | Buckley | pupper | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | True | True | True | Walker_hound | 0.413535 |
| 648 | 734912297295085568 | 572 | 2993 | 2016-05-24 01:02:00 | This is Jax. He's a literal fluffball. Sneaky tongue slip. 10/10 would pet nonstop https://t.co/9MGouPwQmK | 10 | 10 | Jax | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | True | False | True | Maltese_dog | 0.847292 | |
| 649 | 734776360183431168 | 608 | 2742 | 2016-05-23 16:01:50 | This is Livvie. Someone should tell her it's been 47 years since Woodstock. Magical eyes tho 11/10 would stare into https://t.co/qw07vhVHuO | 11 | 10 | Livvie | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | True | True | True | Siberian_husky | 0.304902 | |
| 650 | 733828123016450049 | 881 | 3926 | 2016-05-21 01:13:53 | This is Terry. The harder you hug him the farther his tongue sticks out. 10/10 magical af https://t.co/RFToQQI8fJ | 10 | 10 | Terry | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | True | True | True | Beagle | 0.472324 | |
| 651 | 733822306246479872 | 1141 | 4015 | 2016-05-21 00:50:46 | This is Moose. He's a Polynesian Floofer. Dapper af. 10/10 would pet diligently https://t.co/mVfqRdppTL | 10 | 10 | Moose | floofer | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | True | True | True | Lhasa | 0.457356 |
| 652 | 733482008106668032 | 1065 | 3438 | 2016-05-20 02:18:32 | "Ello this is dog how may I assist" ...10/10 https://t.co/jeAENpjH7L | 10 | 10 | None | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | True | False | False | French_bulldog | 0.619382 | |
| 653 | 733460102733135873 | 1451 | 4605 | 2016-05-20 00:51:30 | This is Hermione. Her face is as old as time. Appears fluffy af tho. 11/10 pretty damn majestic https://t.co/0b41Q4DKCA | 11 | 10 | Hermione | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | True | False | False | Chow | 0.931275 | |
| 654 | 733109485275860992 | 17621 | 44619 | 2016-05-19 01:38:16 | Like father (doggo), like son (pupper). Both 12/10 https://t.co/pG2inLaOda | 12 | 10 | None | doggo, pupper | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | True | True | False | Golden_retriever | 0.945523 |
| 655 | 732726085725589504 | 1003 | 3855 | 2016-05-18 00:14:46 | This is Aldrick. He looks wise af. Also exceptionally fluffy. Only two legs tho (unfortunate). 11/10 would still hug https://t.co/QwiCVLPMNL | 11 | 10 | Aldrick | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | True | True | True | Pomeranian | 0.961902 | |
| 656 | 732585889486888962 | 868 | 4016 | 2016-05-17 14:57:41 | When your teacher agreed on 10,000 RTs and no final but after 24 hours you only have 37... 10/10 https://t.co/sVnJfWVjUp | 10 | 10 | None | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | True | True | True | Staffordshire_bullterrier | 0.843359 | |
| 657 | 732005617171337216 | 6154 | 16324 | 2016-05-16 00:31:53 | This is Larry. He has no self control. Tongue still nifty af tho 11/10 https://t.co/ghyT4Ubk1r | 11 | 10 | Larry | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | True | True | True | English_setter | 0.677408 | |
| 658 | 731285275100512256 | 1090 | 3798 | 2016-05-14 00:49:30 | This is Solomon. He's a Beneroo Cumberflop. 12/10 would hug passionately https://t.co/5phLAnGPTP | 12 | 10 | Solomon | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | True | True | True | Pembroke | 0.967103 | |
| 659 | 730573383004487680 | 2435 | 5407 | 2016-05-12 01:40:42 | This is Rooney. He can't comprehend glass. 10/10 it'll be ok pupper https://t.co/CnUl2uDBBV | 10 | 10 | Rooney | pupper | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | True | True | True | American_staffordshire_terrier | 0.810158 |
| 660 | 730427201120833536 | 1176 | 3809 | 2016-05-11 15:59:50 | This is Crystal. She's flawless. Really wants to be a frat bro. 11/10 who does she even know here? https://t.co/WyqNFvEulG | 11 | 10 | Crystal | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | True | True | True | Eskimo_dog | 0.682082 | |
| 661 | 730211855403241472 | 1182 | 4180 | 2016-05-11 01:44:07 | This is Ziva. She doesn't know how her collar works. 11/10 would totally fix for her https://t.co/K7pthJXjWE | 11 | 10 | Ziva | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | True | True | True | Pug | 0.341663 | |
| 662 | 729823566028484608 | 1390 | 4358 | 2016-05-10 00:01:12 | This is Stefan. He's a downright remarkable pup. 13/10 https://t.co/Ebjt6Y4fMh | 13 | 10 | Stefan | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | True | False | False | Kelpie | 0.218408 | |
| 663 | 729463711119904772 | 2586 | 6340 | 2016-05-09 00:11:16 | Meet Pupcasso. You can't afford his art. 13/10 talented af https://t.co/f2VUpy4WO0 | 13 | 10 | Pupcasso | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | True | True | True | German_shepherd | 0.829307 | |
| 664 | 728986383096946689 | 917 | 3460 | 2016-05-07 16:34:32 | This is Puff. He started out on the streets (first pic), but don't let the new smile fool you, still tough af. 11/10 https://t.co/kiuXRXcg4B | 11 | 10 | Puff | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | True | True | True | Maltese_dog | 0.952070 | |
| 665 | 728760639972315136 | 1911 | 5090 | 2016-05-07 01:37:30 | When you're way too slow for the "down low" portion of a high five. 13/10 https://t.co/Cofwoy7Vpq | 13 | 10 | None | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | True | True | True | Pembroke | 0.939134 | |
| 666 | 728751179681943552 | 757 | 3032 | 2016-05-07 00:59:55 | This is Flurpson. He can't believe it's not butter. 10/10 https://t.co/XD3ort1PsE | 10 | 10 | Flurpson | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | True | True | True | Saint_bernard | 0.482050 | |
| 667 | 728387165835677696 | 1075 | 3999 | 2016-05-06 00:53:27 | This is Enchilada (yes, that's her real name). She's a Low-Cruisin Plopflopple. Very rare. Only a few left. 12/10 https://t.co/SiaiTWgsfP | 12 | 10 | Enchilada | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | True | True | True | Collie | 0.266414 | |
| 668 | 728046963732717569 | 1328 | 4722 | 2016-05-05 02:21:37 | This is Raymond. He controls fountains with his tongue. 11/10 pretty damn magical https://t.co/9aMxSbOaAZ | 11 | 10 | Raymond | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | True | True | True | Newfoundland | 0.255971 | |
| 669 | 728015554473250816 | 1219 | 4479 | 2016-05-05 00:16:48 | This is Rueben. He has reached ultimate pupper zen state. 11/10 tranquil af https://t.co/Z167HgtnBi | 11 | 10 | Rueben | pupper | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | True | True | False | Cocker_spaniel | 0.384559 |
| 670 | 727685679342333952 | 720 | 3206 | 2016-05-04 02:26:00 | This is Cilantro. She's a Fellation Gadzooks. Eyes are super magical af. 12/10 could get lost in https://t.co/yJ26LNuyj5 | 12 | 10 | Cilantro | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | True | True | True | Border_collie | 0.462408 | |
| 671 | 727644517743104000 | 1962 | 6431 | 2016-05-03 23:42:26 | Here's a doggo struggling to cope with the winds. 13/10 https://t.co/qv3aUwaouT | 13 | 10 | None | doggo | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | True | True | True | Great_pyrenees | 0.457164 |
| 672 | 727524757080539137 | 1379 | 4900 | 2016-05-03 15:46:33 | This pupper had to undergo emergency haircut surgery so he could hear again. 10/10 miraculous af https://t.co/fUyDIFkBwx | 10 | 10 | None | pupper | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | True | True | True | Pomeranian | 0.958834 |
| 673 | 727314416056803329 | 834 | 3623 | 2016-05-03 01:50:44 | This pupper was about to explain where that dirt came from but then decided against it. 11/10 https://t.co/SbaelU6zRs | 11 | 10 | None | pupper | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | True | True | True | Toy_poodle | 0.827469 |
| 674 | 727175381690781696 | 1540 | 4209 | 2016-05-02 16:38:15 | This is Karll. He just wants to go kayaking. 10/10 please someone take Karll kayaking already https://t.co/vXLkvyNQHp | 10 | 10 | Karll | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | True | True | True | Flat-coated_retriever | 0.656463 | |
| 675 | 726935089318363137 | 2738 | 7496 | 2016-05-02 00:43:25 | This is Sprout. He's just precious af. 12/10 I'd do anything for Sprout https://t.co/DxlX1yTVYY | 12 | 10 | Sprout | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | False | True | True | Teddy | 0.821615 | |
| 676 | 726887082820554753 | 1677 | 4195 | 2016-05-01 21:32:40 | This is Blitz. He's a new dad struggling to cope mentally with the pressures of being a father. Sick shades 10/10 https://t.co/2AVcJ2BZsy | 10 | 10 | Blitz | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.515919 | |
| 677 | 726828223124897792 | 1124 | 3882 | 2016-05-01 17:38:46 | This is Bloop. He's a Phoenician Winnebago. Tongue is just wow. That box is all he has (tragic). 12/10 would caress https://t.co/DWNrPPXgHA | 12 | 10 | Bloop | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | True | True | True | Miniature_pinscher | 0.255327 | |
| 678 | 726224900189511680 | 1302 | 4811 | 2016-04-30 01:41:23 | I'm getting super heckin frustrated with you all sending in non canines like this ostrich. We only rate dogs... 9/10 https://t.co/Rgbni2Ns8z | 9 | 10 | None | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | True | True | False | Standard_poodle | 0.261112 | |
| 679 | 725842289046749185 | 2970 | 7691 | 2016-04-29 00:21:01 | This is Colby. He's currently regretting all those times he shook your hand for an extra treat. 12/10 https://t.co/vtVHtKFtBH | 12 | 10 | Colby | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | True | True | True | Toy_poodle | 0.420463 | |
| 680 | 725786712245440512 | 1527 | 4537 | 2016-04-28 20:40:11 | Say hello to Lillie. She's a Rutabagan Floofem. Poor pupper ate and then passed out. 11/10 relatable af https://t.co/uIdGqug9rw | 11 | 10 | Lillie | pupper | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | True | True | True | Chow | 0.335761 |
| 681 | 725729321944506368 | 2009 | 5646 | 2016-04-28 16:52:08 | This is Lola. She's a Butternut Splishnsplash. They are known to be ferocious af. 12/10 would absolutely still pet https://t.co/adQt5a6TZU | 12 | 10 | Lola | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | True | True | True | Boxer | 0.599076 | |
| 682 | 724983749226668032 | 1462 | 4040 | 2016-04-26 15:29:30 | This is Fred-Rick. He dabbles in parkour. The elevation gives him power. 12/10 hopefully visiting a mailbox near you https://t.co/qFqLtudIiD | 12 | 10 | Fred | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | True | True | True | Golden_retriever | 0.675750 | |
| 683 | 724771698126512129 | 725 | 2593 | 2016-04-26 01:26:53 | Nothin better than a doggo and a sunset. 11/10 https://t.co/JlFqOhrHEs | 11 | 10 | None | doggo | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | True | True | True | German_short-haired_pointer | 0.835491 |
| 684 | 724405726123311104 | 1847 | 5800 | 2016-04-25 01:12:38 | This is Ashleigh. She's having Coachella withdrawals. Didn't even go tho. 10/10 stay strong pupper https://t.co/nRUaKWnJfH | 10 | 10 | Ashleigh | pupper | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | True | True | False | Golden_retriever | 0.240695 |
| 685 | 724049859469295616 | 1984 | 4738 | 2016-04-24 01:38:33 | This is Kreggory. He just took a look at his student debt. 10/10 can't even comprehend it https://t.co/XTsZTgilnT | 10 | 10 | Kreggory | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | True | True | True | Border_collie | 0.581835 | |
| 686 | 724046343203856385 | 620 | 2901 | 2016-04-24 01:24:35 | This is Sarge. Not even he knows what his tongue is doing, but it's pretty damn spectacular. 10/10 https://t.co/pIQEdbBxdL | 10 | 10 | Sarge | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | True | True | True | Boxer | 0.826272 | |
| 687 | 723912936180330496 | 1374 | 4236 | 2016-04-23 16:34:28 | This is Sugar. She's a Bolivian Superfloof. Spherical af. 12/10 would never let go of https://t.co/AhMfUu6Onm | 12 | 10 | Sugar | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | True | True | True | Samoyed | 0.991772 | |
| 688 | 723688335806480385 | 3347 | 8435 | 2016-04-23 01:41:59 | This is Reginald. He starts screaming at random. 12/10 cuddly af https://t.co/YgNuDQbv89 | 12 | 10 | Reginald | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | False | True | True | Teddy | 0.263256 | |
| 689 | 723673163800948736 | 1011 | 3291 | 2016-04-23 00:41:42 | This is Ivar. She is a badass Viking warrior. Will sack your village. 10/10 savage af https://t.co/Dz6MiVssVU | 10 | 10 | Ivar | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | True | True | False | Golden_retriever | 0.839390 | |
| 690 | 722974582966214656 | 1764 | 4493 | 2016-04-21 02:25:47 | Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a | 13 | 10 | None | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | True | True | True | Great_dane | 0.246762 | |
| 691 | 722613351520608256 | 1831 | 5393 | 2016-04-20 02:30:23 | Meet Schnitzel. He's a Tropicana Floofboop. Getting too big for his favorite basket. 12/10 just so damn fluffy https://t.co/qjd0UJKYUY | 12 | 10 | Schnitzel | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | True | True | True | Labrador_retriever | 0.530915 | |
| 692 | 721503162398597120 | 2124 | 5086 | 2016-04-17 00:58:53 | This is Panda. He's happy af. 11/10 https://t.co/IOAk9i4UvE | 11 | 10 | Panda | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | True | True | True | Pomeranian | 0.997750 | |
| 693 | 721001180231503872 | 686 | 2748 | 2016-04-15 15:44:11 | This is Oliver. Bath time is upon him. His fear of the wetness postpones his ultimate pupper destiny. 11/10 https://t.co/AFzzKqR4tT | 11 | 10 | Oliver | pupper | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | True | False | False | Samoyed | 0.950053 |
| 694 | 720785406564900865 | 866 | 3400 | 2016-04-15 01:26:47 | This is Archie. He hears everything you say. Doesn't matter where you are. 12/10 https://t.co/0l4I8famYp | 12 | 10 | Archie | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | True | False | True | Chihuahua | 0.896422 | |
| 695 | 720775346191278080 | 760 | 2702 | 2016-04-15 00:46:48 | This is Berkeley. He's in a predicament. 10/10 someone help him https://t.co/XSEXdQupej | 10 | 10 | Berkeley | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | True | True | True | Newfoundland | 0.489970 | |
| 696 | 720415127506415616 | 1681 | 4503 | 2016-04-14 00:55:25 | Garden's coming in nice this year. 10/10 https://t.co/5Lra3e4rrw | 10 | 10 | None | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | True | True | False | Rottweiler | 0.990312 | |
| 697 | 720389942216527872 | 2840 | 6974 | 2016-04-13 23:15:21 | This is Ralphé. He patrols the lake. Looking for babes. 11/10 https://t.co/Pb6iMmo0wk | 11 | 10 | Ralphé | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | True | True | True | Pembroke | 0.873977 | |
| 698 | 720059472081784833 | 1268 | 4229 | 2016-04-13 01:22:10 | This is Charleson. He lost his plunger. Looked everywhere. Can't find it. So sad. 9/10 would comfort https://t.co/pRHX8yn9Yu | 9 | 10 | Charleson | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | True | True | True | Mexican_hairless | 0.451852 | |
| 699 | 720043174954147842 | 2253 | 5332 | 2016-04-13 00:17:25 | This is Neptune. He's a Snowy Swiss Mountain Floofapolis. Cheeky wink. Tongue nifty af. 11/10 would pet so firmly https://t.co/SoZq2Xoopv | 11 | 10 | Neptune | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | True | True | False | Samoyed | 0.954517 | |
| 700 | 719991154352222208 | 1979 | 5281 | 2016-04-12 20:50:42 | This doggo was initially thrilled when she saw the happy cartoon pup but quickly realized she'd been deceived. 10/10 https://t.co/mvnBGaWULV | 10 | 10 | None | doggo | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | True | True | True | Golden_retriever | 0.605304 |
| 701 | 719551379208073216 | 2192 | 5515 | 2016-04-11 15:43:12 | This is Harnold. He accidentally opened the front facing camera. 10/10 get it together Harnold https://t.co/S6JHaSMtln | 10 | 10 | Harnold | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | True | True | True | Malamute | 0.873233 | |
| 702 | 719339463458033665 | 1403 | 4822 | 2016-04-11 01:41:07 | Say hello to Lucy and Sophie. They think they're the same size. Both 10/10 would snug at same time https://t.co/HW50zkcf2R | 10 | 10 | Lucy | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | True | True | True | Golden_retriever | 0.765778 | |
| 703 | 719332531645071360 | 1078 | 3711 | 2016-04-11 01:13:34 | This is Pippa. She managed to start the car but is waiting for you to buckle up before driving. Responsible af 11/10 https://t.co/htrlmC7saz | 11 | 10 | Pippa | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | True | True | True | Dandie_dinmont | 0.224415 | |
| 704 | 718971898235854848 | 1231 | 3818 | 2016-04-10 01:20:33 | This is Sadie. She is prepared for battle. 10/10 https://t.co/JRckDkZVRT | 10 | 10 | Sadie | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | True | True | True | Golden_retriever | 0.140394 | |
| 705 | 718939241951195136 | 1973 | 5720 | 2016-04-09 23:10:47 | This is Otis. Everybody look at Otis. 12/10 would probably faint while petting https://t.co/I9qoe1uEih | 12 | 10 | Otis | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | True | True | False | Pembroke | 0.766327 | |
| 706 | 718631497683582976 | 9126 | 20697 | 2016-04-09 02:47:55 | We normally don't rate marshmallows but this one appears to be flawlessly toasted so I'll make an exception. 10/10 https://t.co/D9jbbmPmos | 10 | 10 | None | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | True | True | False | Pomeranian | 0.993718 | |
| 707 | 718613305783398402 | 542 | 2669 | 2016-04-09 01:35:37 | This is Carper. He's a Tortellini Angiosperm. In desperate need of a petting. 11/10 would hug softly https://t.co/lK9YDkRzPj | 11 | 10 | Carper | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | True | True | True | Labrador_retriever | 0.584580 | |
| 708 | 718540630683709445 | 1137 | 2730 | 2016-04-08 20:46:50 | Get you a pup that can do both. 10/10 https://t.co/zSbyvm62xZ | 10 | 10 | None | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | True | True | True | Maltese_dog | 0.632289 | |
| 709 | 718246886998687744 | 565 | 2115 | 2016-04-08 01:19:36 | This is Alexanderson. He's got a weird ass birth mark. Dreadful at fetch. Won't eat kibble. 3/10 wtf @Target https://t.co/FmxOpf2Sgl | 3 | 10 | Alexanderson | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | True | False | True | Chihuahua | 0.354488 | |
| 710 | 718234618122661888 | 1127 | 4217 | 2016-04-08 00:30:51 | This is Suki. She was born with a blurry tail (unfortunate). Next level tongue tho. 11/10 nifty hardwood https://t.co/05S8oYztgb | 11 | 10 | Suki | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | True | True | True | Malamute | 0.370152 | |
| 711 | 717841801130979328 | 670 | 2660 | 2016-04-06 22:29:56 | This is Barclay. His father was a banana. 11/10 appeeling af https://t.co/ucOEfr2rjV | 11 | 10 | Barclay | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | True | True | False | Brittany_spaniel | 0.922876 | |
| 712 | 717537687239008257 | 2069 | 6281 | 2016-04-06 02:21:30 | People please. This is a Deadly Mediterranean Plop T-Rex. We only rate dogs. Only send in dogs. Thanks you... 11/10 https://t.co/2ATDsgHD4n | 11 | 10 | NaN | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | True | True | True | Golden_retriever | 0.779356 | |
| 713 | 717421804990701568 | 945 | 3446 | 2016-04-05 18:41:02 | This is Ebby. She's a Zimbabwean Feta. Embarrassed by ridiculously squishy face. 9/10 would squeeze softly https://t.co/LBJqxMGaHi | 9 | 10 | Ebby | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | True | True | True | Miniature_pinscher | 0.286479 | |
| 714 | 717047459982213120 | 2135 | 6826 | 2016-04-04 17:53:31 | This is Flávio (pronounced Baxter). He's a Benesnoop Cumberdog. Super rare. Symmetrical. 12/10 would pet so well https://t.co/fGgleFiBPq | 12 | 10 | Flávio | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | True | True | True | Golden_retriever | 0.983548 | |
| 715 | 717009362452090881 | 1102 | 3583 | 2016-04-04 15:22:08 | This is Smokey. He's having some sort of existential crisis. 10/10 hang in there pupper https://t.co/JmgF4dMpw0 | 10 | 10 | Smokey | pupper | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | True | True | True | Siberian_husky | 0.506154 |
| 716 | 716802964044845056 | 1317 | 4627 | 2016-04-04 01:41:58 | This is Link. He struggles with couches. 10/10 would assist https://t.co/SbX4e6Yg3o | 10 | 10 | Link | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | True | True | True | Malinois | 0.619577 | |
| 717 | 716791146589110272 | 1474 | 5204 | 2016-04-04 00:55:01 | Meet Jennifur. She's supposed to be navigating. Not even buckled up. Insubordinate & churlish. 11/10 would still pet https://t.co/h0trcJohYO | 11 | 10 | Jennifur | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | True | False | True | Pomeranian | 0.468751 | |
| 718 | 716439118184652801 | 247 | 2574 | 2016-04-03 01:36:11 | This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq | 11 | 10 | Bluebert | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | True | True | True | Siberian_husky | 0.396495 | |
| 719 | 716285507865542656 | 1225 | 3041 | 2016-04-02 15:25:47 | This is Stephanus. She stays woke. 12/10 https://t.co/WIWabMngQZ | 12 | 10 | Stephanus | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | True | True | True | Yorkshire_terrier | 0.430420 | |
| 720 | 716080869887381504 | 1935 | 5272 | 2016-04-02 01:52:38 | Here's a super majestic doggo and a sunset 11/10 https://t.co/UACnoyi8zu | 11 | 10 | None | doggo | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | True | True | True | Golden_retriever | 0.638625 |
| 721 | 715928423106027520 | 987 | 3485 | 2016-04-01 15:46:52 | This is Bubbles. He's a Yorkshire Piccolope. 11/10 would snug aggressively https://t.co/3BhMojONxq | 11 | 10 | Bubbles | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | True | True | True | Pug | 0.976685 | |
| 722 | 715733265223708672 | 1920 | 5093 | 2016-04-01 02:51:22 | This is a taco. We only rate dogs. Please only send in dogs. Dogs are what we rate. Not tacos. Thank you... 10/10 https://t.co/cxl6xGY8B9 | 10 | 10 | NaN | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | True | True | True | Dandie_dinmont | 0.740229 | |
| 723 | 715696743237730304 | 1454 | 4257 | 2016-04-01 00:26:15 | Meet Toby. He's a Lithuanian High-Steppin Stickeroo. One of the more accomplished Stickeroos around. 10/10 so nifty https://t.co/cYPHuJYTjC | 10 | 10 | Toby | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.427836 | |
| 724 | 715680795826982913 | 1813 | 4719 | 2016-03-31 23:22:53 | This is Zeus. He's downright fabulous. 12/10 https://t.co/sSugyyRuTp | 12 | 10 | Zeus | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | True | True | True | Golden_retriever | 0.990715 | |
| 725 | 715342466308784130 | 768 | 3294 | 2016-03-31 00:58:29 | This is Oscar. He's a world renowned snowball inspector. It's a ruff job but someone has to do it. 10/10 great guy https://t.co/vSufMAKm3C | 10 | 10 | Oscar | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | True | True | True | West_highland_white_terrier | 0.597111 | |
| 726 | 715220193576927233 | 736 | 2630 | 2016-03-30 16:52:36 | This is Nico. His selfie game is strong af. Excellent use of a sneaky tongue slip. 10/10 star material https://t.co/1OBdJkMOFx | 10 | 10 | Nico | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | True | True | True | Chihuahua | 0.584026 | |
| 727 | 715200624753819648 | 2110 | 5578 | 2016-03-30 15:34:51 | This is Michelangelope. He's half coffee cup. Rare af. 12/10 would hug until someone stopped me https://t.co/tvVDY0G911 | 12 | 10 | Michelangelope | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | True | True | True | Chihuahua | 0.956787 | |
| 728 | 715009755312439296 | 1392 | 4550 | 2016-03-30 02:56:24 | This is Siba. She's remarkably mobile. Very sleepy as well. 12/10 would happily transport https://t.co/TjnI33RE1i | 12 | 10 | Siba | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | False | True | True | Dingo | 0.310903 | |
| 729 | 714982300363173890 | 1166 | 4094 | 2016-03-30 01:07:18 | This is Calbert. He forgot to clear his Google search history. 9/10 rookie mistake Calbert https://t.co/jRm5J3YCmj | 9 | 10 | Calbert | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | True | True | True | Brittany_spaniel | 0.944376 | |
| 730 | 714957620017307648 | 1595 | 4503 | 2016-03-29 23:29:14 | This is Curtis. He's an Albino Haberdasher. Terrified of dandelions. They really spook him up. 10/10 it'll be ok pup https://t.co/s8YcfZrWhK | 10 | 10 | Curtis | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | True | True | True | Great_pyrenees | 0.251516 | |
| 731 | 714606013974974464 | 1038 | 3938 | 2016-03-29 00:12:05 | Here are two lil cuddly puppers. Both 12/10 would snug like so much https://t.co/zO4eb7C4tG | 12 | 10 | None | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | True | True | True | Norfolk_terrier | 0.293007 | |
| 732 | 714258258790387713 | 808 | 3281 | 2016-03-28 01:10:13 | Meet Travis and Flurp. Travis is pretty chill but Flurp can't lie down properly. 10/10 & 8/10\nget it together Flurp https://t.co/Akzl5ynMmE | 10 | 10 | Travis | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | True | True | True | Collie | 0.176758 | |
| 733 | 714251586676113411 | 940 | 3570 | 2016-03-28 00:43:43 | This is Thumas. He hates potted plants. 8/10 wtf Thumas https://t.co/rDVueNIcEi | 8 | 10 | Thumas | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | True | True | True | Soft-coated_wheaten_terrier | 0.751962 | |
| 734 | 714214115368108032 | 990 | 2480 | 2016-03-27 22:14:49 | Happy Easter from the squad! 🐇🐶 13/10 for all https://t.co/YMx4KWJUAB | 13 | 10 | None | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | True | True | True | Pug | 0.533967 | |
| 735 | 714141408463036416 | 1569 | 4673 | 2016-03-27 17:25:54 | I know we only rate dogs, but since it's Easter I guess we could rate a bunny for a change. 10/10 petable as hell https://t.co/O2RlKXigHu | 10 | 10 | None | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | True | True | True | Labrador_retriever | 0.586951 | |
| 736 | 713919462244790272 | 869 | 3564 | 2016-03-27 02:43:58 | This is Kanu. He's a Freckled Ticonderoga. Simply flawless. 12/10 would perform an elaborate heist to capture https://t.co/7vyAzIURrE | 12 | 10 | Kanu | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | True | True | True | Siberian_husky | 0.463223 | |
| 737 | 713900603437621249 | 829 | 3062 | 2016-03-27 01:29:02 | Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1 | 11 | 10 | None | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | True | True | True | Golden_retriever | 0.371816 | |
| 738 | 713761197720473600 | 1541 | 5308 | 2016-03-26 16:15:05 | This is Piper. She would really like that tennis ball core. Super sneaky tongue slip. 12/10 precious af https://t.co/QP6GHi5az9 | 12 | 10 | Piper | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | True | True | True | Brittany_spaniel | 0.797936 | |
| 739 | 713411074226274305 | 1440 | 4802 | 2016-03-25 17:03:49 | Here we see an extremely rare Bearded Floofmallow. Only a few left in the wild. 11/10 would pet with a purpose https://t.co/jVJJKlPbvq | 11 | 10 | None | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | True | True | True | Great_pyrenees | 0.720337 | |
| 740 | 713177543487135744 | 3183 | 7854 | 2016-03-25 01:35:51 | This is Lance. Lance doesn't give a shit. 10/10 we should all be more like Lance https://t.co/SqnG9Ap28J | 10 | 10 | Lance | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | True | True | True | Whippet | 0.734244 | |
| 741 | 712809025985978368 | 7602 | 20378 | 2016-03-24 01:11:29 | This is Stubert. He just arrived. 10/10 https://t.co/HVGs5aAKAn | 10 | 10 | Stubert | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | True | False | True | Labrador_retriever | 0.868671 | |
| 742 | 712717840512598017 | 5616 | 13474 | 2016-03-23 19:09:09 | Please don't send in any more polar bears. We only rate dogs. Thank you... 10/10 https://t.co/83RGhdIQz2 | 10 | 10 | None | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | True | True | True | Great_pyrenees | 0.732043 | |
| 743 | 712668654853337088 | 1367 | 4531 | 2016-03-23 15:53:42 | Say hello to Sunny and Roxy. They pull things out of water together. 10/10 for both https://t.co/88aedAmxcl | 10 | 10 | Sunny | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | True | True | True | Labrador_retriever | 0.829058 | |
| 744 | 712097430750289920 | 1172 | 4144 | 2016-03-22 02:03:52 | I can't even comprehend how confused this dog must be right now. 10/10 https://t.co/8AGcQ4hIfK | 10 | 10 | None | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | True | True | True | Labrador_retriever | 0.720481 | |
| 745 | 712085617388212225 | 556 | 3531 | 2016-03-22 01:16:55 | Say hello to Olive and Ruby. They are best buddies. Both 11/10 \n1 like = 1 buddy https://t.co/yagmFdKlyL | 11 | 10 | Olive | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | True | True | True | Shih-tzu | 0.625129 | |
| 746 | 711743778164514816 | 1101 | 3095 | 2016-03-21 02:38:34 | Meet Roosevelt. He's calculating the best case scenario if he drops out instead of doing math hw. 11/10 relatable af https://t.co/QcSIRDpfVg | 11 | 10 | Roosevelt | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | True | True | True | Lakeland_terrier | 0.459515 | |
| 747 | 711732680602345472 | 4653 | 9756 | 2016-03-21 01:54:29 | I want to hear the joke this dog was just told. 10/10 https://t.co/1KiuZqqOD4 | 10 | 10 | None | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | False | True | True | Dingo | 0.366875 | |
| 748 | 711363825979756544 | 1287 | 3996 | 2016-03-20 01:28:47 | "Please, no puparazzi" 11/10 https://t.co/nJIXSPfedK | 11 | 10 | None | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | True | True | True | Pembroke | 0.750906 | |
| 749 | 711008018775851008 | 710 | 3275 | 2016-03-19 01:54:56 | This is Chuckles. He had a balloon but he accidentally let go of it and it floated away. 11/10 hang in there pupper https://t.co/68iNM7B5gW | 11 | 10 | Chuckles | pupper | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | True | True | True | French_bulldog | 0.731405 |
| 750 | 710997087345876993 | 1561 | 4960 | 2016-03-19 01:11:29 | Meet Milo and Amos. They are the best of pals. Both 12/10 would pet at the same time https://t.co/Mv37BHEyyD | 12 | 10 | Milo | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | True | True | True | Malamute | 0.281260 | |
| 751 | 710844581445812225 | 779 | 2775 | 2016-03-18 15:05:29 | This is Staniel. His selfie game is strong af. 10/10 I'd snapchat with Staniel https://t.co/UgkTw7TKyM | 10 | 10 | Staniel | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | False | True | True | Dingo | 0.536593 | |
| 752 | 710833117892898816 | 606 | 2937 | 2016-03-18 14:19:56 | Say hello to Sora. She's an Egyptian Pumpernickel. Mesmerizing af. 12/10 would bring home to mom https://t.co/PmTR4kxZkq | 12 | 10 | Sora | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | True | True | True | Pembroke | 0.803742 | |
| 753 | 710658690886586372 | 636 | 2529 | 2016-03-18 02:46:49 | Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12 | 10 | 10 | None | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.948617 | |
| 754 | 710283270106132480 | 580 | 2308 | 2016-03-17 01:55:02 | This is Gunner. He's a Figamus Newton. King of the peek-a-boo. Cool jeans. 11/10 https://t.co/ONuBILIYXZ | 11 | 10 | Gunner | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | True | True | True | Shih-tzu | 0.932401 | |
| 755 | 710272297844797440 | 1425 | 4945 | 2016-03-17 01:11:26 | We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending in non-canines like this Dutch Panda Worm. This is infuriating. 11/10 https://t.co/odfLzBonG2 | 11 | 10 | NaN | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | True | True | True | Old_english_sheepdog | 0.586307 | |
| 756 | 710269109699739648 | 1257 | 2613 | 2016-03-17 00:58:46 | The squad is back for St. Patrick's Day! ☘ 💚\n13/10 for all https://t.co/OcCDb2bng5 | 13 | 10 | None | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | True | True | True | Pug | 0.415495 | |
| 757 | 710140971284037632 | 1008 | 3017 | 2016-03-16 16:29:35 | This is Tater. His underbite is fierce af. Doesn't give a damn about your engagement photo. 8/10 https://t.co/nLuPY3pY12 | 8 | 10 | Tater | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | True | True | True | Pekinese | 0.953170 | |
| 758 | 710117014656950272 | 2233 | 5999 | 2016-03-16 14:54:24 | This pupper got her hair chalked for her birthday. Hasn't told her parents yet. Rebellious af. 11/10 very nifty https://t.co/h1OX2mLtxV | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | True | True | True | Toy_poodle | 0.802092 |
| 759 | 709918798883774466 | 1215 | 3250 | 2016-03-16 01:46:45 | Meet Watson. He's a Suzuki Tickleboop. Leader of a notorious biker gang. Only one ear functional. 12/10 snuggable af https://t.co/R1gLc5vDqG | 12 | 10 | Watson | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | True | True | True | Pembroke | 0.956222 | |
| 760 | 709852847387627521 | 1336 | 3824 | 2016-03-15 21:24:41 | *lets out a tiny whimper and then collapses* ...12/10 https://t.co/BNdVZEHRow | 12 | 10 | None | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | True | True | True | Chihuahua | 0.945629 | |
| 761 | 709566166965075968 | 1367 | 3865 | 2016-03-15 02:25:31 | This is Olaf. He's gotta be rare. Seems sturdy. Tail is floofy af. 12/10 would do whatever it takes to pet https://t.co/E9jaU59bh9 | 12 | 10 | Olaf | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | True | True | True | Chow | 0.999837 | |
| 762 | 709556954897764353 | 1204 | 3593 | 2016-03-15 01:48:55 | This is Cecil. She's a Gigglefloof Poofer. Outdoorsy af. One with nature. 12/10 would strategically capture https://t.co/ijJB0DuOIC | 12 | 10 | Cecil | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | True | True | True | Golden_retriever | 0.790026 | |
| 763 | 709519240576036864 | 277 | 1620 | 2016-03-14 23:19:03 | This is Vince. He's a Gregorian Flapjeck. White spot on legs almost looks like another dog (whoa). 9/10 rad as hell https://t.co/aczGAV2dK4 | 9 | 10 | Vince | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | True | True | True | Cocker_spaniel | 0.414982 | |
| 764 | 709449600415961088 | 665 | 2420 | 2016-03-14 18:42:20 | Meet Karma. She's just a head. Lost body during the Second Punic War (unfortunate). Loves to travel 10/10 petable af https://t.co/c6af6nYEPo | 10 | 10 | Karma | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | True | True | True | Maltese_dog | 0.780187 | |
| 765 | 709409458133323776 | 788 | 2855 | 2016-03-14 16:02:49 | This is Billy. He sensed a squirrel. 8/10 damn it Billy https://t.co/Yu0K98VZ9A | 8 | 10 | Billy | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | True | True | True | Shetland_sheepdog | 0.797450 | |
| 766 | 709225125749587968 | 647 | 2615 | 2016-03-14 03:50:21 | This is Walker. He's a Butternut Khalifa. Appears fuzzy af. 11/10 would hug for a ridiculous amount of time https://t.co/k6fEWHSALn | 11 | 10 | Walker | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | True | True | True | Labrador_retriever | 0.271109 | |
| 767 | 709207347839836162 | 6567 | 13755 | 2016-03-14 02:39:42 | This is Penny. She's trying on her prom dress. Stunning af 11/10 https://t.co/qcZDZGCapg | 11 | 10 | Penny | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | True | True | False | Chihuahua | 0.948323 | |
| 768 | 709198395643068416 | 721 | 2634 | 2016-03-14 02:04:08 | From left to right:\nCletus, Jerome, Alejandro, Burp, & Titson\nNone know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK | 9 | 10 | None | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | True | True | True | Borzoi | 0.490783 | |
| 769 | 709158332880297985 | 470 | 2236 | 2016-03-13 23:24:56 | Meet Rodney. He's a Ukranian Boomchicka. Outside but would like to be inside. Only has one ear (unfortunate) 10/10 https://t.co/FjAj3ggXrR | 10 | 10 | Rodney | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | True | True | True | Siberian_husky | 0.212957 | |
| 770 | 708845821941387268 | 1015 | 3226 | 2016-03-13 02:43:08 | Here's a pupper with magic eyes. Not wearing a seat belt tho (irresponsible af). Very distracting to driver. 9/10 https://t.co/5DLJB4ssvI | 9 | 10 | None | pupper | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | True | True | True | Schipperke | 0.745640 |
| 771 | 708834316713893888 | 571 | 1860 | 2016-03-13 01:57:25 | Meet Malikai. He was rolling around having fun when he remembered the inevitable heat death of the universe. 10/10 https://t.co/Vd2FqHIIGn | 10 | 10 | Malikai | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | True | False | True | Eskimo_dog | 0.283945 | |
| 772 | 708810915978854401 | 7848 | 18036 | 2016-03-13 00:24:26 | This is Mister. He's a wonderful father to his two pups. Heartwarming af. 10/10 for all https://t.co/2KcuJXL2r4 | 10 | 10 | Mister | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | True | True | True | Golden_retriever | 0.976139 | |
| 773 | 708738143638450176 | 917 | 2997 | 2016-03-12 19:35:15 | This is Coco. She gets to stay on the Bachelor for another week. Super pumped 11/10 https://t.co/wsCB6LFNxD | 11 | 10 | Coco | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | True | True | True | Pomeranian | 0.933457 | |
| 774 | 708479650088034305 | 765 | 2768 | 2016-03-12 02:28:06 | Meet Bear. He's a Beneboop Cumberclap. Extremely unamused. 13/10 I'm in love with this picture https://t.co/uC8kUqAz0W | 13 | 10 | Bear | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | True | True | True | Shih-tzu | 0.218479 | |
| 775 | 708469915515297792 | 926 | 3357 | 2016-03-12 01:49:25 | This is Bobble. He's a Croatian Galifianakis. Hears everything within 400 miles. 11/10 would snug diligently https://t.co/VwDc6PTDzk | 11 | 10 | Bobble | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | True | True | True | Chihuahua | 0.748163 | |
| 776 | 708356463048204288 | 1520 | 3929 | 2016-03-11 18:18:36 | This is Oliver. That is his castle. He protects it with his life. He's also squishy af. 10/10 would squish softly https://t.co/oSuEGw0BhX | 10 | 10 | Oliver | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | True | True | False | Pug | 0.871283 | |
| 777 | 708149363256774660 | 1727 | 4672 | 2016-03-11 04:35:39 | This is Jebberson. He's the reigning hide and seek world champion. 10/10 hasn't lost his touch https://t.co/VEFkvWCoHF | 10 | 10 | Jebberson | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | True | True | True | Cardigan | 0.350993 | |
| 778 | 708130923141795840 | 943 | 3707 | 2016-03-11 03:22:23 | Please stop sending in non canines like this Guatemalan Twiggle Bunny. We only rate dogs. Only send in dogs... 11/10 https://t.co/XKhobeGuvT | 11 | 10 | None | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | True | True | True | French_bulldog | 0.710354 | |
| 779 | 708119489313951744 | 1102 | 2937 | 2016-03-11 02:36:57 | This is Cooper. He basks in the glory of rebellion. 9/10 probably a preteen https://t.co/kDamUfeIpm | 9 | 10 | Cooper | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | True | True | True | Norwich_terrier | 0.264483 | |
| 780 | 708109389455101952 | 610 | 2124 | 2016-03-11 01:56:49 | This is Remington. He was caught off guard by the magical floating cheese. Spooked af. 10/10 deep breaths pup https://t.co/mhPSADiJmZ | 10 | 10 | Remington | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.516106 | |
| 781 | 708026248782585858 | 2166 | 4799 | 2016-03-10 20:26:26 | Everybody stop what you're doing and watch this video. Frank is stuck in a loop. 13/10 (Vid by @klbmatty) https://t.co/5AJs8TIV1U | 13 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/708026062568087553/pu/img/rNhylAwIfb6YthGu.jpg | 1 | True | True | False | Malinois | 0.786468 | |
| 782 | 707969809498152960 | 1097 | 2941 | 2016-03-10 16:42:10 | Meet Rufus. He's a Honeysuckle Firefox. Curly af. Badass tie. About to go on his first date ever 11/10 good luck pup https://t.co/dGoTWNfIsm | 11 | 10 | Rufus | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | True | True | False | Toy_poodle | 0.908491 | |
| 783 | 707776935007539200 | 1079 | 3593 | 2016-03-10 03:55:45 | This is Sadie. She's a Bohemian Rhapsody. Remarkably portable. Could sneak on roller coasters with (probably). 11/10 https://t.co/DB8fyeDs8B | 11 | 10 | Sadie | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | True | True | True | Miniature_pinscher | 0.890426 | |
| 784 | 707741517457260545 | 696 | 2718 | 2016-03-10 01:35:01 | When your roommate eats your leftover Chili's but you pretend it's no big deal cuz you fat anyway. 10/10 head up pup https://t.co/0nMgoue8IR | 10 | 10 | None | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | True | True | True | Whippet | 0.738371 | |
| 785 | 707610948723478529 | 7236 | 18557 | 2016-03-09 16:56:11 | This is Harper. She scraped her elbow attempting a backflip off a tree. Valiant effort tho. 12/10 https://t.co/oHKJHghrp5 | 12 | 10 | Harper | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | True | True | True | Golden_retriever | 0.383223 | |
| 786 | 707411934438625280 | 673 | 2486 | 2016-03-09 03:45:22 | "I shall trip the big pupper with leash. Big pupper will never see it coming. I am a genius." Both 11/10 https://t.co/uQsCJ8pf51 | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | True | True | True | Lakeland_terrier | 0.738277 |
| 787 | 707387676719185920 | 1490 | 3835 | 2016-03-09 02:08:59 | Meet Clarkus. He's a Skinny Eastern Worcestershire. Can tie own shoes (impressive af) 10/10 would put on track team https://t.co/XP5o7zGn0E | 10 | 10 | Clarkus | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | True | True | True | Chihuahua | 0.888468 | |
| 788 | 707377100785885184 | 1214 | 3603 | 2016-03-09 01:26:57 | This dog just brutally murdered a snowman. Currently toying with its nutritious remains 9/10 would totally still pet https://t.co/iKThgKnW1j | 9 | 10 | None | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | True | True | True | Golden_retriever | 0.637225 | |
| 789 | 707315916783140866 | 727 | 2698 | 2016-03-08 21:23:50 | This is Finnegus. He's trapped in a snow globe. Poor pupper. 10/10 would make sure no one shook it https://t.co/BjpOa52jQ4 | 10 | 10 | Finnegus | pupper | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | True | True | True | Bernese_mountain_dog | 0.979235 |
| 790 | 707297311098011648 | 903 | 3022 | 2016-03-08 20:09:54 | This is Cassie. She can go from sweet to scary af in a matter of seconds. 10/10 points deducted for cats on pajamas https://t.co/B6dmZmJBdK | 10 | 10 | Cassie | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | True | True | False | Blenheim_spaniel | 0.370717 | |
| 791 | 707059547140169728 | 759 | 2796 | 2016-03-08 04:25:07 | Say hello to Cupcake. She's an Icelandic Dippen Dot. Confused by the oddly geometric lawn pattern. 11/10 https://t.co/D7rorf4YKL | 11 | 10 | Cupcake | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | True | True | True | Samoyed | 0.897312 | |
| 792 | 707038192327901184 | 900 | 2404 | 2016-03-08 03:00:15 | This is Kathmandu. He sees every move you make. Probably knows Jiu-Jitsu. 10/10 mysterious af https://t.co/z0cs7E4Xjj | 10 | 10 | Kathmandu | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | True | False | True | Pug | 0.642426 | |
| 793 | 707021089608753152 | 1540 | 4433 | 2016-03-08 01:52:18 | This is Tucker. He's a Dasani Episcopalian. Good lord what a tongue. 12/10 would never let go of https://t.co/gHtW5cgyy7 | 12 | 10 | Tucker | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | True | True | True | Cocker_spaniel | 0.559658 | |
| 794 | 707014260413456384 | 664 | 2502 | 2016-03-08 01:25:10 | This is Ellie. She requests to be carried around in a lacrosse stick at all times. 11/10 impossible to say no https://t.co/15yCmd43zU | 11 | 10 | Ellie | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | True | True | True | Chihuahua | 0.583780 | |
| 795 | 706681918348251136 | 1103 | 3627 | 2016-03-07 03:24:33 | Say hello to Katie. She's a Mitsubishi Hufflepuff. Curly af. 12/10 I'd do terrible things to acquire such a pup https://t.co/CFPIcGcwJv | 12 | 10 | Katie | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | True | True | True | Toy_poodle | 0.717584 | |
| 796 | 706538006853918722 | 1580 | 3778 | 2016-03-06 17:52:42 | This is Oliver (pronounced "Ricardo"). He's a ship captain. Controls these treacherous waters. 11/10 would sail with https://t.co/bxjO45rXKd | 11 | 10 | Oliver | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | True | True | True | Chow | 0.541794 | |
| 797 | 706516534877929472 | 1150 | 3404 | 2016-03-06 16:27:23 | Please enjoy this pup in a cooler. Permanently ready for someone to throw a tennis ball his way. 12/10 https://t.co/KUS0xl7XIp | 12 | 10 | None | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | True | True | False | Golden_retriever | 0.772685 | |
| 798 | 706346369204748288 | 1035 | 3768 | 2016-03-06 05:11:12 | This is Koda. She's a Beneboom Cumberwiggle. 12/10 petable as hell https://t.co/VZV6oMJmU6 | 12 | 10 | Koda | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | True | True | True | Tibetan_mastiff | 0.956462 | |
| 799 | 706310011488698368 | 9034 | 23443 | 2016-03-06 02:46:44 | Here's a very sleepy pupper. Thinks it's an airplane. 12/10 would snug for eternity https://t.co/GGmcTIkBbf | 12 | 10 | None | pupper | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | True | True | True | Pembroke | 0.698165 |
| 800 | 706291001778950144 | 522 | 1861 | 2016-03-06 01:31:11 | When you're just relaxin and having a swell time but then remember you have to fill out the FAFSA ...11/10 https://t.co/qy33OBcexg | 11 | 10 | None | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | True | True | True | Border_terrier | 0.587101 | |
| 801 | 706265994973601792 | 1030 | 2979 | 2016-03-05 23:51:49 | This is Kara. She's been trying to solve that thing for 3 days. "I don't have thumbs," she said. 11/10 solid effort https://t.co/lA6a8GefrV | 11 | 10 | Kara | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | True | True | True | Papillon | 0.743715 | |
| 802 | 706166467411222528 | 1819 | 5636 | 2016-03-05 17:16:20 | This is Dexter. He's a shy pup. Doesn't bark much. Dreadful fetcher. Has rare sun allergy. 7/10 still petable https://t.co/sA7P3JSqiv | 7 | 10 | Dexter | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | True | True | True | Samoyed | 0.430418 | |
| 803 | 705975130514706432 | 842 | 3397 | 2016-03-05 04:36:02 | This is Adele. Her tongue flies out of her mouth at random. It's a debilitating illness. 10/10 stay strong pupper https://t.co/cfn81n3FLO | 10 | 10 | Adele | pupper | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.587764 |
| 804 | 705970349788291072 | 1008 | 3440 | 2016-03-05 04:17:02 | This is Lucy. She's a Venetian Kerploof. Supposed to be navigating. Quite irresponsible. Fancy ass collar tho 12/10 https://t.co/8tjnz1L8DI | 12 | 10 | Lucy | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | True | True | True | Golden_retriever | 0.776346 | |
| 805 | 705898680587526145 | 643 | 2597 | 2016-03-04 23:32:15 | Meet Max. He's a Fallopian Cephalopuff. Eyes are magical af. Lil dandruff problem. No big deal 10/10 would still pet https://t.co/c67nUjwmFs | 10 | 10 | Max | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | True | True | True | Collie | 0.808276 | |
| 806 | 705591895322394625 | 1308 | 3475 | 2016-03-04 03:13:11 | "Ma'am, for the last time, I'm not authorized to make that type of transaction" 11/10 https://t.co/nPTBsdm3BF | 11 | 10 | None | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | True | True | True | Basenji | 0.877207 | |
| 807 | 705475953783398401 | 1045 | 3231 | 2016-03-03 19:32:29 | Say hello to Zara. She found a sandal and couldn't be happier. 12/10 great work https://t.co/zQUuVu812n | 12 | 10 | Zara | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | True | True | False | Golden_retriever | 0.908784 | |
| 808 | 705442520700944385 | 1859 | 4877 | 2016-03-03 17:19:38 | This is Cooper. He only wakes up to switch gears. 12/10 helpful af https://t.co/EEIkAGVY64 | 12 | 10 | Cooper | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | True | True | False | Great_pyrenees | 0.309106 | |
| 809 | 705428427625635840 | 1931 | 4188 | 2016-03-03 16:23:38 | This is Ambrose. He's an Alfalfa Ballyhoo. Draws pistol fast af. Pretty much runs the frontier. 11/10 lethal pupper https://t.co/ih6epBOxIA | 11 | 10 | Ambrose | pupper | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | True | False | True | Chihuahua | 0.774792 |
| 810 | 705239209544720384 | 854 | 3290 | 2016-03-03 03:51:44 | This is Jimothy. He lost his body during the the Third Crusade (tragic). 11/10 heroic af tho https://t.co/wnsblfu7XE | 11 | 10 | Jimothy | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | True | True | True | Chihuahua | 0.157950 | |
| 811 | 705102439679201280 | 585 | 2342 | 2016-03-02 18:48:16 | This is Terrenth. He just stubbed his toe. 10/10 deep breaths Terrenth https://t.co/Pg18CDFC7Z | 10 | 10 | Terrenth | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | True | True | True | Collie | 0.457672 | |
| 812 | 705066031337840642 | 683 | 2378 | 2016-03-02 16:23:36 | This is Reese. He's a Chilean Sohcahtoa. Loves to swing. Never sure what to do with his feet. 12/10 huggable af https://t.co/VA6jnNUyuW | 12 | 10 | Reese | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | True | True | True | Airedale | 0.868658 | |
| 813 | 704871453724954624 | 1245 | 4585 | 2016-03-02 03:30:25 | I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU | 12 | 10 | None | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | True | True | True | Norfolk_terrier | 0.689504 | |
| 814 | 704859558691414016 | 612 | 2462 | 2016-03-02 02:43:09 | Here is a heartbreaking scene of an incredible pupper being laid to rest. 10/10 RIP pupper https://t.co/81mvJ0rGRu | 10 | 10 | NaN | pupper | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | True | False | False | Pug | 0.284428 |
| 815 | 704847917308362754 | 1727 | 5594 | 2016-03-02 01:56:53 | "Yes hi could I get a number 4 with no pickles" ...12/10 https://t.co/kQPVxqA3gq | 12 | 10 | None | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | True | True | True | Golden_retriever | 0.857240 | |
| 816 | 704499785726889984 | 1124 | 3212 | 2016-03-01 02:53:32 | When you wake up from a long nap and have no idea who you are. 12/10 https://t.co/dlF93GLnDc | 12 | 10 | None | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | True | False | True | Chihuahua | 0.376541 | |
| 817 | 704480331685040129 | 1197 | 3723 | 2016-03-01 01:36:14 | Meet Lucia. She's a Cumulonimbus Floofmallow. Only has two legs tho (unfortunate). 11/10 would definitely still pet https://t.co/qv6qlEUCEe | 11 | 10 | Lucia | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | True | True | False | Samoyed | 0.979206 | |
| 818 | 704364645503647744 | 3999 | 8804 | 2016-02-29 17:56:32 | Say hello to Bisquick. He's a Beneplop Cumbersnug. Even smiles when wet. 12/10 I'd steal Bisquick https://t.co/5zX5XD3i6K | 12 | 10 | Bisquick | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | True | True | True | Pembroke | 0.980695 | |
| 819 | 704347321748819968 | 393 | 1729 | 2016-02-29 16:47:42 | This is Ralphson. He's very confused. Wondering why he's sitting on Santa's lap in February. 10/10 stay woke pupper https://t.co/INphk4ltkZ | 10 | 10 | Ralphson | pupper | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | False | False | True | Teddy | 0.233378 |
| 820 | 704054845121142784 | 1028 | 3201 | 2016-02-28 21:25:30 | Here is a whole flock of puppers. 60/50 I'll take the lot https://t.co/9dpcw6MdWa | 12 | 10 | NaN | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | True | True | True | Great_pyrenees | 0.667939 | |
| 821 | 703774238772166656 | 526 | 2020 | 2016-02-28 02:50:28 | "YOU CAN'T HANDLE THE TRUTH" both 10/10 https://t.co/ZvxdB4i9AG | 10 | 10 | None | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | True | True | True | Labrador_retriever | 0.990119 | |
| 822 | 703769065844768768 | 1276 | 3621 | 2016-02-28 02:29:55 | When you're trying to watch your favorite tv show but your friends keep interrupting. 10/10 relatable af https://t.co/QQZDCYl6zT | 10 | 10 | None | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | True | True | True | Boxer | 0.838994 | |
| 823 | 703611486317502464 | 1709 | 4229 | 2016-02-27 16:03:45 | Meet Scooter. He's experiencing the pupper equivalent of dropping ur phone in a toilet 10/10 put it in some rice pup https://t.co/JSmX1FIEaW | 10 | 10 | Scooter | pupper | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | True | True | True | Pembroke | 0.756441 |
| 824 | 703425003149250560 | 1559 | 4162 | 2016-02-27 03:42:44 | Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC | 9 | 10 | None | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | True | False | True | Miniature_pinscher | 0.292866 | |
| 825 | 703382836347330562 | 1285 | 3837 | 2016-02-27 00:55:11 | This is Charlie. He's a West Side Niddlewog. Mucho fluffy. 12/10 would pet so damn well https://t.co/B9dOrmnPVt | 12 | 10 | Charlie | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | True | True | True | Golden_retriever | 0.945664 | |
| 826 | 703356393781329922 | 429 | 2085 | 2016-02-26 23:10:06 | This is Socks. That water pup w the super legs just splashed him. Socks did not appreciate that. 9/10 and 2/10 https://t.co/8rc5I22bBf | 9 | 10 | Socks | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | True | True | True | Border_collie | 0.894842 | |
| 827 | 703079050210877440 | 3494 | 8064 | 2016-02-26 04:48:02 | This is a Butternut Cumberfloof. It's not windy they just look like that. 11/10 back at it again with the red socks https://t.co/hMjzhdUHaW | 11 | 10 | NaN | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | True | True | True | Pembroke | 0.778503 | |
| 828 | 702684942141153280 | 1215 | 3516 | 2016-02-25 02:42:00 | This is Lucy. She's sick of these bullshit generalizations 11/10 https://t.co/d2b5C2R0aO | 11 | 10 | Lucy | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | True | True | True | Golden_retriever | 0.514085 | |
| 829 | 702671118226825216 | 634 | 2398 | 2016-02-25 01:47:04 | Meet Rambo & Kiwi. Rambo's the pup with the sharp toes & rad mohawk. One stays woke while one sleeps. 10/10 for both https://t.co/MpH1Fe9LhZ | 10 | 10 | Rambo | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | True | True | True | Bloodhound | 0.381227 | |
| 830 | 702598099714314240 | 3712 | 11332 | 2016-02-24 20:56:55 | This is Sansa. She's gotten too big for her chair. Not so smol anymore. 11/10 once a pupper, always a pupper https://t.co/IpAoztle2s | 11 | 10 | Sansa | pupper | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | True | False | False | Kelpie | 0.219179 |
| 831 | 702539513671897089 | 1091 | 3134 | 2016-02-24 17:04:07 | This is a Wild Tuscan Poofwiggle. Careful not to startle. Rare tongue slip. One eye magical. 12/10 would def pet https://t.co/4EnShAQjv6 | 12 | 10 | NaN | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | True | True | True | Pomeranian | 0.714367 | |
| 832 | 702321140488925184 | 1156 | 3604 | 2016-02-24 02:36:23 | Please enjoy this picture as much as I did. 12/10 https://t.co/7u8mM99Tj5 | 12 | 10 | None | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | True | True | True | West_highland_white_terrier | 0.769159 | |
| 833 | 702276748847800320 | 860 | 2706 | 2016-02-23 23:39:59 | "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOVE YOUUUUU" 11/10 https://t.co/rSNCEiTtfI | 11 | 10 | None | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | True | True | True | Boston_bull | 0.697303 | |
| 834 | 702217446468493312 | 1526 | 5268 | 2016-02-23 19:44:20 | I know it's tempting, but please stop sending in pics of Donald Trump. Thank you ...9/10 https://t.co/y35Y1TJERY | 9 | 10 | None | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | True | True | True | Golden_retriever | 0.242419 | |
| 835 | 701981390485725185 | 1106 | 3755 | 2016-02-23 04:06:20 | This is Fiji. She's a Powdered Stegafloof. Very rare. 12/10 https://t.co/fZRob6eotY | 12 | 10 | Fiji | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | True | False | True | Pomeranian | 0.491022 | |
| 836 | 701952816642965504 | 1149 | 4167 | 2016-02-23 02:12:47 | Meet Rilo. He's a Northern Curly Ticonderoga. Currently balancing on one paw even in strong wind. Acrobatic af 11/10 https://t.co/KInss2PXyX | 11 | 10 | Rilo | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | True | True | True | Toy_poodle | 0.331707 | |
| 837 | 701889187134500865 | 1558 | 3905 | 2016-02-22 21:59:57 | This is Bilbo. He's not emotionally prepared to enter the water. 11/10 don't struggle Bilbo https://t.co/rH9SQgZUnQ | 11 | 10 | Bilbo | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | True | True | False | French_bulldog | 0.902856 | |
| 838 | 701601587219795968 | 523 | 2299 | 2016-02-22 02:57:08 | This is Coopson. He's a Blingin Schnitzel. Built fence himself. One ear is slightly defective. 10/10 would still pet https://t.co/MWw3pVMhJA | 10 | 10 | Coopson | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | True | True | True | Chihuahua | 0.993661 | |
| 839 | 701570477911896070 | 1055 | 3080 | 2016-02-22 00:53:31 | This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx | 9 | 10 | Yoda | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | True | True | True | Yorkshire_terrier | 0.907990 | |
| 840 | 701545186879471618 | 680 | 2902 | 2016-02-21 23:13:01 | Meet Millie. She's practicing her dive form for Rio. It's nearly perfect. Dedicated af. 10/10 go for gold pupper https://t.co/SDVkc4m96M | 10 | 10 | Millie | pupper | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | True | True | True | Border_collie | 0.280893 |
| 841 | 701214700881756160 | 5812 | 13475 | 2016-02-21 01:19:47 | I'm not sure what's happening here, but it's pretty spectacular. 12/10 for both https://t.co/JKXh0NbBNL | 12 | 10 | None | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | True | True | True | Chihuahua | 0.615163 | |
| 842 | 700864154249383937 | 685 | 2828 | 2016-02-20 02:06:50 | "Pupper is a present to world. Here is a bow for pupper." 12/10 precious as hell https://t.co/ItSsE92gCW | 12 | 10 | NaN | pupper | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | True | True | True | Kuvasz | 0.805857 |
| 843 | 700847567345688576 | 558 | 2637 | 2016-02-20 01:00:55 | Meet Crouton. He's a Galapagos Boonwiddle. Has a legendary tongue (most Boonwiddles do). Excellent stuff 10/10 https://t.co/110Eeg7KW3 | 10 | 10 | Crouton | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | True | True | True | Rhodesian_ridgeback | 0.252514 | |
| 844 | 700747788515020802 | 10673 | 25130 | 2016-02-19 18:24:26 | We only rate dogs. Pls stop sending in non-canines like this Mongolian grass snake. This is very frustrating. 11/10 https://t.co/22x9SbCYCU | 11 | 10 | NaN | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | True | True | True | Great_pyrenees | 0.481333 | |
| 845 | 700518061187723268 | 915 | 2887 | 2016-02-19 03:11:35 | This is Vincent. He's the man your girl is with when she's not with you. 10/10 https://t.co/JQGMP7kzjD | 10 | 10 | Vincent | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.569501 | |
| 846 | 700167517596164096 | 836 | 2903 | 2016-02-18 03:58:39 | This is Dotsy. She's stuck as hell. 10/10 https://t.co/A0h4lnhU4s | 10 | 10 | Dotsy | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | True | True | True | Beagle | 0.162585 | |
| 847 | 700143752053182464 | 3129 | 8282 | 2016-02-18 02:24:13 | When it's Janet from accounting's birthday but you can't eat the cake cuz it's chocolate. 10/10 hang in there pupper https://t.co/Fbdr5orUrJ | 10 | 10 | None | pupper | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | True | False | False | Golden_retriever | 0.532460 |
| 848 | 700029284593901568 | 661 | 2262 | 2016-02-17 18:49:22 | This is Coops. His ship is taking on water. Sound the alarm. Much distress. Requesting immediate assistance. 10/10 https://t.co/8Nuny4lLE3 | 10 | 10 | Coops | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | True | True | True | West_highland_white_terrier | 0.726571 | |
| 849 | 700002074055016451 | 1529 | 3627 | 2016-02-17 17:01:14 | This is Thumas. He covered himself in nanners for maximum camouflage. It didn't work. I can still see u Thumas. 9/10 https://t.co/x0ZDlNqfb1 | 9 | 10 | Thumas | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | True | True | True | Chihuahua | 0.369488 | |
| 850 | 699801817392291840 | 1088 | 3345 | 2016-02-17 03:45:29 | This is Cooper. He began to tear up when his bone was taken from him. 11/10 stay strong pupper https://t.co/qI8yvqKG02 | 11 | 10 | Cooper | pupper | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | True | True | True | Golden_retriever | 0.808978 |
| 851 | 699788877217865730 | 557 | 2458 | 2016-02-17 02:54:04 | Say hello to Nala. She's a Freckled High Bruschetta. Petable af. 12/10 https://t.co/5bjrIRqByp | 12 | 10 | Nala | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | True | True | True | Border_terrier | 0.355060 | |
| 852 | 699779630832685056 | 1397 | 3039 | 2016-02-17 02:17:19 | Take all my money. 10/10 https://t.co/B28ebc5LzQ | 10 | 10 | None | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | True | True | True | Malinois | 0.706038 | |
| 853 | 699775878809702401 | 690 | 2150 | 2016-02-17 02:02:25 | Meet Fillup. Spaghetti is his main weakness. Also pissed because he's rewarded with cat treats 11/10 it'll be ok pup https://t.co/TEHu55ZQKD | 11 | 10 | Fillup | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | True | True | True | Dandie_dinmont | 0.271683 | |
| 854 | 699446877801091073 | 2938 | 6515 | 2016-02-16 04:15:05 | This is Archie. He's undercover in all these pics. Not actually a bee, cow, or Hawaiian. Sneaky af. 12/10 https://t.co/9fojElzIxx | 12 | 10 | Archie | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | True | True | True | Pembroke | 0.969400 | |
| 855 | 699434518667751424 | 577 | 2384 | 2016-02-16 03:25:58 | I know this is a tad late but here's a wonderful Valentine's Day pupper 12/10 https://t.co/hTE2PEwGvi | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | True | True | True | Golden_retriever | 0.836572 |
| 856 | 699423671849451520 | 383 | 1505 | 2016-02-16 02:42:52 | "Don't ever talk to me or my son again." ...both 10/10 https://t.co/b8ncwl6TlE | 10 | 10 | None | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | True | True | True | Pug | 0.997860 | |
| 857 | 699413908797464576 | 688 | 2258 | 2016-02-16 02:04:04 | Meet Miley. She's a Scandinavian Hollabackgirl. Incalculably fluffy, unamused af. 11/10 would squeeze aggressively https://t.co/6r4GFZY5WS | 11 | 10 | Miley | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | True | True | True | Samoyed | 0.517479 | |
| 858 | 699370870310113280 | 497 | 2053 | 2016-02-15 23:13:03 | Say hello to Calbert. He doesn't have enough legs. Wtf Calbert. Still havin a blast tho. 11/10 would pet extra well https://t.co/iNFIHvcVur | 11 | 10 | Calbert | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | True | True | True | Cairn | 0.337557 | |
| 859 | 699323444782047232 | 983 | 3466 | 2016-02-15 20:04:36 | "I'm bathing the children what do you want?" ...both 10/10 https://t.co/Rizm1LWh4z | 10 | 10 | None | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | True | False | False | Labrador_retriever | 0.309696 | |
| 860 | 699079609774645248 | 745 | 2677 | 2016-02-15 03:55:41 | Meet Reagan. He's a Persnicketus Derpson. Great with kids. Permanently caught off guard. 8/10 https://t.co/A2j2StfNgL | 8 | 10 | Reagan | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | True | True | True | Schipperke | 0.667324 | |
| 861 | 699072405256409088 | 1325 | 3296 | 2016-02-15 03:27:04 | ERMAHGERD 12/10 please enjoy https://t.co/7WrAWKdBac | 12 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/699072391083880449/pu/img/fMp1-dvLMeio1Kzk.jpg | 1 | True | True | True | Shih-tzu | 0.599587 | |
| 862 | 699036661657767936 | 1345 | 2863 | 2016-02-15 01:05:02 | HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 for all https://t.co/7u6VnZ1UFe | 13 | 10 | None | pupper | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | True | False | True | Chihuahua | 0.222943 |
| 863 | 698989035503689728 | 1113 | 3701 | 2016-02-14 21:55:47 | This is Oliver. He does toe touches in his sleep. 13/10 precious af https://t.co/3BrRIWjG35 | 13 | 10 | Oliver | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | True | True | True | Norfolk_terrier | 0.246340 | |
| 864 | 698953797952008193 | 1020 | 2975 | 2016-02-14 19:35:46 | Meet CeCe. She wanted to take a selfie before her first day as a lumberjack. 11/10 crushing traditional gender roles https://t.co/oW9XMYG3F4 | 11 | 10 | CeCe | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | True | True | False | Italian_greyhound | 0.382378 | |
| 865 | 698907974262222848 | 699 | 2787 | 2016-02-14 16:33:40 | This dog is never sure if he's doing the right thing. 10/10 https://t.co/GXq43zFfBu | 10 | 10 | None | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | True | True | True | German_short-haired_pointer | 0.983131 | |
| 866 | 698710712454139905 | 774 | 2710 | 2016-02-14 03:29:49 | This is Cuddles. He's not entirely sure how doors work. 10/10 I believe in you Cuddles https://t.co/rKjK88D05Z | 10 | 10 | Cuddles | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | True | False | False | Samoyed | 0.329895 | |
| 867 | 698703483621523456 | 425 | 1608 | 2016-02-14 03:01:06 | This is Rusty. He has no respect for POULTRY products. Unbelievable af. 7/10 would still pet https://t.co/hEH19t1eFp | 7 | 10 | Rusty | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | True | True | True | Brittany_spaniel | 0.931963 | |
| 868 | 698635131305795584 | 388 | 1400 | 2016-02-13 22:29:29 | Here we are witnessing five Guatemalan Birch Floofs in their natural habitat. All 12/10 (Vid by @pootdanielle) https://t.co/rb8nzVNh7F | 12 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/698635005506015234/pu/img/wQ4yFXTZ-2QLt68b.jpg | 1 | True | True | True | Samoyed | 0.158464 | |
| 869 | 698549713696649216 | 704 | 2536 | 2016-02-13 16:50:04 | This is Claude. He's trying to be seductive but he forgot to turn on the fireplace. 9/10 damn it Claude https://t.co/EPdQquc1dG | 9 | 10 | Claude | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | True | True | True | French_bulldog | 0.998544 | |
| 870 | 698355670425473025 | 516 | 2046 | 2016-02-13 03:59:01 | This is Jessiga. She's a Tasmanian McCringleberry. Selfies make her uncomfortable. 10/10 would pet in time of need https://t.co/MrdPZz1CGk | 10 | 10 | Jessiga | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | True | True | False | Pug | 0.990191 | |
| 871 | 698342080612007937 | 1074 | 2485 | 2016-02-13 03:05:01 | This is Maximus. He's training for the tetherball world championship. The grind never stops. 11/10 (vid by @Amuly21) https://t.co/VmFfWMjNkp | 11 | 10 | Maximus | https://pbs.twimg.com/ext_tw_video_thumb/698341973569245184/pu/img/Sj3A2vSfbKWSv61T.jpg | 1 | True | True | True | Boxer | 0.883048 | |
| 872 | 698262614669991936 | 2268 | 5214 | 2016-02-12 21:49:15 | This is Franklin. He's a yoga master. Trying to get rid of those rolls. Dedicated af. 11/10 keep it up pup https://t.co/S712MJXulD | 11 | 10 | Franklin | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | True | True | True | Italian_greyhound | 0.107948 | |
| 873 | 698195409219559425 | 6750 | 18408 | 2016-02-12 17:22:12 | Meet Beau & Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https://t.co/GPaoH5qWEk | 9 | 10 | Beau | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | True | True | True | Labrador_retriever | 0.643690 | |
| 874 | 698178924120031232 | 830 | 3084 | 2016-02-12 16:16:41 | This is Lily. She accidentally dropped all her Kohl's cash overboard. Day officially ruined. 10/10 hang in there pup https://t.co/BJbtCqGwZK | 10 | 10 | Lily | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.351868 | |
| 875 | 697995514407682048 | 372 | 1665 | 2016-02-12 04:07:53 | "Dammit hooman quit playin I jus wanna wheat thin" 11/10 https://t.co/yAASRDPJnQ | 11 | 10 | None | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.280222 | |
| 876 | 697990423684476929 | 1451 | 3592 | 2016-02-12 03:47:39 | This is Doug. He's a Draconian Jabbawockee. Rad tongue. Ears are borderline legendary 11/10 would pet with a purpose https://t.co/MVvbQW88Pv | 11 | 10 | Doug | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | True | True | True | Pembroke | 0.984783 | |
| 877 | 697943111201378304 | 776 | 2638 | 2016-02-12 00:39:39 | This is Cassie. She goes door to door trying to find the owner of this baguette. No luck so far. 10/10 https://t.co/e8bj97CisO | 10 | 10 | Cassie | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | True | True | True | Great_dane | 0.126924 | |
| 878 | 697616773278015490 | 1144 | 3467 | 2016-02-11 03:02:54 | This pupper doubles as a hallway rug. Very rare. Versatile af. 11/10 https://t.co/Jxd5pR02Cn | 11 | 10 | None | pupper | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | True | True | True | Lhasa | 0.521931 |
| 879 | 697596423848730625 | 1425 | 3306 | 2016-02-11 01:42:02 | Here's a pupper with a piece of pizza. Two of everybody's favorite things in one photo. 11/10 https://t.co/5USjFjKI7Z | 11 | 10 | None | pupper | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | True | True | True | Shetland_sheepdog | 0.621668 |
| 880 | 697463031882764288 | 1552 | 3748 | 2016-02-10 16:51:59 | Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ | 11 | 10 | None | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | True | True | True | Labrador_retriever | 0.999885 | |
| 881 | 697270446429966336 | 2087 | 5131 | 2016-02-10 04:06:43 | This is Bentley. He got stuck on his 3rd homework problem. Picturing the best case scenario if he drops out. 10/10 https://t.co/7rS33sCKMS | 10 | 10 | Bentley | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | True | True | True | Toy_poodle | 0.880014 | |
| 882 | 697259378236399616 | 1136 | 3611 | 2016-02-10 03:22:44 | Please stop sending in saber-toothed tigers. This is getting ridiculous. We only rate dogs.\n...8/10 https://t.co/iAeQNueou8 | 8 | 10 | NaN | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | True | True | True | Great_dane | 0.999223 | |
| 883 | 697255105972801536 | 1315 | 3316 | 2016-02-10 03:05:46 | Meet Charlie. He likes to kiss all the big milk dogs with the rad earrings. Passionate af. 10/10 just a great guy https://t.co/Oe0XSGmfoP | 10 | 10 | Charlie | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | True | True | True | Great_dane | 0.173989 | |
| 884 | 696900204696625153 | 1156 | 3492 | 2016-02-09 03:35:31 | This is Rosie. She's a Benebark Cumberpatch. Sleepy af. 12/10 would snug for days https://t.co/NKuON5Al8i | 12 | 10 | Rosie | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | True | True | True | Chihuahua | 0.297735 | |
| 885 | 696894894812565505 | 758 | 2594 | 2016-02-09 03:14:25 | These two pirates crashed their ship and don't know what to do now. Very irresponsible of them. Both 9/10 https://t.co/RJvUjgGH5z | 9 | 10 | None | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | True | True | True | Appenzeller | 0.665628 | |
| 886 | 696886256886657024 | 2016 | 5317 | 2016-02-09 02:40:05 | Guys I found the dog from Up. 12/10 https://t.co/WqoZtX9jmJ | 12 | 10 | None | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | True | True | False | Kuvasz | 0.383941 | |
| 887 | 696488710901260288 | 1166 | 2788 | 2016-02-08 00:20:23 | 12/10 revolutionary af https://t.co/zKzq4nIY86 | 12 | 10 | None | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | True | True | True | Briard | 0.369063 | |
| 888 | 696405997980676096 | 1284 | 3531 | 2016-02-07 18:51:43 | This is Berb. He just found out that they have made 31 Kidz Bop CD's. Downright terrifying. 7/10 hang in there Berb https://t.co/CIFLjiTFwZ | 7 | 10 | Berb | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | True | True | True | Borzoi | 0.132845 | |
| 889 | 695816827381944320 | 1320 | 3287 | 2016-02-06 03:50:33 | Here's a dog enjoying a sunset. 11/10 would trade lives with https://t.co/VsQdLxrv9h | 11 | 10 | None | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | True | True | False | Pomeranian | 0.382234 | |
| 890 | 695794761660297217 | 880 | 3490 | 2016-02-06 02:22:53 | This is Wyatt. His throne is modeled after him. 13/10 Wyatt is a very big deal https://t.co/PccQ1CFEDd | 13 | 10 | Wyatt | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | True | False | False | Samoyed | 0.962139 | |
| 891 | 695767669421768709 | 854 | 2060 | 2016-02-06 00:35:13 | If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG | 13 | 10 | None | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.805139 | |
| 892 | 695629776980148225 | 2377 | 5020 | 2016-02-05 15:27:17 | Meet Calvin. He's proof that degrees mean absolutely nothing. 8/10 straighten up pup https://t.co/NIvxgSQ9BS | 8 | 10 | Calvin | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | True | True | True | Old_english_sheepdog | 0.693857 | |
| 893 | 695446424020918272 | 2026 | 4787 | 2016-02-05 03:18:42 | We normally don't rate unicorns but this one has 3 ears so it must be super rare. 12/10 majestic af https://t.co/f9qlKiv39T | 12 | 10 | None | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | True | True | True | Basenji | 0.748904 | |
| 894 | 695409464418041856 | 4017 | 9460 | 2016-02-05 00:51:51 | This is Bob. He just got back from his job interview and realized his ear was inside-out the whole time. 10/10 https://t.co/lORINwFXIV | 10 | 10 | Bob | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | True | True | True | Pug | 0.997445 | |
| 895 | 695314793360662529 | 1675 | 4004 | 2016-02-04 18:35:39 | This is Colin. He really likes green beans. It's tearing his family apart. 10/10 please pray for Colin https://t.co/ioFy0cmK03 | 10 | 10 | Colin | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | True | True | True | Maltese_dog | 0.678547 | |
| 896 | 695095422348574720 | 684 | 2888 | 2016-02-04 04:03:57 | This is just a beautiful pupper good shit evolution. 12/10 https://t.co/2L8pI0Z2Ib | 12 | 10 | NaN | pupper | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | True | True | True | Papillon | 0.227784 |
| 897 | 695074328191332352 | 1239 | 3116 | 2016-02-04 02:40:08 | This is Lorenzo. He's educated af. Just graduated college. 11/10 poor pupper can't even comprehend his debt https://t.co/dH3GzcjCtQ | 11 | 10 | Lorenzo | pupper | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | True | True | True | Shih-tzu | 0.510106 |
| 898 | 695051054296211456 | 885 | 2918 | 2016-02-04 01:07:39 | Meet Brian (pronounced "Kirk"). He's not amused by ur churlish tomfoolery. Once u put him down you're done for. 6/10 https://t.co/vityMwPKKi | 6 | 10 | Brian | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | True | True | True | Boston_bull | 0.761454 | |
| 899 | 694352839993344000 | 700 | 2244 | 2016-02-02 02:53:12 | Meet Oliviér. He takes killer selfies. Has a dog of his own. It leaps at random & can't bark for shit. 10/10 & 5/10 https://t.co/6NgsQJuSBJ | 10 | 10 | Oliviér | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | True | True | True | Australian_terrier | 0.407886 | |
| 900 | 694329668942569472 | 569 | 2203 | 2016-02-02 01:21:07 | Meet Grady. He's very hungry. Too bad no one can find his food bowl. 9/10 poor pupper https://t.co/oToIkYnEGn | 9 | 10 | Grady | pupper | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | True | True | True | Boxer | 0.990060 |
| 901 | 694206574471057408 | 2297 | 4582 | 2016-02-01 17:11:59 | "Martha come take a look at this. I'm so fed up with the media's unrealistic portrayal of dogs these days." 10/10 https://t.co/Sd4qAdSRqI | 10 | 10 | None | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | True | True | True | Shih-tzu | 0.352547 | |
| 902 | 694183373896572928 | 1040 | 3236 | 2016-02-01 15:39:48 | This is Lola. She realized mid hug that she's not ready for a committed relationship with a teddy bear. 9/10 https://t.co/pVebzwRioD | 9 | 10 | Lola | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | False | True | True | Teddy | 0.441499 | |
| 903 | 694001791655137281 | 1176 | 3705 | 2016-02-01 03:38:15 | This is Chester. He's a Benefloof Cumberbark. Fabulous ears. Nifty shirt. Was probably on sale. Nice hardwood. 11/10 https://t.co/YoII7tWXMT | 11 | 10 | Chester | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | True | True | True | Pembroke | 0.769999 | |
| 904 | 693942351086120961 | 413 | 1896 | 2016-01-31 23:42:03 | This is Kobe. He's a Speckled Rorschach. Requests that someone holds his hand during car rides. 10/10 sick interior https://t.co/LCA6Fr3X2M | 10 | 10 | Kobe | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | True | True | True | Groenendael | 0.550796 | |
| 905 | 693642232151285760 | 472 | 2790 | 2016-01-31 03:49:30 | Meet Freddery. He's a Westminster Toblerone. Seems to enjoy car rides. 9/10 would pat on the head approvingly https://t.co/6BS9XEip9a | 9 | 10 | Freddery | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | True | True | True | Scottish_deerhound | 0.111893 | |
| 906 | 693629975228977152 | 894 | 2685 | 2016-01-31 03:00:47 | This pupper is afraid of its own feet. 12/10 would comfort https://t.co/Tn9Mp0oPoJ | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | True | True | True | Pug | 0.841987 |
| 907 | 693622659251335168 | 422 | 1691 | 2016-01-31 02:31:43 | When you keepin the popcorn bucket in your lap and she reach for some... 10/10 https://t.co/a1IrjaID3X | 10 | 10 | None | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | True | True | True | Malamute | 0.449298 | |
| 908 | 693280720173801472 | 1403 | 3669 | 2016-01-30 03:52:58 | This is Sadie and her 2 pups Shebang & Ruffalo. Sadie says single parenting is challenging but rewarding. All 10/10 https://t.co/UzbhwXcLne | 10 | 10 | Sadie | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | True | True | False | Labrador_retriever | 0.340008 | |
| 909 | 693262851218264065 | 568 | 2459 | 2016-01-30 02:41:58 | I hope you guys enjoy this beautiful snowy pupper as much as I did. 11/10 https://t.co/DYUsHtL2aR | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | True | True | True | Golden_retriever | 0.989333 |
| 910 | 693231807727280129 | 841 | 3133 | 2016-01-30 00:38:37 | This is Bodie. He's not proud of what he did, but it needed to be done. 9/10 eight days was a pretty good streak tbh https://t.co/bpZsGMqVVP | 9 | 10 | Bodie | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | True | True | True | Vizsla | 0.876413 | |
| 911 | 693155686491000832 | 3622 | 8668 | 2016-01-29 19:36:08 | This is Dunkin. He can only see when he's wet (tragic). 12/10 future heartbreaker https://t.co/At8Kxc5H9U | 12 | 10 | Dunkin | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | True | True | True | Shih-tzu | 0.697480 | |
| 912 | 693109034023534592 | 695 | 1889 | 2016-01-29 16:30:45 | "Thank you friend that was a swell petting" 11/10 (vid by @MatthewjamesMac) https://t.co/NY3cPAZAIM | 11 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/693108992730632192/pu/img/ncJQQZf3eroMSF12.jpg | 1 | True | True | True | Cocker_spaniel | 0.740013 | |
| 913 | 693095443459342336 | 523 | 2056 | 2016-01-29 15:36:45 | This is Milo. He doesn't understand your fancy human gestures. Will lick instead. 10/10 can't faze this pupper https://t.co/OhodPIDOpW | 10 | 10 | Milo | pupper | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | False | False | True | Ice_lolly | 0.660099 |
| 914 | 692919143163629568 | 838 | 2926 | 2016-01-29 03:56:12 | Please only send in dogs. Don't submit other things like this pic of Kenny Chesney in a bathtub. Thank you. 9/10 https://t.co/TMpDHHGspy | 9 | 10 | None | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | True | True | True | Saint_bernard | 0.612635 | |
| 915 | 692905862751522816 | 998 | 2683 | 2016-01-29 03:03:25 | This is Wally. He's being abducted by aliens. 10/10 poor pupper https://t.co/EiF659Bgjn | 10 | 10 | Wally | pupper | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | True | True | True | Mexican_hairless | 0.162638 |
| 916 | 692901601640583168 | 682 | 1971 | 2016-01-29 02:46:29 | "Fuck the system" 10/10 https://t.co/N0OADmCnVV | 10 | 10 | None | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.403496 | |
| 917 | 692894228850999298 | 910 | 2511 | 2016-01-29 02:17:12 | Meet Tupawc. He's actually a Christian rapper. Doesn't even understand the concept of dollar signs. 10/10 great guy https://t.co/mCqgtqLDCW | 10 | 10 | Tupawc | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | True | True | True | German_short-haired_pointer | 0.876977 | |
| 918 | 692828166163931137 | 998 | 3148 | 2016-01-28 21:54:41 | This pupper just descended from heaven. 12/10 can probably fly https://t.co/X6X9wM7NuS | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | True | False | False | Samoyed | 0.985857 |
| 919 | 692752401762250755 | 4124 | 7496 | 2016-01-28 16:53:37 | "Hello yes could I get one pupper to go please thank you"\nBoth 13/10 https://t.co/kYWcXbluUu | 13 | 10 | None | pupper | https://pbs.twimg.com/tweet_video_thumb/CZ0mhduWkAICSGe.png | 1 | True | True | True | Samoyed | 0.471276 |
| 920 | 692568918515392513 | 1737 | 4739 | 2016-01-28 04:44:32 | This is Chester. He's been guarding this pumpkin since October. Dedicated af. Hat is nifty as hell. 12/10 would snug https://t.co/CFMjsn3P6B | 12 | 10 | Chester | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | True | True | True | Golden_retriever | 0.636845 | |
| 921 | 692535307825213440 | 1529 | 3504 | 2016-01-28 02:30:58 | This is Amber. She's a Fetty Woof. 10/10 would pet in a heartbeat https://t.co/Dt360V2MYI | 10 | 10 | Amber | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | True | True | True | Pug | 0.413090 | |
| 922 | 692530551048294401 | 474 | 2021 | 2016-01-28 02:12:04 | Say hello to Cody. He's been to like 80 countries and is way more cultured than you. He wanted me to say that. 10/10 https://t.co/Iv3flDTpXu | 10 | 10 | Cody | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | True | True | False | Siberian_husky | 0.486428 | |
| 923 | 692187005137076224 | 929 | 2768 | 2016-01-27 03:26:56 | This is a rare Arctic Wubberfloof. Unamused by the happenings. No longer has the appetites. 12/10 would totally hug https://t.co/krvbacIX0N | 12 | 10 | NaN | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | True | True | True | Siberian_husky | 0.810592 | |
| 924 | 692158366030913536 | 896 | 2369 | 2016-01-27 01:33:08 | This is Edgar. He's a Sassafras Puggleflash. Nothing satisfies him. Not since the war. 10/10 cheer up pup https://t.co/1NgMb9BTWB | 10 | 10 | Edgar | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | True | False | True | Pug | 0.956565 | |
| 925 | 692142790915014657 | 438 | 1798 | 2016-01-27 00:31:15 | These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ | 13 | 10 | None | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | True | False | True | Toy_poodle | 0.670068 | |
| 926 | 692017291282812928 | 1081 | 3153 | 2016-01-26 16:12:33 | This is Kingsley Wellensworth III. He owns 7 range rovers. Has a cardigan collection. Would rather be sailing. 9/10 https://t.co/BE4ahQ0IO2 | 9 | 10 | Kingsley | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | True | True | False | Tibetan_terrier | 0.247565 | |
| 927 | 691756958957883396 | 1161 | 3179 | 2016-01-25 22:58:05 | THE BRITISH ARE COMING\nTHE BRITISH ARE COMING\n10/10 https://t.co/frGWV7IP6J | 10 | 10 | None | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | True | True | True | Saint_bernard | 0.342571 | |
| 928 | 691675652215414786 | 577 | 2116 | 2016-01-25 17:35:00 | This is Richie and Plip. They are the best of pals. Do everything together. 10/10 for both https://t.co/KMdwNgONkV | 10 | 10 | Richie | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | True | False | True | Chihuahua | 0.182898 | |
| 929 | 691483041324204033 | 656 | 2608 | 2016-01-25 04:49:38 | When bae says they can't go out but you see them with someone else that same night. 5/10 & 10/10 for heartbroken pup https://t.co/aenk0KpoWM | 5 | 10 | None | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | True | True | True | Bloodhound | 0.886232 | |
| 930 | 691459709405118465 | 1294 | 4449 | 2016-01-25 03:16:56 | Say hello to Leo. He's a Fallopian Puffalope. Precious af. 12/10 would cuddle https://t.co/LZEi0DpRsH | 12 | 10 | Leo | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | True | True | True | Shetland_sheepdog | 0.551206 | |
| 931 | 691444869282295808 | 955 | 2890 | 2016-01-25 02:17:57 | This is Bailey. She likes flowers. 12/10 https://t.co/YBENhr24FV | 12 | 10 | Bailey | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | True | True | True | Bernese_mountain_dog | 0.767563 | |
| 932 | 691416866452082688 | 8689 | 21253 | 2016-01-25 00:26:41 | I present to you... Dog Jesus. 13/10 (he could be sitting on a rock but I doubt it) https://t.co/fR1P3g5I6k | 13 | 10 | None | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | True | True | True | Lakeland_terrier | 0.530104 | |
| 933 | 691321916024623104 | 747 | 2828 | 2016-01-24 18:09:23 | This is Molly. She's a Peruvian Niddlewog. Loves her new hat. 11/10 would totally pet https://t.co/g4fiS8A9Ab | 11 | 10 | Molly | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | True | True | True | Rottweiler | 0.508981 | |
| 934 | 691096613310316544 | 1019 | 3253 | 2016-01-24 03:14:07 | Here we see one dog giving a puptalk to another dog. Both are focused af. Left one has powerful feet. 11/10 for both https://t.co/fUacc13OrW | 11 | 10 | None | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | True | False | False | Borzoi | 0.441269 | |
| 935 | 690959652130045952 | 1421 | 3902 | 2016-01-23 18:09:53 | This golden is happy to refute the soft mouth egg test. Not a fan of sweeping generalizations. 11/10 #notallpuppers https://t.co/DgXYBDMM3E | 11 | 10 | None | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | True | True | True | Golden_retriever | 0.862964 | |
| 936 | 690735892932222976 | 1442 | 4134 | 2016-01-23 03:20:44 | Say hello to Peaches. She's a Dingleberry Zanderfloof. 13/10 would caress lots https://t.co/YrhkrTsoTt | 13 | 10 | Peaches | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | True | True | True | Golden_retriever | 0.883229 | |
| 937 | 690728923253055490 | 597 | 2384 | 2016-01-23 02:53:03 | This is Vinscent. He was just questioned about his recent credit card spending. 8/10 https://t.co/qOD4G19A2u | 8 | 10 | Vinscent | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | True | True | True | Kuvasz | 0.422806 | |
| 938 | 690597161306841088 | 681 | 2163 | 2016-01-22 18:09:28 | This is Lolo. She's America af. Behind in science & math but can say whatever she wants on Twitter. 11/10 ...Merica https://t.co/Nwi3SYe8KA | 11 | 10 | Lolo | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | True | False | False | Lhasa | 0.097500 | |
| 939 | 690400367696297985 | 509 | 2041 | 2016-01-22 05:07:29 | This is Eriq. His friend just reminded him of last year's super bowl. Not cool friend\n10/10 for Eriq\n6/10 for friend https://t.co/PlEXTofdpf | 10 | 10 | Eriq | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | True | True | True | Pembroke | 0.426459 | |
| 940 | 690374419777196032 | 972 | 3560 | 2016-01-22 03:24:22 | This is Phred. He's an Albanian Flepperkush. Tongue is rather impressive if I'm honest. Perhaps even legendary 11/10 https://t.co/VpfFCKE28C | 11 | 10 | Phred | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | True | True | False | Kuvasz | 0.286345 | |
| 941 | 690360449368465409 | 1006 | 2925 | 2016-01-22 02:28:52 | Stop sending in lobsters. This is the final warning. We only rate dogs. Thank you... 9/10 https://t.co/B9ZXXKJYNx | 9 | 10 | NaN | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | True | True | True | Pug | 0.686933 | |
| 942 | 690015576308211712 | 836 | 2740 | 2016-01-21 03:38:27 | This pupper can only sleep on shoes. It's a crippling disease. Tearing his family apart. 12/10 I'd totally pet tho https://t.co/03XlvS8izg | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | True | True | True | Malamute | 0.949609 |
| 943 | 690005060500217858 | 1907 | 4004 | 2016-01-21 02:56:40 | "I'm the only one that ever does anything in this household" 10/10 https://t.co/V8HcVIh4jt | 10 | 10 | None | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | True | True | False | Samoyed | 0.270287 | |
| 944 | 689999384604450816 | 424 | 1561 | 2016-01-21 02:34:07 | This is Covach. He's trying to melt the snow. 10/10 we all believe in you buddy https://t.co/fgMaP2zDMt | 10 | 10 | Covach | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | True | True | True | Standard_poodle | 0.444499 | |
| 945 | 689877686181715968 | 1344 | 3323 | 2016-01-20 18:30:32 | This is Durg. He's trying to conquer his fear of trampolines. 9/10 it's not working https://t.co/5iH08ltkoe | 9 | 10 | Durg | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | True | True | True | Old_english_sheepdog | 0.269155 | |
| 946 | 689835978131935233 | 850 | 2369 | 2016-01-20 15:44:48 | Meet Fynn & Taco. Fynn is an all-powerful leaf lord and Taco is in the wrong place at the wrong time. 11/10 & 10/10 https://t.co/MuqHPvtL8c | 11 | 10 | Fynn | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | True | True | True | Collie | 0.600186 | |
| 947 | 689661964914655233 | 1052 | 3501 | 2016-01-20 04:13:20 | Meet Luca. He's a Butternut Scooperfloof. Glorious tongue. 12/10 would pet really well https://t.co/VcxZQPNZaV | 12 | 10 | Luca | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | True | True | True | Italian_greyhound | 0.322818 | |
| 948 | 689659372465688576 | 4412 | 11394 | 2016-01-20 04:03:02 | This is Ricky. He's being escorted out of the dog park for talking shit about the other dogs. 8/10 not cool Ricky https://t.co/XtDkrsdEfF | 8 | 10 | Ricky | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | False | False | False | Bustard | 0.225221 | |
| 949 | 689623661272240129 | 748 | 2467 | 2016-01-20 01:41:08 | This is Lucy. She's terrified of the stuffed billed dog. 10/10 stay strong pupper https://t.co/QnvSjjyh7n | 10 | 10 | Lucy | pupper | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | True | False | True | Toy_poodle | 0.279604 |
| 950 | 689557536375177216 | 519 | 2257 | 2016-01-19 21:18:22 | Downright majestic af 12/10 https://t.co/WFh2FEbYzj | 12 | 10 | None | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | True | True | False | Eskimo_dog | 0.169482 | |
| 951 | 689517482558820352 | 1609 | 3735 | 2016-01-19 18:39:13 | This is Carl. He just wants to make sure you're having a good day. 12/10 just a swell pup https://t.co/Wk3XCnmDvm | 12 | 10 | Carl | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | True | True | True | Pembroke | 0.799319 | |
| 952 | 689283819090870273 | 1250 | 3624 | 2016-01-19 03:10:43 | Say hello to Chipson. He's aerodynamic af. No eyes (devastating). 9/10 would make sure he didn't bump into stuff https://t.co/V62rIva61J | 9 | 10 | Chipson | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | True | True | True | Scotch_terrier | 0.267979 | |
| 953 | 689280876073582592 | 819 | 2197 | 2016-01-19 02:59:01 | This is Herald. He wants you to know he could steal your girl at any moment. 10/10 https://t.co/JR7hLnlgeS | 10 | 10 | Herald | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | True | True | True | Chihuahua | 0.637546 | |
| 954 | 689275259254616065 | 285 | 1273 | 2016-01-19 02:36:42 | Meet Lucky. He was showing his friends an extreme pogo stick trick when he completely lost control. 10/10 still rad https://t.co/K55XrIoePl | 10 | 10 | Lucky | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.215161 | |
| 955 | 689154315265683456 | 1128 | 3348 | 2016-01-18 18:36:07 | We normally don't rate birds but I feel bad cos this one forgot to fly south for the winter. 9/10 just wants a bath https://t.co/o47yitCn9N | 9 | 10 | None | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | True | True | True | Cocker_spaniel | 0.816044 | |
| 956 | 689143371370250240 | 579 | 2232 | 2016-01-18 17:52:38 | Meet Trip. He likes wearing costumes that aren't consistent with the season to screw with people 10/10 tricky pupper https://t.co/40w7TI5Axv | 10 | 10 | Trip | pupper | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | True | True | True | English_springer | 0.303781 |
| 957 | 688916208532455424 | 983 | 3003 | 2016-01-18 02:49:58 | This pupper just wants to say hello. 11/10 would knock down fence for https://t.co/A8X8fwS78x | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | True | False | True | Pembroke | 0.430544 |
| 958 | 688898160958271489 | 890 | 2307 | 2016-01-18 01:38:15 | When you have a ton of work to do but then remember you have tomorrow off. 10/10 https://t.co/MfEaMUFYTx | 10 | 10 | None | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | True | True | True | Ibizan_hound | 0.853170 | |
| 959 | 688828561667567616 | 420 | 1508 | 2016-01-17 21:01:41 | Say hello to Brad. His car probably has a spoiler. Tan year round. Likes your insta pic but doesn't text back. 9/10 https://t.co/dfCCK3tWfr | 9 | 10 | Brad | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | True | False | False | Cardigan | 0.614231 | |
| 960 | 688804835492233216 | 227 | 1043 | 2016-01-17 19:27:24 | When you stumble but recover quickly cause your crush is watching. 12/10 https://t.co/PMeq6IedU7 | 12 | 10 | None | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | True | True | True | Malinois | 0.199512 | |
| 961 | 688789766343622656 | 759 | 2434 | 2016-01-17 18:27:32 | Meet Pubert. He's a Kerplunk Rumplestilt. Cannot comprehend flower. Flawless tongue. 8/10 would pat head approvingly https://t.co/2TWxg0rgyG | 8 | 10 | Pubert | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.599660 | |
| 962 | 688547210804498433 | 789 | 2862 | 2016-01-17 02:23:42 | This is Frönq. He got caught stealing a waffle. Damn it Frönq. 9/10 https://t.co/7ycWCUrjmZ | 9 | 10 | Frönq | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | True | True | True | Papillon | 0.531279 | |
| 963 | 688519176466644993 | 825 | 2520 | 2016-01-17 00:32:18 | This pupper is sprouting a flower out of her head. 12/10 revolutionary af https://t.co/glmvQBRjv4 | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | True | True | True | Pembroke | 0.696372 |
| 964 | 688385280030670848 | 5035 | 10180 | 2016-01-16 15:40:14 | This is Louis. He's takes top-notch selfies. 12/10 would snapchat with https://t.co/vz2DukO0th | 12 | 10 | Louis | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | True | True | False | Golden_retriever | 0.900437 | |
| 965 | 688116655151435777 | 888 | 3093 | 2016-01-15 21:52:49 | Please send dogs. I'm tired of seeing other stuff like this dangerous pirate. We only rate dogs. Thank you... 10/10 https://t.co/YdLytdZOqv | 10 | 10 | None | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | True | True | True | Pug | 0.973819 | |
| 966 | 688064179421470721 | 408 | 1878 | 2016-01-15 18:24:18 | This is Kilo. He's a Pouncing Brioche. Really likes snow. 11/10 https://t.co/GS76SfkraY | 11 | 10 | Kilo | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | True | True | True | Eskimo_dog | 0.240602 | |
| 967 | 687826841265172480 | 1292 | 2989 | 2016-01-15 02:41:12 | This is Louis. He's a rollercoaster of emotions. Incalculably fluffy. 12/10 would pet firmly https://t.co/17RGvOZO9P | 12 | 10 | Louis | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | True | True | True | Pomeranian | 0.997210 | |
| 968 | 687818504314159109 | 1080 | 2758 | 2016-01-15 02:08:05 | With great pupper comes great responsibility. 12/10 https://t.co/hK6xB042EP | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | True | True | True | Lakeland_terrier | 0.873029 |
| 969 | 687807801670897665 | 801 | 2625 | 2016-01-15 01:25:33 | Meet Trooper & Maya. Trooper protects Maya from bad things like dognappers and Comcast. So touching. 11/10 for both https://t.co/c98k1IoZKy | 11 | 10 | Trooper | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.151113 | |
| 970 | 687704180304273409 | 950 | 2660 | 2016-01-14 18:33:48 | Say hello to Blakely. He thinks that's a hat. Silly pupper. That's a nanner. 9/10 https://t.co/UwOV1jqKRt | 9 | 10 | Blakely | pupper | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | True | True | True | Miniature_pinscher | 0.956063 |
| 971 | 687664829264453632 | 576 | 2121 | 2016-01-14 15:57:26 | Meet Opal. He's a Belgian Dijon Poofster. Upset because his hood makes him look like blond Justin Timberlake. 11/10 https://t.co/IAt3jRZ5ez | 11 | 10 | Opal | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | True | True | True | Pug | 0.957365 | |
| 972 | 687494652870668288 | 654 | 2104 | 2016-01-14 04:41:12 | This is Marq. He stole this car. 7/10 wtf Marq? https://t.co/MHScqo5l8c | 7 | 10 | Marq | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | True | True | True | Rottweiler | 0.391471 | |
| 973 | 687480748861947905 | 281 | 1760 | 2016-01-14 03:45:57 | Another magnificent photo. 12/10 https://t.co/X5w387K5jr | 12 | 10 | None | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | True | True | True | English_springer | 0.472273 | |
| 974 | 687460506001633280 | 614 | 2243 | 2016-01-14 02:25:31 | This is Kramer. He's a Picasso Tortellini. Tie couldn't be more accurate. Confident af. Runs his own business. 10/10 https://t.co/jIcVW0xxmH | 10 | 10 | Kramer | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | True | True | True | Boston_bull | 0.223366 | |
| 975 | 687317306314240000 | 10411 | 22073 | 2016-01-13 16:56:30 | This is Tyrone. He's a leaf wizard. Self-motivated. No eyes (tragic). Inspirational af. 11/10 enthusiasm is tangible https://t.co/pRp1Npucbz | 11 | 10 | Tyrone | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | True | True | True | Shih-tzu | 0.747208 | |
| 976 | 687127927494963200 | 2591 | 6004 | 2016-01-13 04:23:58 | Meet Gordon. He's an asshole. 9/10 would still pet https://t.co/a34N7QwKbb | 9 | 10 | Gordon | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | True | True | True | Pug | 0.178205 | |
| 977 | 687109925361856513 | 2803 | 6370 | 2016-01-13 03:12:26 | This is Baxter. He looks like a fun dog. Prefers action shots. 11/10 the last one is impeccable https://t.co/LHcH1yhhIb | 11 | 10 | Baxter | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | True | True | True | Borzoi | 0.883086 | |
| 978 | 687096057537363968 | 695 | 2449 | 2016-01-13 02:17:20 | This pupper's New Year's resolution was to become a Hershey's kiss. 11/10 she's super pumped about it https://t.co/D7jYj6vdwC | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | True | True | True | Labrador_retriever | 0.417107 |
| 979 | 686730991906516992 | 1350 | 4543 | 2016-01-12 02:06:41 | I just love this picture. 12/10 lovely af https://t.co/Kc84eFNhYU | 12 | 10 | None | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | True | True | True | Tibetan_mastiff | 0.338812 | |
| 980 | 686683045143953408 | 912 | 3072 | 2016-01-11 22:56:10 | This is Mona. She's a Yarborough Splishnsplash. Lost body during Nam. 11/10 revolutionary pupper https://t.co/pgD6h0yhgz | 11 | 10 | Mona | pupper | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | True | True | True | Norwich_terrier | 0.100499 |
| 981 | 686618349602762752 | 1544 | 4042 | 2016-01-11 18:39:05 | This is Olivia. She just saw an adult wearing crocs. 11/10 poor pupper. No one should witness such a thing https://t.co/yJVTi1DjJc | 11 | 10 | Olivia | pupper | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | True | True | True | Rottweiler | 0.441331 |
| 982 | 686606069955735556 | 607 | 2071 | 2016-01-11 17:50:18 | Meet Horace. He was practicing his levitation, minding his own business when a rogue tennis ball spooked him. 10/10 https://t.co/tB9xYjMyZd | 10 | 10 | Horace | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | True | True | True | Labrador_retriever | 0.320012 | |
| 983 | 686386521809772549 | 996 | 3553 | 2016-01-11 03:17:53 | Say hello to Crimson. He's a Speckled Winnebago. Main passions are air hockey & parkour. 11/10 would pet thoroughly https://t.co/J5aI7SjzDc | 11 | 10 | Crimson | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | True | True | True | Yorkshire_terrier | 0.477704 | |
| 984 | 686377065986265092 | 637 | 2433 | 2016-01-11 02:40:19 | Meet Birf. He thinks he's gone blind. 10/10 very frightened pupper https://t.co/oDkspjNWYX | 10 | 10 | Birf | pupper | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | True | True | True | German_shepherd | 0.830816 |
| 985 | 686358356425093120 | 776 | 2398 | 2016-01-11 01:25:58 | Heartwarming scene here. Son reuniting w father after coming home from deployment. Very moving. 10/10 for both pups https://t.co/95JJevQOWW | 10 | 10 | None | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | True | True | True | Pug | 0.985237 | |
| 986 | 686050296934563840 | 836 | 2420 | 2016-01-10 05:01:51 | This is Flávio. He's a Macedonian Poppycock. 97% floof. Jubilant af. 11/10 personally I'd pet the hell out of https://t.co/BUyX7isHRg | 11 | 10 | Flávio | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | True | True | True | Pomeranian | 0.985789 | |
| 987 | 686034024800862208 | 1324 | 3424 | 2016-01-10 03:57:12 | Your fav crew is back and this time they're embracing cannabis culture. 12/10 for all https://t.co/oSvRDuMm1D | 12 | 10 | None | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | True | True | True | Great_dane | 0.236920 | |
| 988 | 686007916130873345 | 472 | 2704 | 2016-01-10 02:13:27 | This pupper has a magical eye. 11/10 I can't stop looking at it https://t.co/heAGpKTpPW | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | True | True | False | Rhodesian_ridgeback | 0.885301 |
| 989 | 685973236358713344 | 611 | 2326 | 2016-01-09 23:55:38 | This is Lorelei. She's contemplating her existence and the eventual heat death of the universe. 11/10 very majestic https://t.co/xbUoULOIS8 | 11 | 10 | Lorelei | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | True | True | True | Siberian_husky | 0.450678 | |
| 990 | 685943807276412928 | 696 | 1801 | 2016-01-09 21:58:42 | This is the newly formed pupper a capella group. They're just starting out but I see tons of potential. 8/10 for all https://t.co/wbAcvFoNtn | 8 | 10 | NaN | pupper | https://pbs.twimg.com/ext_tw_video_thumb/685943751555051520/pu/img/rlBvQWaFPUMx1MTi.jpg | 1 | True | True | True | Papillon | 0.200812 |
| 991 | 685906723014619143 | 3303 | 8277 | 2016-01-09 19:31:20 | This is Olive. He's stuck in a sleeve. 9/10 damn it Olive https://t.co/NnLjg6BgyF | 9 | 10 | Olive | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | True | True | True | Yorkshire_terrier | 0.414963 | |
| 992 | 685663452032069632 | 1656 | 3557 | 2016-01-09 03:24:40 | Meet Brooks. He's confused by the almighty ball of tennis. 12/10 \n\n(vid by @PDolan37) https://t.co/AcVWe39nmM | 12 | 10 | Brooks | https://pbs.twimg.com/ext_tw_video_thumb/685663358637486080/pu/img/3cXSHFZAgJQ_dDCf.jpg | 1 | True | False | False | Chesapeake_bay_retriever | 0.171174 | |
| 993 | 685641971164143616 | 885 | 3218 | 2016-01-09 01:59:19 | This is Otis. He just passed a cop while going 61 in a 45. Very nervous pupper. 7/10 https://t.co/jJS8qQeuNO | 7 | 10 | Otis | pupper | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | True | True | False | Lakeland_terrier | 0.253839 |
| 994 | 685325112850124800 | 4535 | 10471 | 2016-01-08 05:00:14 | "Tristan do not speak to me with that kind of tone or I will take away the Xbox." 10/10 https://t.co/VGPH0TfESw | 10 | 10 | None | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | True | True | True | Golden_retriever | 0.586937 | |
| 995 | 685321586178670592 | 735 | 2910 | 2016-01-08 04:46:13 | This is Rocky. He sleeps like a psychopath. 10/10 quality tongue slip https://t.co/MbgG95mUdu | 10 | 10 | Rocky | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | True | True | True | Boston_bull | 0.972483 | |
| 996 | 685315239903100929 | 1234 | 3676 | 2016-01-08 04:21:00 | I would like everyone to appreciate this pup's face as much as I do. 11/10 https://t.co/QIe7oxkSNo | 11 | 10 | None | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | True | True | True | Chow | 0.470162 | |
| 997 | 685307451701334016 | 496 | 2262 | 2016-01-08 03:50:03 | Say hello to Petrick. He's an Altostratus Floofer. Just had a run in with a trash bag. Groovy checkered floor. 11/10 https://t.co/rwW7z1JAOF | 11 | 10 | Petrick | floofer | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | True | True | True | Pomeranian | 0.963176 |
| 998 | 685268753634967552 | 1371 | 3419 | 2016-01-08 01:16:17 | This is Hubertson. He's a Carmel Haberdashery. Enjoys long summer days on his boat. Very peaceful pupper. 10/10 https://t.co/vzCl35fKlZ | 10 | 10 | Hubertson | pupper | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | True | True | True | Pug | 0.999044 |
| 999 | 685169283572338688 | 1620 | 4489 | 2016-01-07 18:41:01 | Meet Gerbald. He just found out he's adopted. Poor pupper. Snazzy tongue tho. 11/10 would hold close in time of need https://t.co/UfGkB9Wrud | 11 | 10 | Gerbald | pupper | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.975096 |
| 1000 | 684940049151070208 | 1191 | 3523 | 2016-01-07 03:30:07 | This is Oreo. She's a photographer and a model. Living a double pupple life. 12/10 such talent much cute would pet https://t.co/zNeLxJeAoL | 12 | 10 | Oreo | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | True | True | True | Border_collie | 0.665578 | |
| 1001 | 684926975086034944 | 552 | 3849 | 2016-01-07 02:38:10 | Meet Bruiser & Charlie. They are the best of pals. Been through it all together. Both 11/10. 1 like=1 friendship https://t.co/PEXHuvSVD4 | 11 | 10 | Bruiser | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | True | True | False | Labrador_retriever | 0.769412 | |
| 1002 | 684902183876321280 | 605 | 2053 | 2016-01-07 00:59:40 | This is Perry. He's an Augustus Gloopster. Very condescending. Makes up for it with the sneaky tongue slip. 11/10 https://t.co/JVvIrUmTkR | 11 | 10 | Perry | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | True | True | False | Pembroke | 0.708034 | |
| 1003 | 684800227459624960 | 1124 | 2979 | 2016-01-06 18:14:31 | Meet Theodore. He's dapper as hell. Probably owns horses. Uses 'summer' as a verb. Often quotes philosophers. 11/10 https://t.co/J3Ld4fRbSy | 11 | 10 | Theodore | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | True | True | True | Miniature_schnauzer | 0.294457 | |
| 1004 | 684594889858887680 | 4016 | 9843 | 2016-01-06 04:38:35 | "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ALL THE SPOTS ARE GREY DAMN IT CINDY" ...10/10 https://t.co/uhQNehTpIu | 10 | 10 | None | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | True | True | True | Weimaraner | 0.948688 | |
| 1005 | 684538444857667585 | 1085 | 2915 | 2016-01-06 00:54:18 | After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV | 12 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/684538367950872576/pu/img/kTKOkSU45BS-fpq8.jpg | 1 | True | False | False | Chihuahua | 0.702583 | |
| 1006 | 684481074559381504 | 1320 | 4249 | 2016-01-05 21:06:19 | Meet Pippa. She's an Elfin High Feta. Compact af. Easy to transport. Great for vacations. 10/10 would keep in pocket https://t.co/nBtDeZ4yAb | 10 | 10 | Pippa | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | True | True | False | Chihuahua | 0.937810 | |
| 1007 | 684460069371654144 | 628 | 2169 | 2016-01-05 19:42:51 | This is Jeph. He's a Western Sagittarius Dookmarriot. Frightened by leaf. Caught him off guard. 10/10 calm down Jeph https://t.co/bicyOV6lju | 10 | 10 | Jeph | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | True | True | True | Labrador_retriever | 0.673691 | |
| 1008 | 684241637099323392 | 3727 | 8999 | 2016-01-05 05:14:53 | This is Obi. He got camera shy. 12/10 https://t.co/feiPiq7z94 | 12 | 10 | Obi | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | True | False | False | Pembroke | 0.508498 | |
| 1009 | 684225744407494656 | 239 | 1369 | 2016-01-05 04:11:44 | Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 | 11 | 10 | None | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | True | True | True | Golden_retriever | 0.203249 | |
| 1010 | 684222868335505415 | 1563 | 4225 | 2016-01-05 04:00:18 | Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 | 11 | 10 | None | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | True | True | False | Soft-coated_wheaten_terrier | 0.791182 | |
| 1011 | 684195085588783105 | 595 | 2108 | 2016-01-05 02:09:54 | This is Tino. He really likes corndogs. 9/10 https://t.co/cUxGtnBfc2 | 9 | 10 | Tino | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | True | True | True | Chihuahua | 0.379365 | |
| 1012 | 684188786104872960 | 1343 | 3831 | 2016-01-05 01:44:52 | "Yo Boomer I'm taking a selfie, grab your stick"\n"Ok make sure to get this rad hole I just dug in there"\n\nBoth 10/10 https://t.co/e0gbl9VFpA | 10 | 10 | None | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | True | True | True | Kelpie | 0.537782 | |
| 1013 | 684177701129875456 | 764 | 2215 | 2016-01-05 01:00:50 | This is Kulet. She's very proud of the flower she picked. Loves it dearly. 10/10 now I want a flower https://t.co/myUUwqJIs7 | 10 | 10 | Kulet | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | True | True | True | Chow | 0.334783 | |
| 1014 | 684097758874210310 | 1621 | 4515 | 2016-01-04 19:43:10 | Say hello to Lupe. This is how she sleeps. 10/10 impressive really https://t.co/Fz6iZWlk8C | 10 | 10 | Lupe | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | True | True | True | Labrador_retriever | 0.627856 | |
| 1015 | 683857920510050305 | 1262 | 4163 | 2016-01-04 03:50:08 | Meet Sadie. She fell asleep on the beach and her friends buried her. 10/10 can't trust fellow puppers these days https://t.co/LoKVvc1xAW | 10 | 10 | Sadie | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | True | True | True | Bluetick | 0.174738 | |
| 1016 | 683852578183077888 | 397 | 2111 | 2016-01-04 03:28:54 | Say hello to Tiger. He's a penbroke (little dog pun for ya, no need to applaud I know it was good) 10/10 good dog https://t.co/Yei0HzS3JN | 10 | 10 | Tiger | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | True | False | True | Toy_poodle | 0.551352 | |
| 1017 | 683834909291606017 | 1265 | 2880 | 2016-01-04 02:18:42 | Here we see a faulty pupper. Might need to replace batteries. Try turning off & back on again. 9/10 would still pet https://t.co/O1E4AtHVxO | 9 | 10 | None | pupper | https://pbs.twimg.com/ext_tw_video_thumb/683834825250320385/pu/img/yZdrqMlyky4KGOu6.jpg | 1 | True | True | True | Maltese_dog | 0.738449 |
| 1018 | 683828599284170753 | 1195 | 3053 | 2016-01-04 01:53:37 | Breathtaking pupper here. Should be on the cover of Dogue. Top-notch tongue. Appears considerably fluffy. 12/10 https://t.co/Eeh3yfdglS | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | True | True | True | Malamute | 0.577376 |
| 1019 | 683773439333797890 | 1533 | 3684 | 2016-01-03 22:14:26 | This is Buddy. He's gaining strength. Currently an F4 tornado with wind speeds up to 260mph. Very devastating. 9/10 https://t.co/qipZbshNsR | 9 | 10 | Buddy | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | True | True | True | Miniature_pinscher | 0.072885 | |
| 1020 | 683742671509258241 | 3781 | 7162 | 2016-01-03 20:12:10 | Meet Sebastian. He's a womanizer. Romantic af. Always covered in flower petals. Also a poet. 11/10 dreamy as hell https://t.co/eoL1bCpWCg | 11 | 10 | Sebastian | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | True | True | True | Pembroke | 0.895279 | |
| 1021 | 683498322573824003 | 1095 | 3469 | 2016-01-03 04:01:13 | This is Griffin. He's desperate for both a physical and emotion connection. 11/10 I'd hug the hell out of Griffin https://t.co/ObWcOEekt0 | 11 | 10 | Griffin | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | True | True | True | Airedale | 0.945362 | |
| 1022 | 683481228088049664 | 1118 | 2878 | 2016-01-03 02:53:17 | Meet Banjo. He's a Peppercorn Shoop Da Whoop. Nails look lethal. Skeptical of luminescent orb 11/10 stay woke pupper https://t.co/H7NZFumpKq | 11 | 10 | Banjo | pupper | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | True | True | True | Keeshond | 0.508951 |
| 1023 | 683462770029932544 | 761 | 2676 | 2016-01-03 01:39:57 | "Hello forest pupper I am house pupper welcome to my abode" (8/10 for both) https://t.co/qFD8217fUT | 8 | 10 | None | pupper | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | True | True | True | Italian_greyhound | 0.399560 |
| 1024 | 683449695444799489 | 1837 | 4290 | 2016-01-03 00:47:59 | I just want to be friends with this dog. Appears to be into the sports. A true brobean. 10/10 would introduce to mom https://t.co/1Z7Q6svWpe | 10 | 10 | None | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | True | True | True | Lakeland_terrier | 0.303512 | |
| 1025 | 683391852557561860 | 2702 | 8356 | 2016-01-02 20:58:09 | Say hello to Jack (pronounced "Kevin"). He's a Virgo Episcopalian. Can summon rainbows. 11/10 magical as hell https://t.co/YHXrdUTHd6 | 11 | 10 | Jack | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | True | True | True | French_bulldog | 0.992833 | |
| 1026 | 683357973142474752 | 1059 | 3238 | 2016-01-02 18:43:31 | "Have a seat, son. There are some things we need to discuss" 10/10 https://t.co/g4G5tvfTVd | 10 | 10 | None | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | True | True | True | Pembroke | 0.406509 | |
| 1027 | 683142553609318400 | 1173 | 3162 | 2016-01-02 04:27:31 | Meet Brandy. She's a member of the Bloods. Menacing criminal pupper. Soft spot for flowers tho. 9/10 pet w caution https://t.co/hhIA3coiAJ | 9 | 10 | Brandy | pupper | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | True | True | True | Leonberg | 0.605851 |
| 1028 | 683111407806746624 | 1034 | 3736 | 2016-01-02 02:23:45 | This is Larry. He thought the New Year's parties were tonight. 10/10 poor pupper. Maybe next year https://t.co/h3X0jK8MVM | 10 | 10 | Larry | pupper | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | True | True | True | Cocker_spaniel | 0.901392 |
| 1029 | 683098815881154561 | 736 | 2361 | 2016-01-02 01:33:43 | aahhhhkslaldhwnxmzbbs 12/10 for being da smooshiest https://t.co/UOPdXmUz4H | 12 | 10 | None | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | True | True | True | Golden_retriever | 0.889848 | |
| 1030 | 683030066213818368 | 832 | 2370 | 2016-01-01 21:00:32 | This is Lulu. She's contemplating all her unreached 2015 goals and daydreaming of a more efficient tomorrow. 10/10 https://t.co/h3ScYuz77J | 10 | 10 | Lulu | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | True | True | True | Boxer | 0.722218 | |
| 1031 | 682962037429899265 | 15043 | 26239 | 2016-01-01 16:30:13 | This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5 | 10 | 10 | Darrel | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | False | True | False | Dingo | 0.278600 | |
| 1032 | 682750546109968385 | 494 | 1674 | 2016-01-01 02:29:49 | Meet Taco. He's a speckled Garnier Fructis. Loves to shadow box. Ears out of control. Friend clearly impressed 9/10 https://t.co/85X1GHohFr | 9 | 10 | Taco | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | True | True | True | English_setter | 0.947198 | |
| 1033 | 682662431982772225 | 1207 | 3326 | 2015-12-31 20:39:41 | Meet Joey and Izzy. Joey only has one ear that works and Izzy wants 2015 to be over already. Both great pups. 11/10s https://t.co/WgQTIQ93BB | 11 | 10 | Joey | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | True | True | True | Beagle | 0.413824 | |
| 1034 | 682638830361513985 | 675 | 2266 | 2015-12-31 19:05:54 | I have no words. Just a magnificent pup. 12/10 https://t.co/viwWHZgX8j | 12 | 10 | None | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | True | True | True | English_springer | 0.440781 | |
| 1035 | 682429480204398592 | 1320 | 3769 | 2015-12-31 05:14:01 | I know we joke around on here, but this is getting really frustrating. We rate dogs. Not T-Rex. Thank you... 8/10 https://t.co/5aFw7SWyxU | 8 | 10 | None | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | True | True | True | Whippet | 0.594701 | |
| 1036 | 682393905736888321 | 773 | 2441 | 2015-12-31 02:52:40 | This is Kreg. He's riding an invisible jet ski. 11/10 that's downright legendary https://t.co/BA5AV5dx6Y | 11 | 10 | Kreg | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | True | False | True | Vizsla | 0.657275 | |
| 1037 | 682389078323662849 | 518 | 1828 | 2015-12-31 02:33:29 | Meet Brody. He's a Downton Abbey Falsetto. Addicted to grating cheese. He says he can stop but we know he can't\n9/10 https://t.co/vBeiQq6SaZ | 9 | 10 | Brody | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | True | True | True | Curly-coated_retriever | 0.482288 | |
| 1038 | 682259524040966145 | 1375 | 4578 | 2015-12-30 17:58:40 | Meet Jax. He's an Iglesias Hufflepoof. Quite the jokester. Takes it too far sometimes. Can be very hurtful. 9/10 https://t.co/i5TeG0KYcW | 9 | 10 | Jax | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | True | True | True | Siberian_husky | 0.439670 | |
| 1039 | 682047327939461121 | 1088 | 3525 | 2015-12-30 03:55:29 | We normally don't rate bears but this one seems nice. Her name is Thea. Appears rather fluffy. 10/10 good bear https://t.co/fZc7MixeeT | 10 | 10 | None | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | False | False | False | Teddy | 0.364095 | |
| 1040 | 682032003584274432 | 2294 | 7223 | 2015-12-30 02:54:35 | This is Ulysses. He likes holding hands and his eyes are magic. 11/10 https://t.co/gPmJHmtgak | 11 | 10 | Ulysses | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | True | True | True | Schipperke | 0.997953 | |
| 1041 | 681981167097122816 | 1161 | 3043 | 2015-12-29 23:32:35 | This is Jimothy. He's a Trinidad Poliwhirl. Father was a velociraptor. Exceptionally unamused. 12/10 would adopt https://t.co/VwdIk0OwVx | 12 | 10 | Jimothy | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | True | True | True | Labrador_retriever | 0.452577 | |
| 1042 | 681891461017812993 | 951 | 2706 | 2015-12-29 17:36:07 | Say hello to Charlie. He's scholarly af. Quite intimidating with all his pupper knowledge 10/10 even built that fire https://t.co/9KThv6z8u5 | 10 | 10 | Charlie | pupper | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | True | False | True | Chihuahua | 0.203570 |
| 1043 | 681694085539872773 | 4581 | 14010 | 2015-12-29 04:31:49 | This is Bo. He's a Benedoop Cumbersnatch. Seems frustrated with own feet. Portable as hell. 11/10 very solid pupper https://t.co/TONMhRoQh7 | 11 | 10 | Bo | pupper | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | True | True | True | Toy_poodle | 0.920992 |
| 1044 | 681654059175129088 | 1045 | 2903 | 2015-12-29 01:52:46 | This is Toffee. He's a happy pupper. Appears dangerously fluffy. Extraordinarily spherical. 12/10 would pet firmly https://t.co/oEXEKt3MHu | 12 | 10 | Toffee | pupper | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | True | True | True | Pomeranian | 0.800538 |
| 1045 | 681610798867845120 | 533 | 2100 | 2015-12-28 23:00:52 | *collapses* 12/10 https://t.co/C7M8mnzHIK | 12 | 10 | None | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | True | True | True | Toy_poodle | 0.821704 | |
| 1046 | 681579835668455424 | 1489 | 3893 | 2015-12-28 20:57:50 | This is Apollo. He thought you weren't coming back so he had a mental breakdown. 8/10 we've all been there https://t.co/ojUBrDCHLT | 8 | 10 | Apollo | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | True | True | True | Rottweiler | 0.760671 | |
| 1047 | 681523177663676416 | 6620 | 15749 | 2015-12-28 17:12:42 | This is Carly. She's actually 2 dogs fused together. Very innovative. Probably has superpowers. 12/10 for double dog https://t.co/GQn2IopLud | 12 | 10 | Carly | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | True | True | True | Norfolk_terrier | 0.205067 | |
| 1048 | 681320187870711809 | 863 | 2918 | 2015-12-28 03:46:05 | This is Glacier. He's a very happy pup. Loves to sing in the sunlight. 11/10 https://t.co/jTBPqKgkz7 | 11 | 10 | Glacier | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | True | True | True | Samoyed | 0.362596 | |
| 1049 | 681297372102656000 | 1091 | 3490 | 2015-12-28 02:15:26 | This is actually a lion. We only rate dogs. For the last time please only send dogs. Thank u.\n12/10 would still pet https://t.co/Pp26dMQxap | 12 | 10 | NaN | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | True | True | True | Lhasa | 0.482401 | |
| 1050 | 681281657291280384 | 1258 | 3520 | 2015-12-28 01:12:59 | Meet Sarge. His parents signed him up for dancing lessons but his true passion is roller coasters 11/10 very petable https://t.co/KvVoBIgkje | 11 | 10 | Sarge | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | True | True | True | Saint_bernard | 0.998830 | |
| 1051 | 681261549936340994 | 308 | 1597 | 2015-12-27 23:53:05 | Say hello to Panda. He's a Quackadilly Shooster. Not amused by your fake ball throwing motion. 9/10 would hug lots https://t.co/wL1iDvbcVk | 9 | 10 | Panda | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | True | True | True | Tibetan_terrier | 0.382101 | |
| 1052 | 681231109724700672 | 540 | 2629 | 2015-12-27 21:52:07 | I just love this pic. 11/10 this pupper is going places https://t.co/P16uhh1PbI | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | True | True | True | Irish_setter | 0.406047 |
| 1053 | 681193455364796417 | 1691 | 4077 | 2015-12-27 19:22:30 | This is Aspen. He's astronomically fluffy. I wouldn't stop petting this dog if the world was ending around me 11/10 https://t.co/oBlgL9nxpx | 11 | 10 | Aspen | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | True | True | True | Pomeranian | 0.992619 | |
| 1054 | 680970795137544192 | 749 | 2665 | 2015-12-27 04:37:44 | I thought I made this very clear. We only rate dogs. Stop sending other things like this shark. Thank you... 9/10 https://t.co/CXSJZ4Stk3 | 9 | 10 | None | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | True | True | False | Pug | 0.713102 | |
| 1055 | 680940246314430465 | 1225 | 3544 | 2015-12-27 02:36:20 | This is Alice. She's an idiot. 4/10 https://t.co/VQXdwJfkyS | 4 | 10 | Alice | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.289598 | |
| 1056 | 680934982542561280 | 497 | 2285 | 2015-12-27 02:15:25 | Say hello to Sadie. She's a Tortellini Sidewinder. Very jubilant pup. Seems loyal. Leaves on point. 10/10 petable af https://t.co/g2bTu4ayPl | 10 | 10 | Sadie | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | True | True | True | Labrador_retriever | 0.784398 | |
| 1057 | 680913438424612864 | 705 | 2609 | 2015-12-27 00:49:49 | Meet Griswold. He's dapper as hell. Already pumped for next Christmas. 11/10 https://t.co/5NrpNDyFzN | 11 | 10 | Griswold | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | True | True | True | Pomeranian | 0.615678 | |
| 1058 | 680889648562991104 | 418 | 1945 | 2015-12-26 23:15:17 | This is Cheesy. It's her birthday. She's patiently waiting to eat her party muffin. 9/10 happy birthday pup https://t.co/cH2H7mch2H | 9 | 10 | Cheesy | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | True | True | True | Shetland_sheepdog | 0.876337 | |
| 1059 | 680836378243002368 | 1513 | 3766 | 2015-12-26 19:43:36 | This is Ellie. She's secretly ferocious. 12/10 very deadly pupper https://t.co/BF4BW8LUgb | 12 | 10 | Ellie | pupper | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | True | True | True | Pembroke | 0.427781 |
| 1060 | 680801747103793152 | 925 | 2600 | 2015-12-26 17:25:59 | Great picture here. Dog on the right panicked & forgot about his tongue. Middle green dog must've fainted. All 10/10 https://t.co/31npKUAox0 | 10 | 10 | None | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | True | True | True | Pug | 0.996720 | |
| 1061 | 680609293079592961 | 816 | 2906 | 2015-12-26 04:41:15 | This is Brody. That is his chair. He loves his chair. Never leaves it. 9/10 might be stuck actually https://t.co/WvJRg0XJit | 9 | 10 | Brody | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | True | True | True | French_bulldog | 0.700764 | |
| 1062 | 680497766108381184 | 2162 | 4639 | 2015-12-25 21:18:05 | Meet Percy. He's a Latvian Yuletide Heineken. Refuses to take off sweater. Kinda feisty. 12/10 would keep in pocket https://t.co/QGM5Fcuv7s | 12 | 10 | Percy | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | True | False | False | Chihuahua | 0.538354 | |
| 1063 | 680494726643068929 | 542 | 1879 | 2015-12-25 21:06:00 | Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/10 https://t.co/eNm2S6p9BD | 11 | 10 | None | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | True | True | True | Kuvasz | 0.438627 | |
| 1064 | 680473011644985345 | 844 | 2778 | 2015-12-25 19:39:43 | This is Hector. He thinks he's a hammer. Silly Hector. You're a pupper, not a hammer. 10/10 https://t.co/OdUFuZIXiI | 10 | 10 | Hector | pupper | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | True | True | True | Lakeland_terrier | 0.796694 |
| 1065 | 680191257256136705 | 577 | 2356 | 2015-12-25 01:00:07 | Here's a sleepy Christmas pupper 11/10 https://t.co/KXg0f8GNQ9 | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | True | True | True | Brittany_spaniel | 0.733253 |
| 1066 | 680161097740095489 | 828 | 2538 | 2015-12-24 23:00:17 | Meet Goliath. He's an example of irony. Head is phenomenally round. Wants to be an ornament. 12/10 would hug gently https://t.co/72Dil0Aktw | 12 | 10 | Goliath | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | True | True | True | Bluetick | 0.268681 | |
| 1067 | 680145970311643136 | 1972 | 3955 | 2015-12-24 22:00:10 | Say hello to Kawhi. He was doing fine until his hat fell off. He got it back though. 10/10 deep breaths pupper https://t.co/N5pM6WBx7e | 10 | 10 | Kawhi | pupper | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | True | True | True | Miniature_poodle | 0.457117 |
| 1068 | 680130881361686529 | 1078 | 2519 | 2015-12-24 21:00:12 | This is Reggie. His Santa hat is a little big. 10/10 he's still having fun https://t.co/w0dcGXq7qK | 10 | 10 | Reggie | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | True | True | True | Maltese_dog | 0.199121 | |
| 1069 | 680115823365742593 | 1028 | 2972 | 2015-12-24 20:00:22 | This is Ozzy. He woke up 2 minutes before he had to be ready for the Christmas party. 9/10 classic Ozzy https://t.co/Kt9vmw0Fap | 9 | 10 | Ozzy | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | True | True | True | Pug | 0.999365 | |
| 1070 | 680100725817409536 | 1554 | 3891 | 2015-12-24 19:00:23 | This pupper is not coming inside until she catches a snowflake on her tongue. 11/10 the determination is palpable https://t.co/lvMYbmKq8H | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | True | True | True | Golden_retriever | 0.698961 |
| 1071 | 680055455951884288 | 8067 | 18278 | 2015-12-24 16:00:30 | Meet Sammy. At first I was like "that's a snowflake. we only rate dogs," but he would've melted by now, so 10/10 https://t.co/MQfPK4zwuh | 10 | 10 | Sammy | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | True | True | True | Samoyed | 0.995466 | |
| 1072 | 679862121895714818 | 706 | 2678 | 2015-12-24 03:12:15 | "Dammit hooman I'm jus trynna lik the fler" 11/10 https://t.co/eRZRI8OTj7 | 11 | 10 | None | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | True | True | True | Entlebucher | 0.523206 | |
| 1073 | 679844490799091713 | 887 | 2593 | 2015-12-24 02:02:12 | This is Willie. He's floating away and needs your assistance. Please someone help Willie. 10/10 https://t.co/MJqygWqt8X | 10 | 10 | Willie | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | True | True | True | Airedale | 0.903832 | |
| 1074 | 679828447187857408 | 15839 | 39726 | 2015-12-24 00:58:27 | Everybody look at this beautiful pupper 13/10 https://t.co/hyAC5Hq9GC | 13 | 10 | None | pupper | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | True | True | True | Chihuahua | 0.346545 |
| 1075 | 679777920601223168 | 1281 | 3390 | 2015-12-23 21:37:40 | This is Rinna. She's melting. 10/10 get inside pupper https://t.co/PA0czwucsb | 10 | 10 | Rinna | pupper | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | True | True | True | Bloodhound | 0.528819 |
| 1076 | 679736210798047232 | 918 | 2311 | 2015-12-23 18:51:56 | This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP | 9 | 10 | None | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | True | True | True | French_bulldog | 0.319139 | |
| 1077 | 679722016581222400 | 539 | 1817 | 2015-12-23 17:55:32 | This is Mike. He is a Jordanian Frito Pilates. Frowning because he can't see directly in front of him. 8/10 https://t.co/NL5QJwdEpF | 8 | 10 | Mike | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | True | True | True | Boxer | 0.459604 | |
| 1078 | 679530280114372609 | 2347 | 5208 | 2015-12-23 05:13:38 | Guys this really needs to stop. We've been over this way too many times. This is a giraffe. We only rate dogs.. 7/10 https://t.co/yavgkHYPOC | 7 | 10 | NaN | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | True | False | False | Dalmatian | 0.750256 | |
| 1079 | 679511351870550016 | 1461 | 3711 | 2015-12-23 03:58:25 | Say hello to William. He makes fun of others because he's terrified of his own deep-seated insecurities. 7/10 https://t.co/bwuV6FlRxr | 7 | 10 | William | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | True | False | False | Chihuahua | 0.761972 | |
| 1080 | 679475951516934144 | 728 | 2304 | 2015-12-23 01:37:45 | This is Evy. She doesn't want to be a Koala. 9/10 https://t.co/VITeF0Kl9L | 9 | 10 | Evy | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | True | True | True | Maltese_dog | 0.145742 | |
| 1081 | 679462823135686656 | 21324 | 34856 | 2015-12-23 00:45:35 | Meet Hurley. He's the curly one. He hugs every other dog he sees during his walk. 11/10 for spreading the love https://t.co/M6vqkt2GKV | 11 | 10 | Hurley | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | True | True | True | Toy_poodle | 0.621780 | |
| 1082 | 679158373988876288 | 9193 | 23568 | 2015-12-22 04:35:49 | This is Rubio. He has too much skin. 11/10 https://t.co/NLOHmlENag | 11 | 10 | Rubio | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | True | True | False | Pug | 0.272205 | |
| 1083 | 679148763231985668 | 1163 | 3028 | 2015-12-22 03:57:37 | I know everyone's excited for Christmas but that doesn't mean you can send in reindeer. We only rate dogs... 8/10 https://t.co/eWjWgbOCYL | 8 | 10 | None | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | True | False | True | Italian_greyhound | 0.302685 | |
| 1084 | 679132435750195208 | 1314 | 3253 | 2015-12-22 02:52:45 | This is Louis. He's a river dancer. His friends think it's badass. All are very supportive. 10/10 for Louis https://t.co/qoIvjKMY58 | 10 | 10 | Louis | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | True | True | True | Scottish_deerhound | 0.194610 | |
| 1085 | 679111216690831360 | 2893 | 6514 | 2015-12-22 01:28:25 | This is officially the greatest yawn of all time. 12/10 https://t.co/4R0Cc0sLVE | 12 | 10 | NaN | https://pbs.twimg.com/ext_tw_video_thumb/679111114081370114/pu/img/hFca8BHjRopgD0cM.jpg | 1 | True | True | True | Kelpie | 0.189423 | |
| 1086 | 678991772295516161 | 1333 | 2537 | 2015-12-21 17:33:48 | If your Monday isn't going so well just take a look at this. Both 12/10 https://t.co/GJT6SILPGU | 12 | 10 | None | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | True | True | True | Eskimo_dog | 0.330216 | |
| 1087 | 678969228704284672 | 528 | 1796 | 2015-12-21 16:04:13 | Meet Lola. She's a Metamorphic Chartreuse. Plays with her food. Insubordinate and churlish. Exquisite hardwood 11/10 https://t.co/etpBNXwN7f | 11 | 10 | Lola | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | True | True | True | Labrador_retriever | 0.680251 | |
| 1088 | 678800283649069056 | 1018 | 2810 | 2015-12-21 04:52:53 | Here's a pupper with some mean tan lines. Snazzy sweater though 12/10 https://t.co/DpCSVsl6vu | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | True | True | True | Labrador_retriever | 0.213673 |
| 1089 | 678798276842360832 | 1350 | 3804 | 2015-12-21 04:44:55 | This is Linda. She fucking hates trees. 7/10 https://t.co/blaY85FIxR | 7 | 10 | Linda | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | True | True | True | Airedale | 0.583122 | |
| 1090 | 678774928607469569 | 1043 | 3037 | 2015-12-21 03:12:08 | This is Tug. He's not required to wear the cone he just wants his voice to project more clearly. 11/10 https://t.co/Sp739Ou2qx | 11 | 10 | Tug | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | True | True | True | Pembroke | 0.194681 | |
| 1091 | 678764513869611008 | 544 | 1788 | 2015-12-21 02:30:45 | Meet Wilson. He got caught humping the futon. He's like "dude, help me out here" 10/10 I'd help Wilson out https://t.co/m6XoclB0qv | 10 | 10 | Wilson | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | True | True | True | Irish_terrier | 0.696646 | |
| 1092 | 678755239630127104 | 3741 | 7802 | 2015-12-21 01:53:54 | This is Dash. He didn't think the water would be that cold. Damn it Dash it's December. Think a little. 10/10 https://t.co/NqcOwG8pxW | 10 | 10 | Dash | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | True | True | True | Malamute | 0.606654 | |
| 1093 | 678643457146150913 | 489 | 2250 | 2015-12-20 18:29:43 | Meet Grizz. He just arrived. Couldn't wait until Christmas. Worried bc he saw the swastikas on the carpet. 10/10 https://t.co/QBGwYrT7rv | 10 | 10 | Grizz | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | True | True | False | Labrador_retriever | 0.338757 | |
| 1094 | 678446151570427904 | 1785 | 4358 | 2015-12-20 05:25:42 | Touching scene here. Really stirs up the emotions. The bond between father & son. So beautiful. 10/10 for both pups https://t.co/AJWJHov5gx | 10 | 10 | None | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.284492 | |
| 1095 | 678424312106393600 | 2880 | 5916 | 2015-12-20 03:58:55 | This is Crystal. She's a shitty fireman. No sense of urgency. People could be dying Crystal. 2/10 just irresponsible https://t.co/rtMtjSl9pz | 2 | 10 | Crystal | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | True | True | True | Maltese_dog | 0.759945 | |
| 1096 | 678410210315247616 | 2072 | 4640 | 2015-12-20 03:02:53 | Say hello to Jerome. He can shoot french fries out of his mouth at insane speeds. Deadly af. 10/10 https://t.co/dIy88HwrX8 | 10 | 10 | Jerome | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | True | True | True | Schipperke | 0.145877 | |
| 1097 | 678396796259975168 | 478 | 1731 | 2015-12-20 02:09:34 | These little fellas have opposite facial expressions. Both 12/10 https://t.co/LmThv0GWen | 12 | 10 | None | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | True | True | True | Pembroke | 0.956180 | |
| 1098 | 678389028614488064 | 473 | 2044 | 2015-12-20 01:38:42 | This is Bella. She just learned that her final grade in chem was a 92.49 \npoor pupper 11/10 https://t.co/auOoKuoveM | 11 | 10 | Bella | pupper | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | True | True | True | Miniature_pinscher | 0.516284 |
| 1099 | 678341075375947776 | 612 | 1896 | 2015-12-19 22:28:09 | This pupper likes tape. 12/10 https://t.co/cSp6w5GWgm | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | True | True | True | Golden_retriever | 0.853284 |
| 1100 | 678334497360859136 | 304 | 1427 | 2015-12-19 22:02:01 | This is Rosie. She has a snazzy bow tie and a fin for a tail. Probably super fast underwater. Cool socks 10/10 https://t.co/GO76MdGBs0 | 10 | 10 | Rosie | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | True | True | True | Norfolk_terrier | 0.378643 | |
| 1101 | 678278586130948096 | 6857 | 12531 | 2015-12-19 18:19:51 | Another spooky pupper here. Most definitely floating. No legs. Probably knows some dark magic. 10/10 very spooked https://t.co/JK8MByRzgj | 10 | 10 | None | pupper | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | True | True | True | Maltese_dog | 0.897841 |
| 1102 | 678255464182861824 | 418 | 1726 | 2015-12-19 16:47:58 | This is Jessifer. She is a Bismoth Teriyaki. Flowers being attacked by hurricanes on bandana (rad). 9/10 stellar pup https://t.co/nZhmRwZzWv | 9 | 10 | Jessifer | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | True | True | True | Chihuahua | 0.613819 | |
| 1103 | 678021115718029313 | 7148 | 15018 | 2015-12-19 01:16:45 | This is Reese. He likes holding hands. 12/10 https://t.co/cbLroGCbmh | 12 | 10 | Reese | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | True | True | True | Miniature_pinscher | 0.822048 | |
| 1104 | 677918531514703872 | 463 | 1476 | 2015-12-18 18:29:07 | "Everything looks pretty good in there. Make sure to brush your gums. Been flossing? How's school going?" Both 10/10 https://t.co/lWL2IMJqLR | 10 | 10 | None | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | True | True | True | Eskimo_dog | 0.199347 | |
| 1105 | 677895101218201600 | 2384 | 5275 | 2015-12-18 16:56:01 | Guys this was terrifying. Really spooked me up. We don't rate ghosts. We rate dogs. Please only send dogs... 9/10 https://t.co/EJImi1udYb | 9 | 10 | None | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | True | True | True | Dalmatian | 0.550702 | |
| 1106 | 677716515794329600 | 1104 | 3323 | 2015-12-18 05:06:23 | IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq | 12 | 10 | None | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | False | False | True | Teddy | 0.662908 | |
| 1107 | 677700003327029250 | 1622 | 3689 | 2015-12-18 04:00:46 | This is Ralph. He's an interpretive dancer. 10/10 https://t.co/zoDdPyPFsa | 10 | 10 | Ralph | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | True | False | True | Siberian_husky | 0.120849 | |
| 1108 | 677698403548192770 | 363 | 1332 | 2015-12-18 03:54:25 | This is Sadie. She got her holidays confused. 9/10 damn it Sadie https://t.co/fm7HxOsuPK | 9 | 10 | Sadie | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | True | True | True | Shih-tzu | 0.916645 | |
| 1109 | 677687604918272002 | 950 | 2681 | 2015-12-18 03:11:30 | This was Cindy's face when she heard Susan forgot the snacks for after the kid's soccer game. 11/10 https://t.co/gzkuVGRgAD | 11 | 10 | None | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | True | False | True | Pembroke | 0.573047 | |
| 1110 | 677673981332312066 | 1677 | 3603 | 2015-12-18 02:17:22 | Endangered triangular pup here. Could be a wizard. Caught mid-laugh. No legs. Just fluff. Probably a wizard. 9/10 https://t.co/GFVIHIod0Z | 9 | 10 | None | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | True | False | True | Maltese_dog | 0.817908 | |
| 1111 | 677644091929329666 | 886 | 2040 | 2015-12-18 00:18:36 | This is a dog swinging. I really enjoyed it so I hope you all do as well. 11/10 https://t.co/Ozo9KHTRND | 11 | 10 | NaN | https://pbs.twimg.com/ext_tw_video_thumb/677644010865999872/pu/img/zVHEMYnJKzq1SauT.jpg | 1 | True | True | False | Chihuahua | 0.626236 | |
| 1112 | 677565715327688705 | 513 | 1409 | 2015-12-17 19:07:09 | Contortionist pup here. Inside pentagram. Clearly worships Satan. Known to slowly push fragile stuff off tables 6/10 https://t.co/EX9oR55VMe | 6 | 10 | None | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | True | True | False | Basset | 0.397295 | |
| 1113 | 677547928504967168 | 4076 | 7568 | 2015-12-17 17:56:29 | Not much to say here. I just think everyone needs to see this. 12/10 https://t.co/AGag0hFHpe | 12 | 10 | None | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.914978 | |
| 1114 | 677530072887205888 | 250 | 1161 | 2015-12-17 16:45:31 | Say hello to Axel. He's a Black Chevy Pinot on wheels. 0 to 60 in 5.7 seconds (if downhill). 9/10 I call shotgun https://t.co/DKe9DBnnHE | 9 | 10 | Axel | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.689259 | |
| 1115 | 677334615166730240 | 328 | 1477 | 2015-12-17 03:48:51 | This dog gave up mid jump. 9/10 https://t.co/KmMv3Y2zI8 | 9 | 10 | None | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | True | True | True | Lakeland_terrier | 0.859392 | |
| 1116 | 677331501395156992 | 265 | 1189 | 2015-12-17 03:36:28 | Meet Humphrey. He's a Northern Polyp Viagra. One ear works. Face stuck like that. Always surprised. 9/10 petable af https://t.co/FS7eJQM2F4 | 9 | 10 | Humphrey | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | True | True | True | Beagle | 0.313464 | |
| 1117 | 677314812125323265 | 611 | 1799 | 2015-12-17 02:30:09 | Meet Tassy & Bee. Tassy is pretty chill, but Bee is convinced the Ruffles are haunted. 10/10 & 11/10 respectively https://t.co/fgORpmTN9C | 10 | 10 | Tassy | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | True | True | True | Blenheim_spaniel | 0.924127 | |
| 1118 | 677301033169788928 | 471 | 1362 | 2015-12-17 01:35:24 | This is Juckson. He's totally on his way to a nascar race. 5/10 for Juckson https://t.co/IoLRvF0Kak | 5 | 10 | Juckson | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | True | True | True | Japanese_spaniel | 0.661178 | |
| 1119 | 677269281705472000 | 790 | 2164 | 2015-12-16 23:29:14 | This is the happiest pupper I've ever seen. 10/10 would trade lives with https://t.co/ep8ATEJwRb | 10 | 10 | NaN | pupper | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | True | True | True | Shetland_sheepdog | 0.656616 |
| 1120 | 677187300187611136 | 1033 | 2981 | 2015-12-16 18:03:28 | Here we see a Byzantine Rigatoni. Very aerodynamic. No eyes. Actually not windy here they just look like that. 9/10 https://t.co/gzI0m6wXRo | 9 | 10 | None | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | True | True | True | English_setter | 0.282396 | |
| 1121 | 676975532580409345 | 1203 | 3015 | 2015-12-16 04:01:59 | This is Cooper. He doesn't know how cheese works. Likes the way it feels on his face. Cheeky tongue slip. 11/10 https://t.co/j1zczS0lI5 | 11 | 10 | Cooper | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | True | True | True | Malamute | 0.363257 | |
| 1122 | 676957860086095872 | 907 | 2395 | 2015-12-16 02:51:45 | 10/10 I'd follow this dog into battle no questions asked https://t.co/ngTNXYQF0L | 10 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/676957802976419840/pu/img/dCj-qlXo73A5hf6Q.jpg | 1 | True | True | True | Labrador_retriever | 0.772423 | |
| 1123 | 676949632774234114 | 448 | 1413 | 2015-12-16 02:19:04 | This is Tyrus. He's a Speckled Centennial Ticonderoga. Terrified of floating red ball. Nifty bandana. 8/10 v petable https://t.co/HqM3YhCaaa | 8 | 10 | Tyrus | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | True | True | True | Welsh_springer_spaniel | 0.206479 | |
| 1124 | 676946864479084545 | 426 | 1844 | 2015-12-16 02:08:04 | This pups goal was to get all four feet as close to each other as possible. Valiant effort 12/10 https://t.co/2mXALbgBTV | 12 | 10 | None | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | True | True | True | Pekinese | 0.752707 | |
| 1125 | 676936541936185344 | 5515 | 13809 | 2015-12-16 01:27:03 | Here we see a rare pouched pupper. Ample storage space. Looks alert. Jumps at random. Kicked open that door. 8/10 https://t.co/mqvaxleHRz | 8 | 10 | None | pupper | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | True | True | False | Chesapeake_bay_retriever | 0.545286 |
| 1126 | 676864501615042560 | 808 | 2294 | 2015-12-15 20:40:47 | Meet Ash. He's just a head now. Lost his body during the Third Crusade. Still in good spirits. 10/10 would pet well https://t.co/NJj2uP0atK | 10 | 10 | Ash | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | True | False | True | Chesapeake_bay_retriever | 0.371146 | |
| 1127 | 676821958043033607 | 17605 | 25124 | 2015-12-15 17:51:44 | Finally some constructive political change in this country. 11/10 https://t.co/mvQaETHVSb | 11 | 10 | None | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | True | True | True | Great_pyrenees | 0.869804 | |
| 1128 | 676811746707918848 | 469 | 1536 | 2015-12-15 17:11:09 | Say hello to Penny & Gizmo. They are practicing their caroling. The ambition in the room is tangible. 9/10 for both https://t.co/aqBHjjh5VD | 9 | 10 | Penny | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | True | True | True | Chihuahua | 0.440916 | |
| 1129 | 676617503762681856 | 1108 | 3149 | 2015-12-15 04:19:18 | I promise this wasn't meant to be a cuteness overload account but ermergerd look at this cozy pupper. 13/10 https://t.co/mpQl2rJjDh | 13 | 10 | None | pupper | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | True | True | True | Chihuahua | 0.841084 |
| 1130 | 676603393314578432 | 440 | 1280 | 2015-12-15 03:23:14 | This is Godzilla pupper. He had a ruff childhood & now deflects that pain outward by terrorizing cities. Tragic 9/10 https://t.co/g1tLGkyaxr | 9 | 10 | Godzilla | pupper | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | True | True | True | Whippet | 0.877021 |
| 1131 | 676588346097852417 | 896 | 2533 | 2015-12-15 02:23:26 | This is Bubbles. He kinda resembles a fish. Always makes eye contact with u no matter what. Sneaky tongue slip. 5/10 https://t.co/Nrhvc5tLFT | 5 | 10 | Bubbles | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | True | True | True | Boston_bull | 0.976577 | |
| 1132 | 676533798876651520 | 621 | 2025 | 2015-12-14 22:46:41 | ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ | 12 | 10 | None | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | True | False | False | Chow | 0.265274 | |
| 1133 | 676496375194980353 | 602 | 1641 | 2015-12-14 20:17:59 | Say hello to Griffin. He's upset because his costume for Halloween didn't arrive until today. 9/10 cheer up pup https://t.co/eoBCjSFajX | 9 | 10 | Griffin | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | True | True | True | Pug | 0.985387 | |
| 1134 | 676470639084101634 | 5224 | 12616 | 2015-12-14 18:35:43 | Three generations of pupper. 11/10 for all https://t.co/tAmQYvzrau | 11 | 10 | None | pupper | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | True | True | False | Golden_retriever | 0.790386 |
| 1135 | 676440007570247681 | 748 | 1863 | 2015-12-14 16:34:00 | Hope your Monday isn't too awful. Here's two baseball puppers. 11/10 for each https://t.co/dB0H9hdZai | 11 | 10 | None | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | True | True | True | Maltese_dog | 0.579472 | |
| 1136 | 676430933382295552 | 385 | 1526 | 2015-12-14 15:57:56 | Meet Duke. He's an Urban Parmesan. They know he's scared of the green rubber dog. "Why u do dis?" thinks Duke. 10/10 https://t.co/3bim9U5Idr | 10 | 10 | Duke | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | True | True | True | Golden_retriever | 0.583875 | |
| 1137 | 676263575653122048 | 609 | 2243 | 2015-12-14 04:52:55 | All this pupper wanted to do was go skiing. No one told him about the El Niño. Poor pupper. 10/10 maybe next year https://t.co/fTgbq1UBR9 | 10 | 10 | None | pupper | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | False | True | False | Teddy | 0.098283 |
| 1138 | 676237365392908289 | 331 | 1335 | 2015-12-14 03:08:46 | Say hello to Winston. He has no respect for the system. Much rebellion. I think that's a palm tree... nice. 8/10 https://t.co/dOLQddhXLZ | 8 | 10 | Winston | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | True | True | True | French_bulldog | 0.961996 | |
| 1139 | 676191832485810177 | 1145 | 2478 | 2015-12-14 00:07:50 | These two pups just met and have instantly bonded. Spectacular scene. Mesmerizing af. 10/10 and 7/10 for blue dog https://t.co/gwryaJO4tC | 10 | 10 | None | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | True | True | False | Chihuahua | 0.376741 | |
| 1140 | 676146341966438401 | 744 | 2077 | 2015-12-13 21:07:04 | This is Bert. He likes flowers. 10/10 https://t.co/lmQRrNxaQu | 10 | 10 | Bert | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | True | True | False | Irish_water_spaniel | 0.388332 | |
| 1141 | 676101918813499392 | 1284 | 3042 | 2015-12-13 18:10:33 | Meet Striker. He's ready for Christmas. 11/10 https://t.co/B3xxSLjQSH | 11 | 10 | Striker | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | True | True | True | Shih-tzu | 0.225848 | |
| 1142 | 676089483918516224 | 483 | 1431 | 2015-12-13 17:21:08 | "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp | 9 | 10 | None | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | True | True | True | Bull_mastiff | 0.743808 | |
| 1143 | 675898130735476737 | 653 | 1774 | 2015-12-13 04:40:46 | I'm sure you've all seen this pupper. Not prepared at all for the flying disc of terror. 10/10 https://t.co/G0pQiFGM7O | 10 | 10 | None | pupper | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | True | True | True | Labrador_retriever | 0.407430 |
| 1144 | 675891555769696257 | 976 | 2297 | 2015-12-13 04:14:39 | This is Donny. He's summoning the demon monster Babadook. 6/10 Donny please no that won't be a good time for anyone https://t.co/kiW6Knb7Gp | 6 | 10 | Donny | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | True | True | True | Italian_greyhound | 0.305637 | |
| 1145 | 675888385639251968 | 1067 | 2581 | 2015-12-13 04:02:03 | Breathtaking scene. A father taking care of his newborn pup. Tugs at the heartstrings. 10/10 restores my faith https://t.co/06oZdehGEa | 10 | 10 | None | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | True | True | True | West_highland_white_terrier | 0.672117 | |
| 1146 | 675870721063669760 | 632 | 1783 | 2015-12-13 02:51:51 | & this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6 | 11 | 10 | None | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | True | True | True | Golden_retriever | 0.263892 | |
| 1147 | 675853064436391936 | 1460 | 2927 | 2015-12-13 01:41:41 | Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw | 11 | 10 | None | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | True | True | True | Labrador_retriever | 0.868367 | |
| 1148 | 675845657354215424 | 1000 | 2477 | 2015-12-13 01:12:15 | This is Pepper. She's not fully comfortable riding her imaginary bike yet. 10/10 don't worry pupper, it gets easier https://t.co/40dj4eTsXG | 10 | 10 | Pepper | pupper | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | True | True | True | Pug | 0.883952 |
| 1149 | 675822767435051008 | 591 | 1652 | 2015-12-12 23:41:18 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s https://t.co/GK2HJtkdQk | 10 | 10 | None | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | True | True | True | Pomeranian | 0.460710 | |
| 1150 | 675820929667219457 | 260 | 1140 | 2015-12-12 23:34:00 | Here's a handful of sleepy puppers. All look unaware of their surroundings. Lousy guard dogs. Still cute tho 11/10s https://t.co/lyXX3v5j4s | 11 | 10 | None | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | True | True | True | Basset | 0.556373 | |
| 1151 | 675798442703122432 | 3787 | 11101 | 2015-12-12 22:04:39 | This is Bernie. He just touched a boob for the first time. 10/10 https://t.co/whQKMygnK6 | 10 | 10 | Bernie | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | True | True | True | Beagle | 0.681218 | |
| 1152 | 675781562965868544 | 537 | 1750 | 2015-12-12 20:57:34 | Say hello to Buddah. He was Waldo for Halloween. 11/10 https://t.co/DVAqAnb624 | 11 | 10 | Buddah | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | True | True | True | Maltese_dog | 0.921968 | |
| 1153 | 675740360753160193 | 388 | 1257 | 2015-12-12 18:13:51 | Here's a pupper licking in slow motion. 12/10 please enjoy https://t.co/AUJi8ujxw9 | 12 | 10 | None | pupper | https://pbs.twimg.com/ext_tw_video_thumb/675740268751138818/pu/img/dVaVeFAVT-lk_1ZV.jpg | 1 | True | True | True | Golden_retriever | 0.800495 |
| 1154 | 675710890956750848 | 928 | 2046 | 2015-12-12 16:16:45 | This is Lenny. He was just told that he couldn't explore the fish tank. 12/10 smh all that work for nothing https://t.co/JWi6YrpiO1 | 12 | 10 | Lenny | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | True | True | True | Standard_schnauzer | 0.441427 | |
| 1155 | 675706639471788032 | 106 | 693 | 2015-12-12 15:59:51 | This is a Sizzlin Menorah spaniel from Brooklyn named Wylie. Lovable eyes. Chiller as hell. 10/10 and I'm out.. poof https://t.co/7E0AiJXPmI | 10 | 10 | NaN | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | True | True | True | English_springer | 0.990300 | |
| 1156 | 675534494439489536 | 470 | 1953 | 2015-12-12 04:35:48 | Seriously guys?! Only send in dogs. I only rate dogs. This is a baby black bear... 11/10 https://t.co/H7kpabTfLj | 11 | 10 | NaN | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | True | True | True | Chow | 0.749368 | |
| 1157 | 675531475945709568 | 428 | 1276 | 2015-12-12 04:23:49 | This is Ellie AKA Queen Slayer of the Orbs. Very self-motivated. Great yard. Rad foliage. 10/10 would pet diligently https://t.co/c9jmg3Xtzn | 10 | 10 | Ellie | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | True | True | True | Pembroke | 0.918441 | |
| 1158 | 675522403582218240 | 316 | 1122 | 2015-12-12 03:47:46 | Meet Sammy. He's a Motorola Firefox. Hat under hoodie (must be a half-decent up and coming white rapper) 10/10 https://t.co/rO2zxf0OQ0 | 10 | 10 | Sammy | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | True | True | True | Cocker_spaniel | 0.299708 | |
| 1159 | 675517828909424640 | 507 | 1414 | 2015-12-12 03:29:35 | 12/10 stay woke https://t.co/XDiQw4Akiw | 12 | 10 | None | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | True | True | True | Scottish_deerhound | 0.240591 | |
| 1160 | 675497103322386432 | 1443 | 3397 | 2015-12-12 02:07:14 | Meet Reggie. He's going for the world record. Must concentrate. Focus up pup. 11/10 we all believe in you Reggie https://t.co/h3AWz4AzuC | 11 | 10 | Reggie | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | True | True | True | Vizsla | 0.519589 | |
| 1161 | 675489971617296384 | 672 | 1406 | 2015-12-12 01:38:53 | RT until we find this dog. Clearly a cool dog (front leg relaxed out window). Looks to be a superb driver. 10/10 https://t.co/MnTrKaQ8Wn | 10 | 10 | None | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | True | False | True | West_highland_white_terrier | 0.139613 | |
| 1162 | 675432746517426176 | 627 | 1623 | 2015-12-11 21:51:30 | Happy Friday. Here's some golden puppers. 12/10 for all https://t.co/wNkqAED6lG | 12 | 10 | None | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | True | True | True | Labrador_retriever | 0.986548 | |
| 1163 | 675372240448454658 | 563 | 1838 | 2015-12-11 17:51:04 | The tail alone is 13/10. Great dog, better owner https://t.co/IyAXinfyju | 13 | 10 | None | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | True | True | True | Chihuahua | 0.416385 | |
| 1164 | 675362609739206656 | 262 | 1136 | 2015-12-11 17:12:48 | This is Daisy. She loves that shoe. Still no seat belt. Super churlish. 12/10 the dogs are killing it today https://t.co/cZlkvgRPdn | 12 | 10 | Daisy | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | True | False | True | Labrador_retriever | 0.479008 | |
| 1165 | 675349384339542016 | 2532 | 4237 | 2015-12-11 16:20:15 | Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP | 13 | 10 | None | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | True | True | True | Borzoi | 0.866367 | |
| 1166 | 675334060156301312 | 1436 | 3007 | 2015-12-11 15:19:21 | Good morning here's a grass pupper. 12/10 https://t.co/2d68FmWGGs | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | True | True | True | Pembroke | 0.773135 |
| 1167 | 675149409102012420 | 1878 | 4037 | 2015-12-11 03:05:37 | holy shit 12/10 https://t.co/p6O8X93bTQ | 12 | 10 | None | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | True | True | True | Chow | 0.999876 | |
| 1168 | 675147105808306176 | 273 | 1026 | 2015-12-11 02:56:28 | When you're presenting a group project and the 4th guy tells the teacher that he did all the work. 10/10 https://t.co/f50mbB4UWS | 10 | 10 | None | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | True | True | True | Golden_retriever | 0.949215 | |
| 1169 | 675146535592706048 | 349 | 1300 | 2015-12-11 02:54:12 | This is Coops. He's yelling at the carpet. Not very productive Coops. 7/10 https://t.co/Uz52oYnHzF | 7 | 10 | Coops | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | False | True | True | Dingo | 0.288447 | |
| 1170 | 675145476954566656 | 1011 | 2305 | 2015-12-11 02:49:59 | What an honor. 3 dogs here. Blond one is clearly a gymnast. Other two just confused. Very nifty pups. 9/10 for all https://t.co/YDgstgIDGs | 9 | 10 | None | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | True | True | True | Labrador_retriever | 0.458746 | |
| 1171 | 675111688094527488 | 283 | 1042 | 2015-12-11 00:35:44 | Say hello to Oliver. He thought what was inside the pillow should be outside the pillow. Blurry since birth. 8/10 https://t.co/lFU9W31Fg9 | 8 | 10 | Oliver | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | True | True | True | Labrador_retriever | 0.631501 | |
| 1172 | 675109292475830276 | 1259 | 3006 | 2015-12-11 00:26:12 | C'mon guys. We've been over this. We only rate dogs. This is a cow. Please only submit dogs. Thank you...... 9/10 https://t.co/WjcELNEqN2 | 9 | 10 | NaN | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | True | True | True | Dalmatian | 0.989519 | |
| 1173 | 675047298674663426 | 366 | 1141 | 2015-12-10 20:19:52 | This is a fluffy albino Bacardi Columbia mix. Excellent at the tweets. 11/10 would hug gently https://t.co/diboDRUuEI | 11 | 10 | NaN | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | True | True | True | Samoyed | 0.978007 | |
| 1174 | 675006312288268288 | 252 | 1057 | 2015-12-10 17:37:00 | Say hello to Mollie. This pic was taken after she bet all her toys on Ronda Rousey. 10/10 hang in there pupper https://t.co/QMmAqA9VqO | 10 | 10 | Mollie | pupper | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | True | False | True | Boxer | 0.654697 |
| 1175 | 675003128568291329 | 517 | 1672 | 2015-12-10 17:24:21 | Meet Laela. She's adorable. Magnificent eyes. But I don't see a seat belt. Insubordinate.. and churlish. Still 12/10 https://t.co/pCGDgLkLo6 | 12 | 10 | Laela | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | True | True | True | Pembroke | 0.655279 | |
| 1176 | 674999807681908736 | 1232 | 2433 | 2015-12-10 17:11:09 | Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8 | 13 | 10 | None | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | True | True | True | Rottweiler | 0.591829 | |
| 1177 | 674805413498527744 | 391 | 934 | 2015-12-10 04:18:42 | When your entire life is crumbling before you and you're trying really hard to hold your shit together.\n10/10 https://t.co/vqFkgYPCW8 | 10 | 10 | None | https://pbs.twimg.com/ext_tw_video_thumb/674805331965399040/pu/img/-7bw8niVrgIkLKOW.jpg | 1 | True | True | True | English_springer | 0.594467 | |
| 1178 | 674800520222154752 | 949 | 3240 | 2015-12-10 03:59:15 | This is Tedders. He broke his leg saving babies from the Pompeii eruption. 11/10 where's his Purple Heart? @POTUS https://t.co/cMI2AcLm4B | 11 | 10 | Tedders | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | True | True | False | Pembroke | 0.876479 | |
| 1179 | 674793399141146624 | 1225 | 2697 | 2015-12-10 03:30:58 | I have found another. 13/10 https://t.co/HwroPYv8pY | 13 | 10 | None | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | True | True | True | Giant_schnauzer | 0.119693 | |
| 1180 | 674790488185167872 | 278 | 1180 | 2015-12-10 03:19:24 | ER... MER... GERD 13/10 https://t.co/L1puJISV1a | 13 | 10 | None | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | True | True | True | Labrador_retriever | 0.801903 | |
| 1181 | 674788554665512960 | 230 | 871 | 2015-12-10 03:11:43 | Say hello to Maggie. She's a Western Septic Downy. Pretends to be Mexican. Great hardwood flooring. 9/10 https://t.co/P3ElQ2wsjb | 9 | 10 | Maggie | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | True | True | True | Miniature_poodle | 0.349561 | |
| 1182 | 674774481756377088 | 532 | 1213 | 2015-12-10 02:15:47 | This is Superpup. His head isn't proportional to his body. Has yet to serve any justice. 11/10 maybe one day pupper https://t.co/gxIFgg8ktm | 11 | 10 | Superpup | pupper | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | True | True | False | Chihuahua | 0.407016 |
| 1183 | 674764817387900928 | 263 | 852 | 2015-12-10 01:37:23 | These two pups are masters of camouflage. Very dedicated to the craft. Both must've spent decades practicing. 10/10s https://t.co/RBiQ8hPqwr | 10 | 10 | None | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | True | False | True | Samoyed | 0.634695 | |
| 1184 | 674752233200820224 | 516 | 1580 | 2015-12-10 00:47:23 | Everyone please just appreciate how perfect these two photos are. 12/10 for both https://t.co/rLf7asnHxO | 12 | 10 | None | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | True | True | True | Vizsla | 0.665516 | |
| 1185 | 674743008475090944 | 607 | 1514 | 2015-12-10 00:10:43 | This is Sophie. She just saw a spider. 10/10 don't just stand there Sophie https://t.co/VagYftZccT | 10 | 10 | Sophie | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.583054 | |
| 1186 | 674739953134403584 | 437 | 1194 | 2015-12-09 23:58:35 | "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10 https://t.co/URNs5zFskc | 11 | 10 | None | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | True | False | True | Dandie_dinmont | 0.175915 | |
| 1187 | 674737130913071104 | 103 | 693 | 2015-12-09 23:47:22 | Meet Rufio. He is unaware of the pink legless pupper wrapped around him. Might want to get that checked 10/10 & 4/10 https://t.co/KNfLnYPmYh | 10 | 10 | Rufio | pupper | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | True | True | True | Pomeranian | 0.948537 |
| 1188 | 674670581682434048 | 729 | 1751 | 2015-12-09 19:22:56 | Meet Jeb & Bush. Jeb is somehow stuck in that fence and Bush won't stop whispering sweet nothings in his ear. 9/10s https://t.co/NRNExUy9Hm | 9 | 10 | Jeb | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | True | True | True | Malamute | 0.180079 | |
| 1189 | 674646392044941312 | 557 | 1533 | 2015-12-09 17:46:48 | Two gorgeous dogs here. Little waddling dog is a rebel. Refuses to look at camera. Must be a preteen. 5/10 & 8/10 https://t.co/YPfw7oahbD | 5 | 10 | None | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | True | True | True | Flat-coated_retriever | 0.837448 | |
| 1190 | 674638615994089473 | 650 | 1806 | 2015-12-09 17:15:54 | This pupper is fed up with being tickled. 12/10 I'm currently working on an elaborate heist to steal this dog https://t.co/F33n1hy3LL | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | True | True | True | Pomeranian | 0.846986 |
| 1191 | 674468880899788800 | 2275 | 6676 | 2015-12-09 06:01:26 | This is Louis. He thinks he's flying. 13/10 this is a legendary pup https://t.co/6d9WziPXmx | 13 | 10 | Louis | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | True | True | True | Chow | 0.526230 | |
| 1192 | 674447403907457024 | 393 | 1137 | 2015-12-09 04:36:06 | This pupper just wants a belly rub. This pupper has nothing to do w the tree being sideways now. 10/10 good pupper https://t.co/AyJ7Ohk71f | 10 | 10 | None | pupper | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | True | True | True | Brabancon_griffon | 0.409909 |
| 1193 | 674422304705744896 | 592 | 1536 | 2015-12-09 02:56:22 | This is Ava. She doesn't understand flowers. 12/10 would caress firmly https://t.co/BxTJAFSIgk | 12 | 10 | Ava | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | True | True | False | Golden_retriever | 0.964497 | |
| 1194 | 674416750885273600 | 157 | 731 | 2015-12-09 02:34:18 | This is Jonah. He's a Stinted Fisher Price. Enjoys chewing on his miniature RipStik. 10/10 very upbeat fellow https://t.co/7qjXy1uUYY | 10 | 10 | Jonah | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | True | True | True | Chihuahua | 0.287201 | |
| 1195 | 674291837063053312 | 6533 | 15817 | 2015-12-08 18:17:56 | This is Kenny. He just wants to be included in the happenings. 11/10 https://t.co/2S6oye3XqK | 11 | 10 | Kenny | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | True | True | True | Cardigan | 0.611525 | |
| 1196 | 674271431610523648 | 800 | 1682 | 2015-12-08 16:56:51 | "AT DAWN, WE RIDE"\n10/10 for both dogs https://t.co/3aXX6wH6it | 10 | 10 | None | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | True | True | True | German_shepherd | 0.991454 | |
| 1197 | 674269164442398721 | 255 | 961 | 2015-12-08 16:47:50 | This is Bob. He's a Juniper Fitzsimmons. His body is 2, but his face is 85. Always looks miserable. Nice stool. 8/10 https://t.co/vYe9RlVz2N | 8 | 10 | Bob | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | True | True | True | Pug | 0.622921 | |
| 1198 | 674262580978937856 | 498 | 1391 | 2015-12-08 16:21:41 | This is Gus. He's super stoked about being an elephant. Couldn't be happier. 9/10 for elephant pupper https://t.co/gJS1qU0jP7 | 9 | 10 | Gus | pupper | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | True | True | True | Greater_swiss_mountain_dog | 0.519428 |
| 1199 | 674255168825880576 | 619 | 1581 | 2015-12-08 15:52:13 | Say hello to Bobbay. He's a marshmallow wizard. 10/10 https://t.co/r6LZN1o1Gx | 10 | 10 | Bobbay | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | True | True | True | Eskimo_dog | 0.615741 | |
| 1200 | 674082852460433408 | 186 | 804 | 2015-12-08 04:27:30 | This is a Sagitariot Baklava mix. Loves her new hat. 11/10 radiant pup https://t.co/Bko5kFJYUU | 11 | 10 | NaN | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | True | True | False | Pomeranian | 0.666957 | |
| 1201 | 674075285688614912 | 316 | 1047 | 2015-12-08 03:57:26 | Say hello to Mitch. He thinks that's a hat. Nobody has told him yet. 11/10 please no one tell him https://t.co/7jOPktauh4 | 11 | 10 | Mitch | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | True | True | True | Airedale | 0.305392 | |
| 1202 | 674053186244734976 | 1441 | 3576 | 2015-12-08 02:29:37 | This is Stanley. Yes he is aware of the spoon's presence, he just doesn't know what he should do about it. 10/10 https://t.co/gQAMg5ypW5 | 10 | 10 | Stanley | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | True | True | True | Cardigan | 0.984725 | |
| 1203 | 674051556661161984 | 530 | 1564 | 2015-12-08 02:23:09 | This is Lucy. She knits. Specializes in toboggans. 10/10 I'd buy a toboggan from Lucy https://t.co/YE2XDHy4Yk | 10 | 10 | Lucy | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | True | False | False | Shih-tzu | 0.179777 | |
| 1204 | 674042553264685056 | 142 | 772 | 2015-12-08 01:47:22 | Yea I can't handle the cuteness anymore. Curls for days. 12/10 for all https://t.co/sAI6gCGZYX | 12 | 10 | None | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | True | True | True | Toy_poodle | 0.927975 | |
| 1205 | 674038233588723717 | 456 | 1176 | 2015-12-08 01:30:12 | This is Kaiya. She's an aspiring shoe model. 12/10 follow your dreams pupper https://t.co/nX8FiGRHvk | 12 | 10 | Kaiya | pupper | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | True | True | True | Eskimo_dog | 0.358459 |
| 1206 | 674036086168010753 | 240 | 906 | 2015-12-08 01:21:40 | Meet Daisy. She has no eyes & her face has been blurry since birth. Quite the trooper tho. Still havin a blast. 9/10 https://t.co/jcNdw43BIP | 9 | 10 | Daisy | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | True | True | True | Toy_poodle | 0.685617 | |
| 1207 | 674024893172875264 | 1360 | 1914 | 2015-12-08 00:37:11 | When you realize it doesn't matter how hard you study. You're still going to fail. 10/10 https://t.co/qzYXbyv0SJ | 10 | 10 | None | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | True | True | False | Pomeranian | 0.648500 | |
| 1208 | 674019345211760640 | 340 | 1208 | 2015-12-08 00:15:09 | This is Acro. You briefly see her out of the corner of your eye. You look and she's not there. 10/10 mysterious pup https://t.co/fqiEsTduEs | 10 | 10 | Acro | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | True | True | True | Collie | 0.992732 | |
| 1209 | 674014384960745472 | 714 | 1676 | 2015-12-07 23:55:26 | Say hello to Aiden. His eyes are magical. Loves his little Guy Fieri friend. Sneaky tongue slip. 11/10 would caress https://t.co/Ac37LOe3xD | 11 | 10 | Aiden | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | True | True | True | Pembroke | 0.742320 | |
| 1210 | 673956914389192708 | 1069 | 2091 | 2015-12-07 20:07:04 | This is one esteemed pupper. Just graduated college. 10/10 what a champ https://t.co/nyReCVRiyd | 10 | 10 | NaN | pupper | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | True | True | True | Pug | 0.586161 |
| 1211 | 673887867907739649 | 274 | 994 | 2015-12-07 15:32:42 | When you're having a great time sleeping and your mom comes in and turns on the lights. 10/10 https://t.co/6qYd6BNSPd | 10 | 10 | None | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | True | True | True | Brabancon_griffon | 0.216767 | |
| 1212 | 673711475735838725 | 325 | 1114 | 2015-12-07 03:51:47 | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 https://t.co/MTOOksRzvH | 10 | 10 | None | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | True | True | True | Maltese_dog | 0.607401 | |
| 1213 | 673709992831262724 | 306 | 908 | 2015-12-07 03:45:53 | I know a lot of you are studying for finals. Good luck! Here's this. It should help somehow. 12/10 https://t.co/s2ktuPQd79 | 12 | 10 | None | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | True | False | True | Chihuahua | 0.330171 | |
| 1214 | 673708611235921920 | 315 | 1153 | 2015-12-07 03:40:24 | This is Riley. She's just an adorable football fan. 12/10 I'd watch the sports with her https://t.co/kLV8zUCfc8 | 12 | 10 | Riley | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | True | True | True | Golden_retriever | 0.936333 | |
| 1215 | 673707060090052608 | 434 | 1177 | 2015-12-07 03:34:14 | This is Raymond. He's absolutely terrified of floating tennis ball. 10/10 it'll be ok pupper https://t.co/QyH1CaY3SM | 10 | 10 | Raymond | pupper | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | True | True | True | German_short-haired_pointer | 0.935771 |
| 1216 | 673705679337693185 | 439 | 1337 | 2015-12-07 03:28:45 | This is Dot. He found out you only pretended to throw the ball that one time. You don't fuck with Dot. 8/10 https://t.co/Ymg4fwKlZd | 8 | 10 | Dot | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | True | True | True | Shih-tzu | 0.165383 | |
| 1217 | 673689733134946305 | 700 | 1855 | 2015-12-07 02:25:23 | When you're having a blast and remember tomorrow's Monday. 11/10 https://t.co/YPsJasNVGe | 11 | 10 | None | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | True | True | False | Chesapeake_bay_retriever | 0.382220 | |
| 1218 | 673688752737402881 | 534 | 1325 | 2015-12-07 02:21:29 | Meet Larry. He doesn't know how to shoe. 9/10 damn it Larry https://t.co/jMki5GOV3y | 9 | 10 | Larry | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.340806 | |
| 1219 | 673686845050527744 | 479 | 1544 | 2015-12-07 02:13:55 | This is George. He's upset that the 4th of July isn't everyday. 11/10 https://t.co/wImU0jdx3E | 11 | 10 | George | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | True | False | True | Pekinese | 0.185903 | |
| 1220 | 673680198160809984 | 521 | 1460 | 2015-12-07 01:47:30 | This is Shnuggles. I would kill for Shnuggles. 13/10 https://t.co/GwvpQiQ7oQ | 13 | 10 | Shnuggles | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | True | False | True | Samoyed | 0.989853 | |
| 1221 | 673662677122719744 | 397 | 1339 | 2015-12-07 00:37:52 | This is Kendall. 12/10 would cuddle the hell out of https://t.co/fJulMurnfj | 12 | 10 | Kendall | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | True | True | True | Labrador_retriever | 0.957670 | |
| 1222 | 673656262056419329 | 265 | 769 | 2015-12-07 00:12:23 | This is Albert AKA King Banana Peel. He's a kind ruler of the kitchen. Very jubilant pupper. 10/10 overall great dog https://t.co/PN8hxgZ9We | 10 | 10 | Albert | pupper | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | True | True | True | Bull_mastiff | 0.700625 |
| 1223 | 673612854080196609 | 802 | 1691 | 2015-12-06 21:19:54 | This is Jeffri. He's a speckled ice pupper. Very lazy. Enjoys the occasional swim. Rather majestic really. 7/10 https://t.co/0iyItbtkr8 | 7 | 10 | Jeffri | pupper | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | True | True | False | Newfoundland | 0.223101 |
| 1224 | 673580926094458881 | 297 | 882 | 2015-12-06 19:13:01 | When you ask your professor about extra credit on the last day of class. 8/10 https://t.co/H6rqZyE4NP | 8 | 10 | None | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | True | True | True | Beagle | 0.985062 | |
| 1225 | 673576835670777856 | 613 | 1482 | 2015-12-06 18:56:46 | Sun burnt dog here. Quite large. Wants to promote peace. Looks unemployed. Ears for days. 7/10 would pet profusely https://t.co/WlKiN3ll0w | 7 | 10 | None | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | False | False | False | Teddy | 0.255210 | |
| 1226 | 673359818736984064 | 728 | 1558 | 2015-12-06 04:34:25 | This is Steve. He was just relaxing in hot tub when he was intruded upon. 8/10 poor little pup https://t.co/EPq0MRAraJ | 8 | 10 | Steve | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | True | True | True | English_setter | 0.696568 | |
| 1227 | 673355879178194945 | 652 | 1606 | 2015-12-06 04:18:46 | This is Koda. She's a boss. Helps shift gears. Can even drive herself. Still no seat belt (reckless af). 11/10 https://t.co/0zUxlrhZrQ | 11 | 10 | Koda | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | True | True | True | Rottweiler | 0.529248 | |
| 1228 | 673352124999274496 | 597 | 1761 | 2015-12-06 04:03:51 | *lets out a tiny screech and then goes into complete cardiac arrest* 12/10 https://t.co/az5PLGzVNJ | 12 | 10 | None | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | True | True | True | Golden_retriever | 0.672808 | |
| 1229 | 673350198937153538 | 229 | 784 | 2015-12-06 03:56:12 | This is Bella. She's a Genghis Flopped Canuck. Stuck in trash can. 9/10 not to happy about it https://t.co/RMv9EAv57u | 9 | 10 | Bella | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | True | False | True | West_highland_white_terrier | 0.119188 | |
| 1230 | 673343217010679808 | 289 | 1038 | 2015-12-06 03:28:27 | IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNUbKOSiWW | 11 | 10 | None | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | True | True | True | Chihuahua | 0.541408 | |
| 1231 | 673320132811366400 | 8705 | 14441 | 2015-12-06 01:56:44 | This is Frankie. He's wearing blush. 11/10 really accents the cheek bones https://t.co/iJABMhVidf | 11 | 10 | Frankie | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | True | True | True | Samoyed | 0.978833 | |
| 1232 | 673317986296586240 | 293 | 924 | 2015-12-06 01:48:12 | Take a moment and appreciate how these two dogs fell asleep. Simply magnificent. 10/10 for both https://t.co/juX48bWpng | 10 | 10 | None | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | True | True | True | Miniature_pinscher | 0.384099 | |
| 1233 | 673295268553605120 | 3484 | 8046 | 2015-12-06 00:17:55 | Meet Eve. She's a raging alcoholic 8/10 (would b 11/10 but pupper alcoholism is a tragic issue that I can't condone) https://t.co/U36HYQIijg | 8 | 10 | Eve | pupper | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | True | True | True | Golden_retriever | 0.889241 |
| 1234 | 673270968295534593 | 400 | 1134 | 2015-12-05 22:41:22 | This is Mac. His dad's probably a lawyer. 11/10 https://t.co/mjC0QpXGum | 11 | 10 | Mac | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | True | True | True | Shih-tzu | 0.610453 | |
| 1235 | 673240798075449344 | 798 | 1510 | 2015-12-05 20:41:29 | Magical floating dog here. Very calm. Always hangs by the pond. Rather moist. Good listener. 6/10 personally I'd pet https://t.co/1euKoOvy49 | 6 | 10 | None | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | True | False | True | Airedale | 0.443004 | |
| 1236 | 673213039743795200 | 929 | 2410 | 2015-12-05 18:51:11 | This is Dexter. He just got some big news. 10/10 https://t.co/CbvCUE6PFI | 10 | 10 | Dexter | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | True | True | True | Schipperke | 0.888082 | |
| 1237 | 672997845381865473 | 786 | 2092 | 2015-12-05 04:36:04 | Say hello to Kenzie. She is a fluff ball. 12/10 you'd need to taser me for me to let go of her https://t.co/dph1UHNJrg | 12 | 10 | Kenzie | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | True | True | False | Chow | 0.517255 | |
| 1238 | 672995267319328768 | 328 | 1001 | 2015-12-05 04:25:50 | This is Pumpkin. He can look in two different directions at once. Great with a screwdriver. 8/10 https://t.co/odpuqtz2Fq | 8 | 10 | Pumpkin | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | True | True | True | French_bulldog | 0.719559 | |
| 1239 | 672988786805112832 | 314 | 1039 | 2015-12-05 04:00:04 | This is Schnozz. He's had a blurred tail since birth. Hasn't let that stop him. 10/10 inspirational pupper https://t.co/a3zYMcvbXG | 10 | 10 | Schnozz | pupper | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | True | True | True | Lakeland_terrier | 0.836632 |
| 1240 | 672975131468300288 | 1015 | 1813 | 2015-12-05 03:05:49 | This is Chuckles. He is one skeptical pupper. 10/10 stay woke Chuckles https://t.co/ZlcF0TIRW1 | 10 | 10 | Chuckles | pupper | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | True | True | True | Pug | 0.836421 |
| 1241 | 672968025906282496 | 602 | 1405 | 2015-12-05 02:37:35 | This is Gustaf. He's a purebred Chevy Equinox. Loves to shred. Gnarly lil pup. Great with the babes. 11/10 https://t.co/7CbO2eMAgJ | 11 | 10 | Gustaf | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | True | True | True | Toy_poodle | 0.678046 | |
| 1242 | 672964561327235073 | 701 | 1530 | 2015-12-05 02:23:49 | This is Terry. He's a Toasty Western Sriracha. Doubles as a table. Great for parties. 10/10 would highly recommend https://t.co/1ui7a1ZLTT | 10 | 10 | Terry | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | True | True | True | Chihuahua | 0.292343 | |
| 1243 | 672877615439593473 | 405 | 1096 | 2015-12-04 20:38:19 | This is Oscar. He's getting bombarded with the snacks. Not sure he's happy about it. 8/10 for Oscar https://t.co/dJHI7uC2y3 | 8 | 10 | Oscar | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | True | True | True | Chihuahua | 0.412362 | |
| 1244 | 672834301050937345 | 623 | 1398 | 2015-12-04 17:46:12 | This is Ed. He's not mad, just disappointed. 10/10 https://t.co/BIljU0zhLN | 10 | 10 | Ed | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | True | True | False | Pembroke | 0.582560 | |
| 1245 | 672640509974827008 | 348 | 1032 | 2015-12-04 04:56:09 | This is Leonidas. He just got rekt by a snowball. 9/10 doggy down https://t.co/uNrmYDUa9M | 9 | 10 | Leonidas | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.420155 | |
| 1246 | 672622327801233409 | 542 | 1377 | 2015-12-04 03:43:54 | This lil pupper is sad because we haven't found Kony yet. RT to spread awareness. 12/10 would pet firmly https://t.co/Cv7dRdcMvQ | 12 | 10 | None | pupper | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | True | True | True | Golden_retriever | 0.952773 |
| 1247 | 672604026190569472 | 445 | 1188 | 2015-12-04 02:31:10 | This is a baby Rand Paul. Curls for days. 11/10 would cuddle the hell out of https://t.co/xHXNaPAYRe | 11 | 10 | NaN | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | True | True | False | Toy_poodle | 0.820158 | |
| 1248 | 672594978741354496 | 661 | 1411 | 2015-12-04 01:55:13 | Meet Scott. Just trying to catch his train to work. Doesn't need everybody staring. 9/10 ignore the haters pupper https://t.co/jyXbZ35MYz | 9 | 10 | Scott | pupper | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | True | True | True | Great_pyrenees | 0.755945 |
| 1249 | 672591762242805761 | 367 | 1014 | 2015-12-04 01:42:26 | This is Taz. He boxes leaves. 10/10 https://t.co/bWQ0iIcP0w | 10 | 10 | Taz | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | True | True | True | Kuvasz | 0.777659 | |
| 1250 | 672523490734551040 | 189 | 696 | 2015-12-03 21:11:09 | When she says she'll be ready in a minute but you've been waiting in the car for almost an hour. 10/10 https://t.co/EH0N3dFKUi | 10 | 10 | None | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | True | True | True | Golden_retriever | 0.565981 | |
| 1251 | 672488522314567680 | 482 | 1187 | 2015-12-03 18:52:12 | This is Jackie. She was all ready to go out, but her friends just cancelled on her. 10/10 hang in there Jackie https://t.co/rVfi6CCidK | 10 | 10 | Jackie | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | True | True | True | Doberman | 0.605358 | |
| 1252 | 672482722825261057 | 665 | 1221 | 2015-12-03 18:29:09 | This is light saber pup. Ready to fight off evil with light saber. 10/10 true hero https://t.co/LPPa3btIIt | 10 | 10 | NaN | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | True | True | True | West_highland_white_terrier | 0.586173 | |
| 1253 | 672481316919734272 | 137 | 757 | 2015-12-03 18:23:34 | Say hello to Jazz. She should be on the cover of Vogue. 12/10 gorgeous pupper https://t.co/mVCMemhXAP | 12 | 10 | Jazz | pupper | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | True | True | True | Border_collie | 0.599454 |
| 1254 | 672466075045466113 | 598 | 1447 | 2015-12-03 17:23:00 | This is Franq and Pablo. They're working hard getting ready for Christmas. 12/10 for both. Amazing pups https://t.co/8lKFBOQ2J5 | 12 | 10 | Franq | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | True | True | True | Cocker_spaniel | 0.150424 | |
| 1255 | 672272411274932228 | 3677 | 6888 | 2015-12-03 04:33:27 | This is Pippin. He is terrified of his new little yellow giraffe. 11/10 https://t.co/ZICNl6tIr5 | 11 | 10 | Pippin | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | True | True | False | Pug | 0.914685 | |
| 1256 | 672267570918129665 | 666 | 1588 | 2015-12-03 04:14:13 | When you accidentally open up the front facing camera. 10/10 https://t.co/jDXxZARQIZ | 10 | 10 | None | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | True | True | True | Irish_terrier | 0.716932 | |
| 1257 | 672264251789176834 | 383 | 1212 | 2015-12-03 04:01:02 | This is Kreg. He has the eyes of a tyrannical dictator. Will not rest until household is his. 10/10 https://t.co/TUeuaOmunV | 10 | 10 | Kreg | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | True | False | True | Chihuahua | 0.609860 | |
| 1258 | 672254177670729728 | 800 | 1515 | 2015-12-03 03:21:00 | This is Rolf. He's having the time of his life. 11/10 good pupper https://t.co/OO6MqEbqG3 | 11 | 10 | Rolf | pupper | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | True | True | True | Pug | 0.979487 |
| 1259 | 672248013293752320 | 656 | 1833 | 2015-12-03 02:56:30 | 10/10 for dog. 7/10 for cat. 12/10 for human. Much skill. Would pet all https://t.co/uhx5gfpx5k | 10 | 10 | None | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | True | True | True | Irish_terrier | 0.413173 | |
| 1260 | 672245253877968896 | 169 | 733 | 2015-12-03 02:45:32 | Meet Snickers. He's adorable. Also comes in t-shirt mode. 12/10 I would aggressively caress Snickers https://t.co/aCRKDaFmVr | 12 | 10 | Snickers | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | True | False | True | Chihuahua | 0.718944 | |
| 1261 | 672239279297454080 | 347 | 953 | 2015-12-03 02:21:48 | This is Ridley. He doesn't know how to couch. 7/10 https://t.co/UHJE0UgMf7 | 7 | 10 | Ridley | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | True | True | True | Pug | 0.332536 | |
| 1262 | 672222792075620352 | 231 | 833 | 2015-12-03 01:16:17 | This is Cal. He's a Swedish Geriatric Cheddar. Upset because the pope is laughing at his eyebrows. 9/10 https://t.co/EW4MsOrF5O | 9 | 10 | Cal | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | True | True | True | Beagle | 0.958178 | |
| 1263 | 672169685991993344 | 408 | 1074 | 2015-12-02 21:45:16 | This is Bradley. That is his sandwich. He carries it everywhere. 10/10 https://t.co/AjBkGTyCeO | 10 | 10 | Bradley | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | True | True | True | Cocker_spaniel | 0.991011 | |
| 1264 | 672160042234327040 | 395 | 918 | 2015-12-02 21:06:56 | This is Bubba. He's a Titted Peebles Aorta. Evolutionary masterpiece. Comfortable with his body. 8/10 great pupper https://t.co/aNkkl5nH3W | 8 | 10 | Bubba | pupper | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | True | True | True | Pug | 0.561027 |
| 1265 | 672139350159835138 | 792 | 1876 | 2015-12-02 19:44:43 | This pup has a heart on its ass and that is downright legendary. 12/10 https://t.co/0OI927mmNJ | 12 | 10 | None | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | True | False | False | Rottweiler | 0.290992 | |
| 1266 | 672095186491711488 | 395 | 1063 | 2015-12-02 16:49:14 | This is Tuco. That's the toast that killed his father. 9/10 https://t.co/ujnWy26RMe | 9 | 10 | Tuco | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | True | True | True | Pug | 0.794087 | |
| 1267 | 672068090318987265 | 564 | 1389 | 2015-12-02 15:01:33 | Say hello to Gizmo. He's upset because he's not sure if he's really big or the shopping cart is really small. 7/10 https://t.co/XkMtCGhr4a | 7 | 10 | Gizmo | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | True | False | True | Pug | 0.863385 | |
| 1268 | 671896809300709376 | 4519 | 9016 | 2015-12-02 03:40:57 | This is Lola. She fell asleep on a piece of pizza. 10/10 frighteningly relatable https://t.co/eqmkr2gmPH | 10 | 10 | Lola | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | True | False | True | Chow | 0.243529 | |
| 1269 | 671891728106971137 | 618 | 1415 | 2015-12-02 03:20:45 | This is Mojo. Apparently he's too cute for a seat belt. Hella careless. I'd still pet him tho. 11/10 buckle up pup https://t.co/dzZYx2NByW | 11 | 10 | Mojo | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | True | True | False | Labrador_retriever | 0.567933 | |
| 1270 | 671866342182637568 | 548 | 1191 | 2015-12-02 01:39:53 | Meet Dylan. He can use a fork but clearly can't put on a sweatshirt correctly. Looks like a disgruntled teen. 10/10 https://t.co/FWJQ1zQLiI | 10 | 10 | Dylan | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | True | True | True | Labrador_retriever | 0.875614 | |
| 1271 | 671789708968640512 | 3811 | 7527 | 2015-12-01 20:35:22 | This is space pup. He's very confused. Tries to moonwalk at one point. Super spiffy uniform. 13/10 I love space pup https://t.co/SfPQ2KeLdq | 13 | 10 | NaN | https://pbs.twimg.com/tweet_video_thumb/CVKtH-4WIAAmiQ5.png | 1 | True | False | False | Dalmatian | 0.114259 | |
| 1272 | 671768281401958400 | 572 | 1269 | 2015-12-01 19:10:13 | When you try to recreate the scene from Lady & The Tramp but then remember you don't have a significant other. 10/10 https://t.co/TASnD8Q08S | 10 | 10 | None | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | True | True | True | Chihuahua | 0.500373 | |
| 1273 | 671743150407421952 | 248 | 779 | 2015-12-01 17:30:22 | This is a Tuscaloosa Alcatraz named Jacob (Yacōb). Loves to sit in swing. Stellar tongue. 11/10 look at his feet https://t.co/2IslQ8ZSc7 | 11 | 10 | NaN | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | True | True | False | Toy_poodle | 0.419427 | |
| 1274 | 671729906628341761 | 4795 | 9119 | 2015-12-01 16:37:44 | I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt | 13 | 10 | None | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | True | True | False | Kuvasz | 0.431469 | |
| 1275 | 671561002136281088 | 7931 | 13679 | 2015-12-01 05:26:34 | This is the best thing I've ever seen so spread it like wildfire & maybe we'll find the genius who created it. 13/10 https://t.co/q6RsuOVYwU | 13 | 10 | NaN | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | True | True | True | Gordon_setter | 0.469373 | |
| 1276 | 671542985629241344 | 616 | 1166 | 2015-12-01 04:14:59 | This is JD (stands for "just dog"). He's like Airbud but with trading card games instead of sports. 10/10 much skill https://t.co/zzueJV9jCF | 10 | 10 | JD | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | True | True | True | Shetland_sheepdog | 0.980339 | |
| 1277 | 671536543010570240 | 441 | 1253 | 2015-12-01 03:49:23 | This is Reginald. He's pondering what life would be like without so much damn skin. 9/10 it'll be ok buddy https://t.co/1U5Ro5FA4c | 9 | 10 | Reginald | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | True | True | True | Pug | 0.537652 | |
| 1278 | 671528761649688577 | 280 | 896 | 2015-12-01 03:18:27 | Meet Jax. He's in the middle of a serious conversation and is trying unbelievably hard not to laugh. 10/10 https://t.co/HwiLcDPaCi | 10 | 10 | Jax | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | True | True | True | Doberman | 0.782626 | |
| 1279 | 671520732782923777 | 582 | 1499 | 2015-12-01 02:46:33 | Meet Alejandro. He's an extremely seductive pup. 10/10 https://t.co/C7dPcCUNpF | 10 | 10 | Alejandro | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | True | True | False | Pomeranian | 0.551031 | |
| 1280 | 671518598289059840 | 319 | 1010 | 2015-12-01 02:38:04 | This is Scruffers. He's being violated on multiple levels and is not happy about it. 9/10 hang in there Scruffers https://t.co/nLQoltwEZ7 | 9 | 10 | Scruffers | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | True | True | True | Lakeland_terrier | 0.428275 | |
| 1281 | 671504605491109889 | 3866 | 7495 | 2015-12-01 01:42:28 | This is Charlie. He was just informed that dogs can't be Jedi. 11/10 https://t.co/mGW5c50mPA | 11 | 10 | Charlie | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | True | False | True | Toy_poodle | 0.259115 | |
| 1282 | 671486386088865792 | 226 | 621 | 2015-12-01 00:30:04 | This is Malcolm. He just saw a spider. 10/10 https://t.co/ympkwF65Dx | 10 | 10 | Malcolm | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | True | True | False | German_shepherd | 0.827035 | |
| 1283 | 671485057807351808 | 253 | 806 | 2015-12-01 00:24:48 | Meet Penelope. She is a white Macadamias Duodenum. Very excited about wall. Lives on Frosted Flakes. 11/10 good pup https://t.co/CqcRagJlyS | 11 | 10 | Penelope | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | True | True | True | Samoyed | 0.627901 | |
| 1284 | 671357843010908160 | 157 | 426 | 2015-11-30 15:59:17 | Tfw she says hello from the other side. 9/10 https://t.co/lS1TIDagIb | 9 | 10 | None | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | True | True | True | Italian_greyhound | 0.831757 | |
| 1285 | 671355857343524864 | 119 | 508 | 2015-11-30 15:51:24 | This is Lou. He's a Petrarch Sunni Pinto. Well-behaved pup. Little legs just hang there. 10/10 would pet firmly https://t.co/FoCULrC3rD | 10 | 10 | Lou | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | True | True | True | Miniature_poodle | 0.313811 | |
| 1286 | 671347597085433856 | 476 | 1031 | 2015-11-30 15:18:34 | This is Lola. She was not fully prepared for the water slide. 9/10 https://t.co/svlkUlg3NH | 9 | 10 | Lola | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | False | False | False | Picket_fence | 0.382918 | |
| 1287 | 671186162933985280 | 241 | 788 | 2015-11-30 04:37:05 | This is Sparky. That's his pancake now. He will raise it as his own. 10/10 https://t.co/96tMaWyoWt | 10 | 10 | Sparky | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | True | True | True | Chihuahua | 0.319106 | |
| 1288 | 671182547775299584 | 378 | 1193 | 2015-11-30 04:22:44 | This pup holds the secrets of the universe in his left eye. 12/10 https://t.co/F7xwE0wmnu | 12 | 10 | None | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | True | True | True | Rottweiler | 0.331179 | |
| 1289 | 671163268581498880 | 1198 | 1763 | 2015-11-30 03:06:07 | Pack of horned dogs here. Very team-oriented bunch. All have weird laughs. Bond between them strong. 8/10 for all https://t.co/U7DQQdZ0mX | 8 | 10 | None | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | False | False | True | African_hunting_dog | 0.733025 | |
| 1290 | 671154572044468225 | 241 | 769 | 2015-11-30 02:31:34 | Meet Holly. She's trying to teach small human-like pup about blocks but he's not paying attention smh. 11/10 & 8/10 https://t.co/RcksaUrGNu | 11 | 10 | Holly | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | True | True | True | Labrador_retriever | 0.495047 | |
| 1291 | 671151324042559489 | 166 | 714 | 2015-11-30 02:18:39 | *struggling to breathe properly* 12/10 https://t.co/NKHx0pcOii | 12 | 10 | None | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | True | True | True | Rottweiler | 0.781201 | |
| 1292 | 671147085991960577 | 254 | 713 | 2015-11-30 02:01:49 | This is a Helvetica Listerine named Rufus. This time Rufus will be ready for the UPS guy. He'll never expect it 9/10 https://t.co/34OhVhMkVr | 9 | 10 | NaN | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | True | True | True | Yorkshire_terrier | 0.467202 | |
| 1293 | 671138694582165504 | 448 | 996 | 2015-11-30 01:28:28 | Me running from commitment. 10/10 https://t.co/ycVJyFFkES | 10 | 10 | None | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | True | True | True | Samoyed | 0.587342 | |
| 1294 | 671134062904504320 | 212 | 796 | 2015-11-30 01:10:04 | Say hello to Clarence. He's a western Alkaline Pita. Very proud of himself for dismembering his stuffed dog pal 8/10 https://t.co/BHxr9O7wJY | 8 | 10 | Clarence | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | True | True | True | Shih-tzu | 0.180380 | |
| 1295 | 671115716440031232 | 842 | 1436 | 2015-11-29 23:57:10 | Meet Phred. He isn't steering, looking at the road, or wearing a seatbelt. Phred is a rolling tornado of danger 6/10 https://t.co/mZD7Bo7HfV | 6 | 10 | Phred | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | True | True | False | Malinois | 0.406341 | |
| 1296 | 671109016219725825 | 478 | 1225 | 2015-11-29 23:30:32 | This is Toby. He asked for chocolate cake for his birthday but was given vanilla instead. 8/10 it'll be ok Toby https://t.co/sYi2G0he4H | 8 | 10 | Toby | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | True | True | True | Basenji | 0.855959 | |
| 1297 | 670840546554966016 | 213 | 634 | 2015-11-29 05:43:44 | Meet Colby. He's that one cool friend that gets you into every party. Great hat. Sneaky tongue slip. 10/10 good pup https://t.co/jBnz3MjTzX | 10 | 10 | Colby | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | True | True | False | Shih-tzu | 0.963622 | |
| 1298 | 670833812859932673 | 135 | 474 | 2015-11-29 05:16:59 | This is Jett. He is unimpressed by flower. 7/10 https://t.co/459qWNnV3F | 7 | 10 | Jett | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | True | False | True | Pekinese | 0.609853 | |
| 1299 | 670832455012716544 | 242 | 780 | 2015-11-29 05:11:35 | This is Amy. She is Queen Starburst. 10/10 unexplainably juicy https://t.co/Hj2HtxpcSx | 10 | 10 | Amy | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | True | True | False | Malinois | 0.317607 | |
| 1300 | 670823764196741120 | 205 | 824 | 2015-11-29 04:37:03 | This is Remington. He's a man dime. 12/10 https://t.co/m3ufSDwHHJ | 12 | 10 | Remington | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | True | True | True | Labrador_retriever | 0.947453 | |
| 1301 | 670815497391357952 | 1708 | 3410 | 2015-11-29 04:04:12 | This is Sage. He likes to burn shit. 10/10 https://t.co/nLYruSMRe6 | 10 | 10 | Sage | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.919714 | |
| 1302 | 670811965569282048 | 295 | 1202 | 2015-11-29 03:50:10 | Meet Maggie. She enjoys her stick in the yard. Very content. Much tranquility. 10/10 keep it up pup https://t.co/eYP9i9gfYn | 10 | 10 | Maggie | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | True | True | True | Basset | 0.994090 | |
| 1303 | 670807719151067136 | 546 | 1234 | 2015-11-29 03:33:17 | Say hello to Andy. He can balance on one foot, obliterate u in checkers, & transform into a rug. 11/10 much talents https://t.co/idzH8JH06g | 11 | 10 | Andy | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | True | True | True | Old_english_sheepdog | 0.958035 | |
| 1304 | 670804601705242624 | 1035 | 2098 | 2015-11-29 03:20:54 | Meet Mason. He's a total frat boy. Pretends to be Hawaiian. Head is unbelievably round. 10/10 would pet so damn well https://t.co/DM3ZP3AA7b | 10 | 10 | Mason | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | True | True | True | Pomeranian | 0.868560 | |
| 1305 | 670803562457407488 | 95 | 362 | 2015-11-29 03:16:46 | I would do radical things in the name of Dog God. I'd believe every word in that book. 10/10 https://t.co/9ZuGAmLZDR | 10 | 10 | None | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | True | True | True | Basenji | 0.344101 | |
| 1306 | 670797304698376195 | 262 | 780 | 2015-11-29 02:51:54 | This is Trigger. He was minding his own business on stair when he overheard someone say they don't like bacon. 11/10 https://t.co/yqohZK4CL0 | 11 | 10 | Trigger | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | True | True | True | Pembroke | 0.472197 | |
| 1307 | 670789397210615808 | 255 | 700 | 2015-11-29 02:20:29 | Two obedient dogs here. Left one has extra leg sticking out of its back. They each get 9/10. Would pet both at once https://t.co/RGcNPsmAfY | 9 | 10 | None | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | True | True | True | Beagle | 0.295966 | |
| 1308 | 670786190031921152 | 218 | 640 | 2015-11-29 02:07:44 | This is Creg. You offered him a ride to work but you're late and you just missed his exit. 8/10 https://t.co/3r7wznfuoa | 8 | 10 | Creg | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | False | True | True | Dingo | 0.777124 | |
| 1309 | 670782429121134593 | 863 | 1691 | 2015-11-29 01:52:48 | This dude slaps your girl's ass what do you do?\n5/10 https://t.co/6dioUL6gcP | 5 | 10 | None | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | True | True | True | Chihuahua | 0.952963 | |
| 1310 | 670780561024270336 | 317 | 831 | 2015-11-29 01:45:22 | This is Traviss. He has no ears. Two rare dogs in background. I bet they all get along nicely. 7/10s I'd pet all https://t.co/Viu56hVhhP | 7 | 10 | Traviss | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | True | False | False | Labrador_retriever | 0.244889 | |
| 1311 | 670778058496974848 | 77 | 345 | 2015-11-29 01:35:26 | "To bone or not to bone?"\n10/10 https://t.co/4g5kFdxp6g | 10 | 10 | None | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | True | True | True | Pug | 0.776612 | |
| 1312 | 670764103623966721 | 466 | 1154 | 2015-11-29 00:39:59 | Meet Vincent. He's a wild Adderall Cayenne. Shipped for free. Always fresh. Never frozen. 10/10 great purchase https://t.co/ZfS7chSsi7 | 10 | 10 | Vincent | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | True | True | False | Norfolk_terrier | 0.172850 | |
| 1313 | 670755717859713024 | 123 | 475 | 2015-11-29 00:06:39 | Say hello to Gin & Tonic. They're having a staring contest. Very very intense. 9/10 for both https://t.co/F6bI9dF16E | 9 | 10 | Gin | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | True | True | True | Keeshond | 0.994065 | |
| 1314 | 670717338665226240 | 547 | 1301 | 2015-11-28 21:34:09 | *screams for a little bit and then crumples to the floor shaking* 12/10 https://t.co/W2MCt9pTed | 12 | 10 | None | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | True | True | True | Pomeranian | 0.368161 | |
| 1315 | 670704688707301377 | 405 | 814 | 2015-11-28 20:43:53 | Meet Danny. He's too good to look at the road when he's driving. Absolute menace. 6/10 completely irresponsible https://t.co/I1lMUy1FqH | 6 | 10 | Danny | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | True | True | True | Norwich_terrier | 0.419838 | |
| 1316 | 670691627984359425 | 266 | 632 | 2015-11-28 19:51:59 | This is Ester. He has a cocaine problem. This is an intervention Ester. We all care about you. 8/10 https://t.co/eCVj2xT59V | 8 | 10 | Ester | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | True | False | True | Shetland_sheepdog | 0.071124 | |
| 1317 | 670679630144274432 | 315 | 799 | 2015-11-28 19:04:19 | This is Pluto. He's holding little waddling dog hostage. Little waddling dog very desperate at this point sos. 8/10 https://t.co/HMcD9SLOAN | 8 | 10 | Pluto | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | True | True | True | Ibizan_hound | 0.342734 | |
| 1318 | 670676092097810432 | 45 | 267 | 2015-11-28 18:50:15 | This is Bloo. He's a Westminster Cîroc. Doesn't think Bart deserves legs. Nice flowers. 8/10 https://t.co/IAc1QCczMc | 8 | 10 | Bloo | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | True | True | True | Dandie_dinmont | 0.676102 | |
| 1319 | 670444955656130560 | 2153 | 7120 | 2015-11-28 03:31:48 | This is Paull. He just stubbed his toe. 10/10 deep breaths Paull https://t.co/J5Mqn8VeYq | 10 | 10 | Paull | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | True | True | True | English_springer | 0.403698 | |
| 1320 | 670442337873600512 | 213 | 690 | 2015-11-28 03:21:24 | Meet Koda. He's large. Looks very soft. Great bangs. Powerful owner. 11/10 would pet the hell out of https://t.co/mzPoS9wCqp | 11 | 10 | Koda | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | True | True | True | Sussex_spaniel | 0.403552 | |
| 1321 | 670428280563085312 | 694 | 1484 | 2015-11-28 02:25:32 | This is Willy. He's millennial af. 11/10 https://t.co/Fm1SvVLsad | 11 | 10 | Willy | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | True | True | True | Chow | 0.335269 | |
| 1322 | 670421925039075328 | 709 | 1415 | 2015-11-28 02:00:17 | Meet Herb. 12/10 https://t.co/tLRyYvCci3 | 12 | 10 | Herb | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | True | False | False | Chihuahua | 0.275793 | |
| 1323 | 670411370698022913 | 991 | 2176 | 2015-11-28 01:18:21 | Meet Scooter. He's ready for his first day of middle school. Remarkable tongue. 12/10 https://t.co/1DJfHmfBQN | 12 | 10 | Scooter | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | True | True | True | Maltese_dog | 0.584397 | |
| 1324 | 670403879788544000 | 173 | 460 | 2015-11-28 00:48:35 | This is Nigel. He accidentally popped his ball after dunking so hard the backboard shattered. 10/10 great great pup https://t.co/vSd1TWFK1I | 10 | 10 | Nigel | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | True | True | True | Pug | 0.802223 | |
| 1325 | 670385711116361728 | 234 | 593 | 2015-11-27 23:36:23 | Meet Larry. He's a Panoramic Benzoate. Can shoot lasers out of his eyes. Very neat. Stuck in that position tho. 8/10 https://t.co/MAZx8MPF0S | 8 | 10 | Larry | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | True | True | True | Whippet | 0.178027 | |
| 1326 | 670374371102445568 | 295 | 785 | 2015-11-27 22:51:19 | Meet Daisy. She's rebellious. Full of teen angst. Thought her food should be evenly dispersed around the room. 12/10 https://t.co/8yzgYzP94K | 12 | 10 | Daisy | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | True | True | True | English_springer | 0.974936 | |
| 1327 | 670338931251150849 | 122 | 451 | 2015-11-27 20:30:30 | This is Butters. He's not ready for Thanksgiving to be over. 10/10 poor Butters https://t.co/iTc578yDmY | 10 | 10 | Butters | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | True | True | True | Cairn | 0.245033 | |
| 1328 | 670319130621435904 | 1359 | 4110 | 2015-11-27 19:11:49 | AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO7HEQGA | 11 | 10 | None | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | True | True | True | Irish_terrier | 0.254856 | |
| 1329 | 670303360680108032 | 151 | 452 | 2015-11-27 18:09:09 | This is a Speckled Cauliflower Yosemite named Hemry. He's terrified of intruder dog. Not one bit comfortable. 9/10 https://t.co/yV3Qgjh8iN | 9 | 10 | NaN | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | True | True | False | Shetland_sheepdog | 0.380278 | |
| 1330 | 670290420111441920 | 315 | 750 | 2015-11-27 17:17:44 | This is Sandra. She's going skydiving. Nice adidas sandals. Stellar house plant. 11/10 https://t.co/orbkAq9kYF | 11 | 10 | Sandra | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | True | True | True | Chihuahua | 0.368876 | |
| 1331 | 670093938074779648 | 365 | 1106 | 2015-11-27 04:16:59 | This is Wally. He's a Flaccid Mitochondria. Going on vacation. Bag definitely full of treats. Great hat. 9/10 https://t.co/vYs9IVzHY9 | 9 | 10 | Wally | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | True | True | True | Toy_poodle | 0.383346 | |
| 1332 | 670086499208155136 | 275 | 740 | 2015-11-27 03:47:25 | "Hi yes this is dog. I can't help with that s- sir please... the manager isn't in right n- well that was rude"\n10/10 https://t.co/DuQXATW27f | 10 | 10 | None | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | True | True | True | German_short-haired_pointer | 0.273492 | |
| 1333 | 670073503555706880 | 874 | 1674 | 2015-11-27 02:55:47 | Meet Winston. He wants to be a power drill. Very focused. 10/10 I believe in you Winston https://t.co/exGrzT9O88 | 10 | 10 | Winston | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | True | True | True | Malamute | 0.601886 | |
| 1334 | 670061506722140161 | 373 | 822 | 2015-11-27 02:08:07 | This is Liam. He has a particular set of skills. He will look for you, he will find you, and he will kill you. 11/10 https://t.co/uQMFKv1vjn | 11 | 10 | Liam | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | True | True | True | Italian_greyhound | 0.329339 | |
| 1335 | 670046952931721218 | 191 | 684 | 2015-11-27 01:10:17 | This is Ben & Carson. It's impossible for them to tilt their heads in the same direction. Cheeky wink by Ben. 11/10s https://t.co/465sIBdvzU | 11 | 10 | Ben | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | True | True | True | Blenheim_spaniel | 0.998335 | |
| 1336 | 670003130994700288 | 100 | 352 | 2015-11-26 22:16:09 | This is Raphael. He is a Baskerville Conquistador. Entertains at all the gatherings. 10/10 simply magnificent https://t.co/3NTykJmtHt | 10 | 10 | Raphael | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | True | True | True | Beagle | 0.375313 | |
| 1337 | 669972011175813120 | 175 | 471 | 2015-11-26 20:12:29 | Here we see really big dog cuddling smaller dog. Very touching. True friendship. 10/10s would pet both at once https://t.co/A6XnvxHiUQ | 10 | 10 | None | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | False | False | False | Teddy | 0.953071 | |
| 1338 | 669970042633789440 | 65 | 317 | 2015-11-26 20:04:40 | This is Julio. He was one of the original Ringling Bros. Exceptional balance. Very alert. Ready for anything. 10/10 https://t.co/aeURGO9Qs8 | 10 | 10 | Julio | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | True | True | True | Miniature_pinscher | 0.734744 | |
| 1339 | 669942763794931712 | 183 | 536 | 2015-11-26 18:16:16 | This is Andru. He made his very own lacrosse stick. Much dedication. Big dreams. Tongue slip. 11/10 go get em Andru https://t.co/1VJoY3OJ1F | 11 | 10 | Andru | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | True | True | True | Vizsla | 0.743216 | |
| 1340 | 669926384437997569 | 115 | 400 | 2015-11-26 17:11:11 | I've never seen a dog so genuinely happy about a tennis ball. 12/10 s'cute https://t.co/9RYY2NtHDw | 12 | 10 | None | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | True | True | True | Pomeranian | 0.984231 | |
| 1341 | 669753178989142016 | 431 | 858 | 2015-11-26 05:42:55 | Meet Chester. He just ate a lot and now he can't move. 10/10 that's going to be me in about 17 hours https://t.co/63jh1tYZa5 | 10 | 10 | Chester | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | True | False | True | Pembroke | 0.858494 | |
| 1342 | 669683899023405056 | 119 | 412 | 2015-11-26 01:07:38 | This is Kloey. Her mother was a unicorn. 10/10 https://t.co/NvKJRYDosA | 10 | 10 | Kloey | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | True | True | True | Pomeranian | 0.998275 | |
| 1343 | 669680153564442624 | 311 | 712 | 2015-11-26 00:52:45 | This is Shawwn. He's a Turkish Gangrene Robitussin. Spectacular tongue. Cranks out push-ups. 8/10 #NoDaysOff #swole https://t.co/IQFZKNUlXx | 8 | 10 | Shawwn | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | True | True | True | Dalmatian | 0.141257 | |
| 1344 | 669603084620980224 | 401 | 1006 | 2015-11-25 19:46:30 | Very human-like. Cute overbite smile *finger to earpiece* I'm being told that the dog is actually on the right\n10/10 https://t.co/MSIbWu4YYs | 10 | 10 | None | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | True | True | True | Maltese_dog | 0.659619 | |
| 1345 | 669597912108789760 | 163 | 550 | 2015-11-25 19:25:57 | This is Skye. He is a Bretwaldian Altostratus. Not amused at all. Just saved small dog from avalanche. 10/10 hero af https://t.co/XmCvma01fF | 10 | 10 | Skye | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | True | True | False | Eskimo_dog | 0.595665 | |
| 1346 | 669573570759163904 | 156 | 467 | 2015-11-25 17:49:14 | This is Linda. She just looked up and saw you glancing at your neighboring classmate's test. 10/10 https://t.co/UpFFYhA1Id | 10 | 10 | Linda | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | True | True | True | West_highland_white_terrier | 0.946828 | |
| 1347 | 669567591774625800 | 61 | 248 | 2015-11-25 17:25:28 | Meet Kollin. He's a Parakeetian Badminton from Denmark. Great artist. Taking break from research. Loves wicker 9/10 https://t.co/XPLB3eoXiX | 9 | 10 | Kollin | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | True | True | True | Chihuahua | 0.980511 | |
| 1348 | 669564461267722241 | 133 | 413 | 2015-11-25 17:13:02 | This is a Coriander Baton Rouge named Alfredo. Loves to cuddle with smaller well-dressed dog. 10/10 would hug lots https://t.co/eCRdwouKCl | 10 | 10 | NaN | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | True | True | True | Toy_poodle | 0.623685 | |
| 1349 | 669393256313184256 | 83 | 383 | 2015-11-25 05:52:43 | Meet Ronduh. She's a Finnish Checkered Blitzkrieg. Ears look fake. Shoes on point. 10/10 would pet extra well https://t.co/juktj5qiaD | 10 | 10 | Ronduh | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | True | True | True | Cocker_spaniel | 0.359843 | |
| 1350 | 669375718304980992 | 792 | 1425 | 2015-11-25 04:43:02 | This is Billl. He's trying to be a ghost but he's not very good at it. 6/10 c'mon Billl https://t.co/ero0XfdGtY | 6 | 10 | Billl | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | True | True | True | Airedale | 0.168762 | |
| 1351 | 669371483794317312 | 196 | 524 | 2015-11-25 04:26:12 | This is Oliviér. He's a Baptist Hindquarter. Also smooth af with the babes. 10/10 I'd totally get in a car with him https://t.co/fj4c170cxk | 10 | 10 | Oliviér | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | True | True | True | Brabancon_griffon | 0.483268 | |
| 1352 | 669367896104181761 | 172 | 485 | 2015-11-25 04:11:57 | This is Chip. Chip's pretending to be choked. 10/10 lol classic Chip https://t.co/yoB0SM1AAP | 10 | 10 | Chip | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | True | True | True | Basset | 0.749394 | |
| 1353 | 669363888236994561 | 252 | 669 | 2015-11-25 03:56:01 | Here we have a Gingivitis Pumpernickel named Zeus. Unmatched tennis ball capacity. 10/10 would highly recommend https://t.co/jPkd7hhX7m | 10 | 10 | None | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | True | True | True | Golden_retriever | 0.539004 | |
| 1354 | 669359674819481600 | 134 | 390 | 2015-11-25 03:39:17 | Meet Saydee. She's a Rochester Ecclesiastical. Jumped off cliff and caught stick on way down. 11/10 1st round pick https://t.co/Eh2v0AyJbi | 11 | 10 | Saydee | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | True | True | True | Labrador_retriever | 0.367818 | |
| 1355 | 669354382627049472 | 1390 | 2889 | 2015-11-25 03:18:15 | Meet Dug. Dug fucken loves peaches. 8/10 https://t.co/JtA1TG21Xx | 8 | 10 | Dug | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | True | True | True | Chihuahua | 0.973990 | |
| 1356 | 669353438988365824 | 281 | 687 | 2015-11-25 03:14:30 | This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv | 10 | 10 | Tessa | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | False | True | True | Teddy | 0.379656 | |
| 1357 | 669328503091937280 | 452 | 1081 | 2015-11-25 01:35:25 | This is Kirk. He just saw a bacon wrapped tennis ball and literally died. So sad. 12/10 RIP Kirk https://t.co/0twoigv5jP | 12 | 10 | Kirk | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | True | True | True | Siberian_husky | 0.424202 | |
| 1358 | 669327207240699904 | 127 | 610 | 2015-11-25 01:30:16 | Just got home from college. Dis my dog. She does all my homework. Big red turd in background. 13/10 no bias at all https://t.co/6WGFp9cuj6 | 13 | 10 | None | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | True | True | True | Golden_retriever | 0.919584 | |
| 1359 | 669216679721873412 | 422 | 958 | 2015-11-24 18:11:04 | This is Clarq. He's a golden Quetzalcoatl. Clarq enjoys eating his own foot. Damn it Clarq. 8/10 would pet firmly https://t.co/d8ybynaRwZ | 8 | 10 | Clarq | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | True | True | True | Golden_retriever | 0.992758 | |
| 1360 | 669203728096960512 | 522 | 1074 | 2015-11-24 17:19:36 | This is Samsom. He is sexually confused. Really wants to be a triceratops. 9/10 just a great guy https://t.co/HPoce45SI3 | 9 | 10 | Samsom | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | True | True | True | Pug | 0.910452 | |
| 1361 | 669037058363662336 | 336 | 698 | 2015-11-24 06:17:19 | Here we have Pancho and Peaches. Pancho is a Condoleezza Gryffindor, and Peaches is just an asshole. 10/10 & 7/10 https://t.co/Lh1BsJrWPp | 10 | 10 | None | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | True | True | True | Chihuahua | 0.803528 | |
| 1362 | 669006782128353280 | 269 | 610 | 2015-11-24 04:17:01 | This is Tucker. He is 100% ready for the sports. 12/10 I would watch anything with him https://t.co/k0ddVUWTcu | 12 | 10 | Tucker | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | True | True | False | Chihuahua | 0.127178 | |
| 1363 | 669000397445533696 | 6965 | 22118 | 2015-11-24 03:51:38 | Meet Terrance. He's being yelled at because he stapled the wrong stuff together. 11/10 hang in there Terrance https://t.co/ixcuUYCbdD | 11 | 10 | Terrance | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | True | True | True | Pembroke | 0.822940 | |
| 1364 | 668989615043424256 | 356 | 726 | 2015-11-24 03:08:48 | This is Bernie. He's taking his Halloween costume very seriously. Wants to be baked. 3/10 not a good idea Bernie smh https://t.co/1zBp1moFlX | 3 | 10 | Bernie | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | True | False | True | Pug | 0.917326 | |
| 1365 | 668979806671884288 | 382 | 842 | 2015-11-24 02:29:49 | This is Chaz. He's an X Games half pipe superstar. 6 gold medals. Lost back legs saving a baby from a tornado 12/10 https://t.co/uxdOfblUB0 | 12 | 10 | Chaz | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | True | True | True | Golden_retriever | 0.608537 | |
| 1366 | 668975677807423489 | 641 | 1386 | 2015-11-24 02:13:25 | This is Jeremy. He hasn't grown into his skin yet. Ears hit the floor. Probably trips on them sometimes. 11/10 https://t.co/LqAMlFVBoY | 11 | 10 | Jeremy | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | True | True | True | Basset | 0.605437 | |
| 1367 | 668955713004314625 | 77 | 300 | 2015-11-24 00:54:05 | This is a Slovakian Helter Skelter Feta named Leroi. Likes to skip on roofs. Good traction. Much balance. 10/10 wow! https://t.co/Dmy2mY2Qj5 | 10 | 10 | NaN | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | True | True | True | Cocker_spaniel | 0.367492 | |
| 1368 | 668932921458302977 | 63 | 284 | 2015-11-23 23:23:31 | This is Herald. He likes to swing. Subtle tongue slip. Owner good at b-ball. Creepy person on bench back there. 9/10 https://t.co/rcrKkL7eB6 | 9 | 10 | Herald | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | True | True | True | Standard_poodle | 0.237638 | |
| 1369 | 668902994700836864 | 107 | 338 | 2015-11-23 21:24:36 | Meet Lambeau. He's a Whistling Haiku from the plains of southern Guatemala. 11/10 so. damn. majestic. https://t.co/UqCvpSgMJe | 11 | 10 | Lambeau | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | True | True | True | Brittany_spaniel | 0.828425 | |
| 1370 | 668892474547511297 | 164 | 422 | 2015-11-23 20:42:48 | This is Ruffles. He is an Albanian Shoop Da Whoop. He just noticed the camera. Patriotic af. Classy hardwood. 11/10 https://t.co/HyDpTU5Jhj | 11 | 10 | Ruffles | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | True | True | True | Kelpie | 0.421979 | |
| 1371 | 668872652652679168 | 322 | 566 | 2015-11-23 19:24:02 | This is Amélie. She is a confident white college girl. Extremely intimidating. Literally can't rn omg. 11/10 fab https://t.co/up0MHRxelf | 11 | 10 | Amélie | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | False | False | True | Teddy | 0.413379 | |
| 1372 | 668852170888998912 | 184 | 479 | 2015-11-23 18:02:38 | Say hello to Bobb. Bobb is a Golden High Fescue & a proud father of 8. Bobb sleeps while the little pups play. 11/10 https://t.co/OmxouCZ8IY | 11 | 10 | Bobb | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | True | True | True | Golden_retriever | 0.903529 | |
| 1373 | 668826086256599040 | 150 | 467 | 2015-11-23 16:18:59 | This is Banditt. He is a brown LaBeouf retriever. Loves cold weather. 4 smaller dogs are his sons (probably). 10/10 https://t.co/Ko7eCsFpnI | 10 | 10 | Banditt | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | True | True | True | Malinois | 0.640185 | |
| 1374 | 668779399630725120 | 409 | 749 | 2015-11-23 13:13:28 | This is Kevon. He is not physically or mentally prepared to start his Monday. 10/10 totes relatable https://t.co/YVAJgWHzPW | 10 | 10 | Kevon | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | True | True | False | Chesapeake_bay_retriever | 0.285508 | |
| 1375 | 668655139528511488 | 233 | 562 | 2015-11-23 04:59:42 | Say hello to Winifred. He is a Papyrus Hydrangea mix. Can tie shoes. 11/10 inspiring pup https://t.co/mwnBN6ZkPt | 11 | 10 | Winifred | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | True | True | True | Beagle | 0.319110 | |
| 1376 | 668636665813057536 | 528 | 1114 | 2015-11-23 03:46:18 | This is an Irish Rigatoni terrier named Berta. Completely made of rope. No eyes. Quite large. Loves to dance. 10/10 https://t.co/EM5fDykrJg | 10 | 10 | NaN | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | True | False | False | Komondor | 0.999956 | |
| 1377 | 668633411083464705 | 1788 | 3024 | 2015-11-23 03:33:22 | This is Churlie. He likes bagels. 10/10 https://t.co/k8P6FZlzAG | 10 | 10 | Churlie | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | True | True | True | Pekinese | 0.589011 | |
| 1378 | 668631377374486528 | 349 | 763 | 2015-11-23 03:25:17 | Meet Zeek. He is a grey Cumulonimbus. Zeek is hungry. Someone should feed Zeek asap. 5/10 absolutely terrifying https://t.co/fvVNScw8VH | 5 | 10 | Zeek | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | True | True | True | Miniature_schnauzer | 0.904549 | |
| 1379 | 668627278264475648 | 123 | 341 | 2015-11-23 03:09:00 | This is Timofy. He's a pilot for Southwest. It's Christmas morning & everyone has gotten kickass gifts but him. 9/10 https://t.co/3FuNbzyPwo | 9 | 10 | Timofy | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | True | True | True | French_bulldog | 0.965403 | |
| 1380 | 668614819948453888 | 341 | 654 | 2015-11-23 02:19:29 | Here is a horned dog. Much grace. Can jump over moons (dam!). Paws not soft. Bad at barking. 7/10 can still pet tho https://t.co/2Su7gmsnZm | 7 | 10 | NaN | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | False | False | False | Bustard | 0.380772 | |
| 1381 | 668567822092664832 | 62 | 265 | 2015-11-22 23:12:44 | This is Marvin. He can tie a bow tie better than me. 11/10 https://t.co/81kzPgqjQ3 | 11 | 10 | Marvin | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | True | True | True | Shih-tzu | 0.985649 | |
| 1382 | 668542336805281792 | 231 | 497 | 2015-11-22 21:31:28 | There's a lot going on here but in my honest opinion every dog pictured is pretty fabulous. 10/10 for all. Good dogs https://t.co/VvYVbsi6c3 | 10 | 10 | None | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | True | True | True | American_staffordshire_terrier | 0.267695 | |
| 1383 | 668537837512433665 | 79 | 265 | 2015-11-22 21:13:35 | This is Spark. He's nervous. Other dog hasn't moved in a while. Won't come when called. Doesn't fetch well 8/10&1/10 https://t.co/stEodX9Aba | 8 | 10 | Spark | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | True | True | True | Lakeland_terrier | 0.372988 | |
| 1384 | 668528771708952576 | 242 | 496 | 2015-11-22 20:37:34 | This is Gòrdón. He enjoys his razberrita by pool. Not a care in the world. 12/10 this dog has a better life than me https://t.co/zpdBQCcYgW | 12 | 10 | Gòrdón | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | True | True | True | Labrador_retriever | 0.195835 | |
| 1385 | 668507509523615744 | 116 | 345 | 2015-11-22 19:13:05 | This is a Birmingham Quagmire named Chuk. Loves to relax and watch the game while sippin on that iced mocha. 10/10 https://t.co/HvNg9JWxFt | 10 | 10 | NaN | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | True | True | True | Basenji | 0.055379 | |
| 1386 | 668496999348633600 | 146 | 436 | 2015-11-22 18:31:19 | This is Jo. Jo is a Swedish Queso. Tongue bigger than face. Tiny lil legs. Still no seatbelt. Simply careless. 8/10 https://t.co/Edy7B5vOp2 | 8 | 10 | Jo | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | True | True | True | Staffordshire_bullterrier | 0.412879 | |
| 1387 | 668484198282485761 | 253 | 453 | 2015-11-22 17:40:27 | Good teamwork between these dogs. One is on lookout while other eats. Long necks. Nice big house. 9/10s good pups https://t.co/uXgmECGYEB | 9 | 10 | None | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | True | True | True | Standard_poodle | 0.587372 | |
| 1388 | 668286279830867968 | 149 | 535 | 2015-11-22 04:33:59 | Meet Rusty. Rusty's dreaming of a world where Twitter never got rid of favorites. Looks like a happy world. 11/10 https://t.co/C8U6cxI1Jc | 11 | 10 | Rusty | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | True | True | True | Golden_retriever | 0.215944 | |
| 1389 | 668274247790391296 | 248 | 886 | 2015-11-22 03:46:11 | Meet Sophie. Her son just got in the car to leave for college. Very touching. Perfect dramatic sunlight. 10/10 yaass https://t.co/3j9kZRcpVB | 10 | 10 | Sophie | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.406374 | |
| 1390 | 668268907921326080 | 261 | 592 | 2015-11-22 03:24:58 | Here we have an Azerbaijani Buttermilk named Guss. He sees a demon baby Hitler behind his owner. 10/10 stays alert https://t.co/aeZykWwiJN | 10 | 10 | None | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | True | True | True | Pembroke | 0.484830 | |
| 1391 | 668248472370458624 | 523 | 1056 | 2015-11-22 02:03:45 | Say hello to Bisquick. He is a Brown Douglass Fir terrier. Very inbred. Looks terrified. 8/10 still cute tho https://t.co/1XYRh8N00K | 8 | 10 | Bisquick | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | True | True | True | Chihuahua | 0.734547 | |
| 1392 | 668237644992782336 | 3100 | 6614 | 2015-11-22 01:20:44 | This is Torque. He served his nickel. Better not owe Torque money. Torque will find u. 10/10 cause I'm scared of him https://t.co/TnSRDqYO5i | 10 | 10 | Torque | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | True | False | True | Chow | 0.809320 | |
| 1393 | 668221241640230912 | 215 | 537 | 2015-11-22 00:15:33 | These two dogs are Bo & Smittens. Smittens is trying out a new deodorant and wanted Bo to smell it. 10/10 true pals https://t.co/4pw1QQ6udh | 10 | 10 | None | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | True | True | True | Chow | 0.395101 | |
| 1394 | 668204964695683073 | 206 | 586 | 2015-11-21 23:10:52 | This is Ron. Ron's currently experiencing a brain freeze. Damn it Ron. 8/10 https://t.co/4ilfcR5SlK | 8 | 10 | Ron | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | True | True | True | Labrador_retriever | 0.655180 | |
| 1395 | 668190681446379520 | 210 | 696 | 2015-11-21 22:14:07 | This is Skittles. I would kidnap Skittles. Pink dog in back hasn't moved in days. 12/10 https://t.co/2wm0POA9N2 | 12 | 10 | Skittles | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | True | True | True | Blenheim_spaniel | 0.958402 | |
| 1396 | 668171859951755264 | 208 | 525 | 2015-11-21 20:59:20 | This is a Trans Siberian Kellogg named Alfonso. Huge ass eyeballs. Actually Dobby from Harry Potter. 7/10 https://t.co/XpseHBlAAb | 7 | 10 | NaN | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | True | False | False | Chihuahua | 0.664834 | |
| 1397 | 668142349051129856 | 306 | 592 | 2015-11-21 19:02:04 | This lil pup is Oliver. Hops around. Has wings but doesn't fly (lame). Annoying chirp. Won't catch tennis balls 2/10 https://t.co/DnhUw0aBM2 | 2 | 10 | None | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | False | False | False | Angora | 0.918834 | |
| 1398 | 668113020489474048 | 265 | 709 | 2015-11-21 17:05:31 | This is Alfie. He's that one hypocritical gym teacher who made you run laps. Great posture. Cool bench. 6/10 https://t.co/GCJzm3YsfX | 6 | 10 | Alfie | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | True | True | True | Pembroke | 0.548896 | |
| 1399 | 667924896115245057 | 119 | 318 | 2015-11-21 04:37:59 | This is Jiminy. He has always wanted to be a cheerleader. Can jump high enough to get on other dog. Go Jiminy. 9/10 https://t.co/fW6kIPFGD2 | 9 | 10 | Jiminy | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | True | False | True | Labrador_retriever | 0.209051 | |
| 1400 | 667902449697558528 | 396 | 905 | 2015-11-21 03:08:47 | This is Cleopatricia. She is a northern Paperback Maple. Set up hammock somehow. 9/10 would chill in hammock with https://t.co/sJeHdGUt0W | 9 | 10 | Cleopatricia | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | True | True | True | Norwegian_elkhound | 0.298881 | |
| 1401 | 667886921285246976 | 1180 | 2011 | 2015-11-21 02:07:05 | This is Erik. He's fucken massive. But also kind. Let's people hug him for free. Looks soft. 11/10 I would hug Erik https://t.co/MT7Q4aDQS1 | 11 | 10 | Erik | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | True | True | True | Pomeranian | 0.800432 | |
| 1402 | 667885044254572545 | 530 | 868 | 2015-11-21 01:59:37 | Meet Stu. Stu has stacks on stacks and an eye made of pure gold. 10/10 pay for my tuition pls https://t.co/7rkYZQdKEd | 10 | 10 | Stu | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | True | True | False | Malamute | 0.088530 | |
| 1403 | 667861340749471744 | 86 | 253 | 2015-11-21 00:25:26 | This is a Shotokon Macadamia mix named Cheryl. Sophisticated af. Looks like a disappointed librarian. Shh (lol) 9/10 https://t.co/J4GnJ5Swba | 9 | 10 | NaN | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | True | True | True | Malamute | 0.967275 | |
| 1404 | 667832474953625600 | 68 | 303 | 2015-11-20 22:30:44 | THE EYES 12/10\n\nI'm sorry. These are supposed to be funny but your dogs are too adorable https://t.co/z1xPTgVLc7 | 12 | 10 | None | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | True | False | True | Miniature_pinscher | 0.214200 | |
| 1405 | 667801013445750784 | 101 | 346 | 2015-11-20 20:25:43 | OMIGOD 12/10 https://t.co/SVMF4Frf1w | 12 | 10 | None | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | True | True | True | Flat-coated_retriever | 0.508392 | |
| 1406 | 667793409583771648 | 358 | 736 | 2015-11-20 19:55:30 | Dogs only please. Small cows and other non canines will not be tolerated. Sick tattoos tho 8/10 https://t.co/s1z7mX4c9O | 8 | 10 | None | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | True | True | True | Dalmatian | 0.535073 | |
| 1407 | 667773195014021121 | 61 | 243 | 2015-11-20 18:35:10 | This is a rare Hungarian Pinot named Jessiga. She is either mid-stroke or got stuck in the washing machine. 8/10 https://t.co/ZU0i0KJyqD | 8 | 10 | NaN | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | True | True | False | West_highland_white_terrier | 0.360465 | |
| 1408 | 667728196545200128 | 162 | 398 | 2015-11-20 15:36:22 | Meet Olive. He comes to spot by tree to reminisce of simpler times and truly admire his place in the universe. 11/10 https://t.co/LwrCwlWwPB | 11 | 10 | Olive | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | True | True | True | Kuvasz | 0.360159 | |
| 1409 | 667546741521195010 | 138 | 355 | 2015-11-20 03:35:20 | Here is George. George took a selfie of his new man bun and that is downright epic. (Also looks like Rand Paul) 9/10 https://t.co/afRtVsoIIb | 9 | 10 | George | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | True | True | False | Toy_poodle | 0.787424 | |
| 1410 | 667544320556335104 | 568 | 917 | 2015-11-20 03:25:43 | This is Kial. Kial is either wearing a cape, which would be rad, or flashing us, which would be rude. 10/10 or 4/10 https://t.co/8zcwIoiuqR | 10 | 10 | Kial | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | True | True | True | Pomeranian | 0.412893 | |
| 1411 | 667538891197542400 | 72 | 220 | 2015-11-20 03:04:08 | This is a southwest Coriander named Klint. Hat looks expensive. Still on house arrest :(\n9/10 https://t.co/IQTOMqDUIe | 9 | 10 | NaN | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | True | True | True | Yorkshire_terrier | 0.618957 | |
| 1412 | 667534815156183040 | 576 | 866 | 2015-11-20 02:47:56 | This is Frank (pronounced "Fronq"). Too many boxing gloves, not enough passion. Frank is a lover not a fighter. 8/10 https://t.co/CpPxD28IpV | 8 | 10 | Frank | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | True | True | True | Pembroke | 0.435254 | |
| 1413 | 667530908589760512 | 264 | 501 | 2015-11-20 02:32:25 | Meet Naphaniel. He doesn't necessarily enjoy his day job, but he's damn good at it. 10/10 https://t.co/xoRWyQTcmy | 10 | 10 | Naphaniel | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | True | True | True | Golden_retriever | 0.633037 | |
| 1414 | 667517642048163840 | 203 | 389 | 2015-11-20 01:39:42 | This is Dook & Milo. Dook is struggling to find who he really is and Milo is terrified of what that might be. 8/10s https://t.co/fh5KflzBR0 | 8 | 10 | Dook | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | True | True | True | Italian_greyhound | 0.125176 | |
| 1415 | 667509364010450944 | 2272 | 7148 | 2015-11-20 01:06:48 | This a Norwegian Pewterschmidt named Tickles. Ears for days. 12/10 I care deeply for Tickles https://t.co/0aDF62KVP7 | 12 | 10 | None | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | True | True | True | Beagle | 0.636169 | |
| 1416 | 667502640335572993 | 231 | 563 | 2015-11-20 00:40:05 | Say hello to Hall and Oates. Oates is winking and Hall is contemplating the artistic entropy of the universe. 11/10s https://t.co/n5Wtb5Hvsl | 11 | 10 | Hall | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | True | True | True | Labrador_retriever | 0.996709 | |
| 1417 | 667495797102141441 | 294 | 565 | 2015-11-20 00:12:54 | This is Philippe from Soviet Russia. Commanding leader. Misplaced other boot. Hung flag himself. 9/10 charismatic af https://t.co/5NhPV8E45i | 9 | 10 | Philippe | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | True | False | False | Chihuahua | 0.143957 | |
| 1418 | 667491009379606528 | 242 | 559 | 2015-11-19 23:53:52 | Two dogs in this one. Both are rare Jujitsu Pythagoreans. One slightly whiter than other. Long legs. 7/10 and 8/10 https://t.co/ITxxcc4v9y | 7 | 10 | None | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | True | False | False | Borzoi | 0.852088 | |
| 1419 | 667470559035432960 | 102 | 273 | 2015-11-19 22:32:36 | This is a northern Wahoo named Kohl. He runs this town. Chases tumbleweeds. Draws gun wicked fast. 11/10 legendary https://t.co/J4vn2rOYFk | 11 | 10 | NaN | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | True | True | True | Toy_poodle | 0.304175 | |
| 1420 | 667455448082227200 | 66 | 203 | 2015-11-19 21:32:34 | This is Reese and Twips. Reese protects Twips. Both think they're too good for seat belts. Simply reckless. 7/10s https://t.co/uLzRi1drVK | 7 | 10 | Reese | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | True | True | True | Tibetan_terrier | 0.676376 | |
| 1421 | 667453023279554560 | 96 | 327 | 2015-11-19 21:22:56 | Meet Cupcake. I would do unspeakable things for Cupcake. 11/10 https://t.co/6uLCWR9Efa | 11 | 10 | Cupcake | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | True | True | True | Labrador_retriever | 0.825670 | |
| 1422 | 667435689202614272 | 89 | 326 | 2015-11-19 20:14:03 | Ermergerd 12/10 https://t.co/PQni2sjPsm | 12 | 10 | None | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | True | True | True | Rottweiler | 0.999091 | |
| 1423 | 667405339315146752 | 234 | 489 | 2015-11-19 18:13:27 | This is Biden. Biden just tripped... 7/10 https://t.co/3Fm9PwLju1 | 7 | 10 | Biden | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | True | True | True | Saint_bernard | 0.381377 | |
| 1424 | 667393430834667520 | 60 | 211 | 2015-11-19 17:26:08 | This is Fwed. He is a Canadian Asian Taylormade. Was having a blast until pink spiky football attacked. 8/10 https://t.co/A37eGLz5WS | 8 | 10 | Fwed | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | True | True | True | Papillon | 0.557009 | |
| 1425 | 667369227918143488 | 173 | 385 | 2015-11-19 15:49:57 | Here we have a neat pup. Very white. Cool shades. Upcoming cruise? Great dog 10/10 https://t.co/LEaviT37v1 | 10 | 10 | None | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | False | False | False | Teddy | 0.709545 | |
| 1426 | 667211855547486208 | 258 | 516 | 2015-11-19 05:24:37 | This is Genevieve. She is a golden retriever cocktail mix. Comfortable close to wall. Shows no emotions. 9/10 https://t.co/azEoGqVonH | 9 | 10 | Genevieve | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | True | True | True | Golden_retriever | 0.462556 | |
| 1427 | 667200525029539841 | 282 | 658 | 2015-11-19 04:39:35 | This is Joshwa. He is a fuckboy supreme. He clearly relies on owner but doesn't respect them. Dreamy eyes tho 11/10 https://t.co/60xYFRATPZ | 11 | 10 | Joshwa | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | True | True | True | Siberian_husky | 0.694904 | |
| 1428 | 667192066997374976 | 115 | 414 | 2015-11-19 04:05:59 | *takes several long deep breaths* omg omg oMG OMG OMG OMGSJYBSNDUYWJO 12/10 https://t.co/QCugm5ydl6 | 12 | 10 | None | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | True | True | True | Rottweiler | 0.283640 | |
| 1429 | 667182792070062081 | 6618 | 15075 | 2015-11-19 03:29:07 | This is Timison. He just told an awful joke but is still hanging on to the hope that you'll laugh with him. 10/10 https://t.co/s2yYuHabWl | 10 | 10 | Timison | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | True | True | True | Golden_retriever | 0.949892 | |
| 1430 | 667177989038297088 | 58 | 200 | 2015-11-19 03:10:02 | This is a Dasani Kingfisher from Maine. His name is Daryl. Daryl doesn't like being swallowed by a panda. 8/10 https://t.co/jpaeu6LNmW | 8 | 10 | NaN | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | True | True | True | Vizsla | 0.259249 | |
| 1431 | 667176164155375616 | 484 | 640 | 2015-11-19 03:02:47 | These are strange dogs. All have toupees. Long neck for dogs. In a shed of sorts? Work in groups? 4/10 still petable https://t.co/PZxSarAfSN | 4 | 10 | None | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.318981 | |
| 1432 | 667174963120574464 | 88 | 262 | 2015-11-19 02:58:01 | This is Clarence. His face says he doesn't want to be a donkey, but his tail is super pumped about it. 9/10 https://t.co/fGDWgukcBs | 9 | 10 | Clarence | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | True | True | True | Toy_poodle | 0.266437 | |
| 1433 | 667171260800061440 | 97 | 235 | 2015-11-19 02:43:18 | Say hello to Kenneth. He likes Reese's Puffs. 10/10 https://t.co/6RHNRsByOY | 10 | 10 | Kenneth | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | True | True | True | Giant_schnauzer | 0.841265 | |
| 1434 | 667165590075940865 | 1241 | 2819 | 2015-11-19 02:20:46 | This is Churlie. AKA Fetty Woof. Lost eye saving a school bus full of toddlers from a tsunami. Great guy. 10/10 https://t.co/li2XYBVuAY | 10 | 10 | Churlie | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | True | True | True | Miniature_pinscher | 0.140173 | |
| 1435 | 667160273090932737 | 66 | 268 | 2015-11-19 01:59:39 | This is Bradlay. He is a Ronaldinho Matsuyama mix. Can also mountain bike (wow). Loves that blue light lime. 11/10 https://t.co/DKhgkMx4N1 | 11 | 10 | Bradlay | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | True | True | True | Golden_retriever | 0.471351 | |
| 1436 | 667152164079423490 | 18285 | 49720 | 2015-11-19 01:27:25 | This is Pipsy. He is a fluffball. Enjoys traveling the sea & getting tangled in leash. 12/10 I would kill for Pipsy https://t.co/h9R0EwKd9X | 12 | 10 | Pipsy | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | True | True | True | Toy_poodle | 0.535411 | |
| 1437 | 667138269671505920 | 2387 | 4851 | 2015-11-19 00:32:12 | Extremely intelligent dog here. Has learned to walk like human. Even has his own dog. Very impressive 10/10 https://t.co/0DvHAMdA4V | 10 | 10 | None | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | True | True | True | West_highland_white_terrier | 0.747713 | |
| 1438 | 667119796878725120 | 135 | 346 | 2015-11-18 23:18:48 | This is Gabe. He is a southern Baklava. Gabe has always wanted to fit in with the other bananas. 10/10 fabulous https://t.co/3LZrJzg3BJ | 10 | 10 | Gabe | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | True | True | True | Pembroke | 0.741563 | |
| 1439 | 667090893657276420 | 132 | 349 | 2015-11-18 21:23:57 | This is Clybe. He is an Anemone Valdez. One ear works. Can look in 2 different directions at once. Tongue slip. 7/10 https://t.co/Ks0jZtdIrr | 7 | 10 | Clybe | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | True | True | True | Chihuahua | 0.959514 | |
| 1440 | 667073648344346624 | 134 | 425 | 2015-11-18 20:15:26 | Here is Dave. He is actually just a skinny legged seal. Happy birthday Dave. 10/10 https://t.co/DPSamreuRq | 10 | 10 | Dave | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | True | True | True | Chihuahua | 0.483682 | |
| 1441 | 667062181243039745 | 57 | 227 | 2015-11-18 19:29:52 | This is Keet. He is a Floridian Amukamara. Absolutely epic propeller hat. Pristine tongue. Nice plaid. 10/10 https://t.co/tz1lpuvXLA | 10 | 10 | Keet | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | True | True | True | Chesapeake_bay_retriever | 0.825678 | |
| 1442 | 667044094246576128 | 54 | 198 | 2015-11-18 18:17:59 | 12/10 gimme now https://t.co/QZAnwgnOMB | 12 | 10 | None | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | True | True | False | Golden_retriever | 0.765266 | |
| 1443 | 666835007768551424 | 83 | 222 | 2015-11-18 04:27:09 | These are Peruvian Feldspars. Their names are Cupit and Prencer. Both resemble Rand Paul. Sick outfits 10/10 & 10/10 https://t.co/ZnEMHBsAs1 | 10 | 10 | None | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | True | True | False | Airedale | 0.448459 | |
| 1444 | 666826780179869698 | 105 | 266 | 2015-11-18 03:54:28 | 12/10 simply brilliant pup https://t.co/V6ZzG45zzG | 12 | 10 | None | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | True | False | True | Maltese_dog | 0.359383 | |
| 1445 | 666817836334096384 | 267 | 540 | 2015-11-18 03:18:55 | This is Jeph. He is a German Boston Shuttlecock. Enjoys couch. Lost body during French Revolution. True hero 9/10 https://t.co/8whlkYw3mO | 9 | 10 | Jeph | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | True | True | True | Miniature_schnauzer | 0.496953 | |
| 1446 | 666804364988780544 | 95 | 250 | 2015-11-18 02:25:23 | This is Jockson. He is a Pinnacle Sagittarius. Fancy bandana. Enjoys lightly sucking on hot dog in nature. 8/10 https://t.co/RdKbAOEpDK | 8 | 10 | Jockson | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | True | True | True | English_setter | 0.328792 | |
| 1447 | 666781792255496192 | 211 | 404 | 2015-11-18 00:55:42 | This is a purebred Bacardi named Octaviath. Can shoot spaghetti out of mouth. 10/10 https://t.co/uEvsGLOFHa | 10 | 10 | NaN | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | True | True | True | Italian_greyhound | 0.618316 | |
| 1448 | 666739327293083650 | 71 | 244 | 2015-11-17 22:06:57 | This is Lugan. He is a Bohemian Rhapsody. Very confused dog. Thinks his name is Rocky. Not amused by the snows 10/10 https://t.co/tI3uFLDHBI | 10 | 10 | Lugan | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | True | True | True | Miniature_poodle | 0.546933 | |
| 1449 | 666701168228331520 | 234 | 449 | 2015-11-17 19:35:19 | This is a golden Buckminsterfullerene named Johm. Drives trucks. Lumberjack (?). Enjoys wall. 8/10 would hug softly https://t.co/uQbZJM2DQB | 8 | 10 | NaN | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | True | True | True | Labrador_retriever | 0.887707 | |
| 1450 | 666691418707132416 | 51 | 196 | 2015-11-17 18:56:35 | This is Christoper. He is a spotted Penne. Can easily navigate stairs. 8/10 https://t.co/bg4TqvvkuF | 8 | 10 | Christoper | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | True | True | True | German_shepherd | 0.975401 | |
| 1451 | 666649482315059201 | 608 | 923 | 2015-11-17 16:09:56 | Cool dog. Enjoys couch. Low monotone bark. Very nice kicks. Pisses milk (must be rare). Can't go down stairs. 4/10 https://t.co/vXMKrJC81s | 4 | 10 | None | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | True | True | True | Border_collie | 0.447803 | |
| 1452 | 666644823164719104 | 88 | 238 | 2015-11-17 15:51:26 | This is Jimothy. He is a Botwanian Gouda. Can write (impressive). Very erect tail. Still looking for hoco date. 9/10 https://t.co/LEkZjZxESQ | 9 | 10 | Jimothy | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | True | True | True | Ibizan_hound | 0.044333 | |
| 1453 | 666454714377183233 | 223 | 545 | 2015-11-17 03:16:00 | I'll name the dogs from now on. This is Kreggory. He does parkour. 10/10 https://t.co/uPqPeXAcua | 10 | 10 | Kreggory | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | True | True | True | Dalmatian | 0.278954 | |
| 1454 | 666447344410484738 | 23 | 107 | 2015-11-17 02:46:43 | This is Scout. She is a black Downton Abbey. Isn't afraid to get dirty. 9/10 nothing bad to say https://t.co/kH60oka1HW | 9 | 10 | Scout | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | True | True | True | Curly-coated_retriever | 0.322084 | |
| 1455 | 666437273139982337 | 52 | 131 | 2015-11-17 02:06:42 | Here we see a lone northeastern Cumberbatch. Half ladybug. Only builds with bricks. Very confident with body. 7/10 https://t.co/7LtjBS0GPK | 7 | 10 | None | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | True | True | True | Chihuahua | 0.671853 | |
| 1456 | 666435652385423360 | 54 | 170 | 2015-11-17 02:00:15 | "Can you behave? You're ruining my wedding day"\nDOG: idgaf this flashlight tastes good as hell\n\n10/10 https://t.co/GlFZPzqcEU | 10 | 10 | None | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | True | False | False | Chesapeake_bay_retriever | 0.184130 | |
| 1457 | 666428276349472768 | 90 | 171 | 2015-11-17 01:30:57 | Here we have an Austrian Pulitzer. Collectors edition. Levitates (?). 7/10 would garden with https://t.co/NMQq6HIglK | 7 | 10 | None | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | True | True | True | Pembroke | 0.371361 | |
| 1458 | 666421158376562688 | 118 | 327 | 2015-11-17 01:02:40 | *internally screaming* 12/10 https://t.co/YMcrXC2Y6R | 12 | 10 | None | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | True | True | True | Blenheim_spaniel | 0.906777 | |
| 1459 | 666418789513326592 | 48 | 129 | 2015-11-17 00:53:15 | This is Walter. He is an Alaskan Terrapin. Loves outdated bandanas. One ear still working. Cool house plant. 10/10 https://t.co/qXpcwENTvn | 10 | 10 | Walter | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | True | True | True | Toy_terrier | 0.149680 | |
| 1460 | 666407126856765440 | 44 | 113 | 2015-11-17 00:06:54 | This is a southern Vesuvius bumblegruff. Can drive a truck (wow). Made friends with 5 other nifty dogs (neat). 7/10 https://t.co/LopTBkKa8h | 7 | 10 | NaN | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | True | True | True | Black-and-tan_coonhound | 0.529139 | |
| 1461 | 666396247373291520 | 92 | 172 | 2015-11-16 23:23:41 | Oh goodness. A super rare northeast Qdoba kangaroo mix. Massive feet. No pouch (disappointing). Seems alert. 9/10 https://t.co/Dc7b0E8qFE | 9 | 10 | None | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | True | True | True | Chihuahua | 0.978108 | |
| 1462 | 666373753744588802 | 100 | 194 | 2015-11-16 21:54:18 | Those are sunglasses and a jean jacket. 11/10 dog cool af https://t.co/uHXrPkUEyl | 11 | 10 | None | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | True | True | True | Soft-coated_wheaten_terrier | 0.326467 | |
| 1463 | 666353288456101888 | 77 | 229 | 2015-11-16 20:32:58 | Here we have a mixed Asiago from the Galápagos Islands. Only one ear working. Big fan of marijuana carpet. 8/10 https://t.co/tltQ5w9aUO | 8 | 10 | None | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | True | True | True | Malamute | 0.336874 | |
| 1464 | 666345417576210432 | 146 | 307 | 2015-11-16 20:01:42 | Look at this jokester thinking seat belt laws don't apply to him. Great tongue tho 10/10 https://t.co/VFKG1vxGjB | 10 | 10 | None | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | True | True | True | Golden_retriever | 0.858744 | |
| 1465 | 666287406224695296 | 71 | 152 | 2015-11-16 16:11:11 | This is an Albanian 3 1/2 legged Episcopalian. Loves well-polished hardwood flooring. Penis on the collar. 9/10 https://t.co/d9NcXFKwLv | 9 | 10 | NaN | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | True | True | True | Maltese_dog | 0.857531 | |
| 1466 | 666273097616637952 | 82 | 184 | 2015-11-16 15:14:19 | Can take selfies 11/10 https://t.co/ws2AMaNwPW | 11 | 10 | None | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | True | True | True | Italian_greyhound | 0.176053 | |
| 1467 | 666102155909144576 | 16 | 81 | 2015-11-16 03:55:04 | Oh my. Here you are seeing an Adobe Setter giving birth to twins!!! The world is an amazing place. 11/10 https://t.co/11LvqN4WLq | 11 | 10 | None | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | True | True | True | English_setter | 0.298617 | |
| 1468 | 666099513787052032 | 73 | 164 | 2015-11-16 03:44:34 | Can stand on stump for what seems like a while. Built that birdhouse? Impressive. Made friends with a squirrel. 8/10 https://t.co/Ri4nMTLq5C | 8 | 10 | None | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | True | True | True | Lhasa | 0.582330 | |
| 1469 | 666094000022159362 | 79 | 169 | 2015-11-16 03:22:39 | This appears to be a Mongolian Presbyterian mix. Very tired. Tongue slip confirmed. 9/10 would lie down with https://t.co/mnioXo3IfP | 9 | 10 | None | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | True | True | True | Bloodhound | 0.195217 | |
| 1470 | 666082916733198337 | 47 | 121 | 2015-11-16 02:38:37 | Here we have a well-established sunblockerspaniel. Lost his other flip-flop. 6/10 not very waterproof https://t.co/3RU6x0vHB7 | 6 | 10 | None | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | True | True | True | Pug | 0.489814 | |
| 1471 | 666073100786774016 | 174 | 335 | 2015-11-16 01:59:36 | Let's hope this flight isn't Malaysian (lol). What a dog! Almost completely camouflaged. 10/10 I trust this pilot https://t.co/Yk6GHE9tOY | 10 | 10 | None | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | True | True | True | Walker_hound | 0.260857 | |
| 1472 | 666071193221509120 | 67 | 154 | 2015-11-16 01:52:02 | Here we have a northern speckled Rhododendron. Much sass. Gives 0 fucks. Good tongue. 9/10 would caress sensually https://t.co/ZoL8kq2XFx | 9 | 10 | None | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | True | True | True | Gordon_setter | 0.503672 | |
| 1473 | 666063827256086533 | 232 | 496 | 2015-11-16 01:22:45 | This is the happiest dog you will ever see. Very committed owner. Nice couch. 10/10 https://t.co/RhUEAloehK | 10 | 10 | NaN | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | True | True | True | Golden_retriever | 0.775930 | |
| 1474 | 666058600524156928 | 61 | 115 | 2015-11-16 01:01:59 | Here is the Rand Paul of retrievers folks! He's probably good at poker. Can drink beer (lol rad). 8/10 good dog https://t.co/pYAJkAe76p | 8 | 10 | NaN | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | True | True | True | Miniature_poodle | 0.201493 | |
| 1475 | 666055525042405380 | 261 | 448 | 2015-11-16 00:49:46 | Here is a Siberian heavily armored polar bear mix. Strong owner. 10/10 I would do unspeakable things to pet this dog https://t.co/rdivxLiqEt | 10 | 10 | NaN | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | True | True | False | Chow | 0.692517 | |
| 1476 | 666050758794694657 | 60 | 136 | 2015-11-16 00:30:50 | This is a truly beautiful English Wilson Staff retriever. Has a nice phone. Privileged. 10/10 would trade lives with https://t.co/fvIbQfHjIe | 10 | 10 | NaN | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | True | True | True | Bernese_mountain_dog | 0.651137 | |
| 1477 | 666049248165822465 | 41 | 111 | 2015-11-16 00:24:50 | Here we have a 1949 1st generation vulpix. Enjoys sweat tea and Fox News. Cannot be phased. 5/10 https://t.co/4B7cOc1EDq | 5 | 10 | None | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | True | True | True | Miniature_pinscher | 0.560311 | |
| 1478 | 666044226329800704 | 147 | 311 | 2015-11-16 00:04:52 | This is a purebred Piers Morgan. Loves to Netflix and chill. Always looks like he forgot to unplug the iron. 6/10 https://t.co/DWnyCjf2mx | 6 | 10 | NaN | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | True | True | True | Rhodesian_ridgeback | 0.408143 | |
| 1479 | 666033412701032449 | 47 | 128 | 2015-11-15 23:21:54 | Here is a very happy pup. Big fan of well-maintained decks. Just look at that tongue. 9/10 would cuddle af https://t.co/y671yMhoiR | 9 | 10 | NaN | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | True | True | True | German_shepherd | 0.596461 | |
| 1480 | 666020888022790149 | 532 | 2535 | 2015-11-15 22:32:08 | Here we have a Japanese Irish Setter. Lost eye in Vietnam (?). Big fan of relaxing on stair. 8/10 would pet https://t.co/BLDqew2Ijj | 8 | 10 | None | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | True | True | True | Welsh_springer_spaniel | 0.465074 |
final_df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 1481 entries, 0 to 1480 Data columns (total 16 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 1481 non-null int64 1 retweet_count 1481 non-null int64 2 favorite_count 1481 non-null int64 3 timestamp 1481 non-null datetime64[ns] 4 text 1481 non-null object 5 rating_numerator 1481 non-null int64 6 rating_denominator 1481 non-null int64 7 name 1411 non-null object 8 dog_stage 1481 non-null object 9 jpg_url 1481 non-null object 10 img_num 1481 non-null int64 11 p1_dog 1481 non-null bool 12 p2_dog 1481 non-null bool 13 p3_dog 1481 non-null bool 14 dog_breed 1481 non-null object 15 confidence_levels 1481 non-null float64 dtypes: bool(3), datetime64[ns](1), float64(1), int64(6), object(5) memory usage: 166.3+ KB
final_df.shape
(1481, 16)
Save gathered, assessed, and cleaned master dataset to a CSV file named "twitter_archive_master.csv". PS: (I actually prefer using twitter_dogs)
# Store the clean dataframe in a CSV file named twitter_archive_master.csv
final_df.to_csv('twitter_archive_master.csv',index= False)
# load data and view
df = pd.read_csv('twitter_archive_master.csv')
df.head(5)
| tweet_id | retweet_count | favorite_count | timestamp | text | rating_numerator | rating_denominator | name | dog_stage | jpg_url | img_num | p1_dog | p2_dog | p3_dog | dog_breed | confidence_levels | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892177421306343426 | 6514 | 33819 | 2017-08-01 00:17:27 | This is Tilly. She's just checking pup on you. Hopes you're doing ok. If not, she's available for pats, snugs, boops, the whole bit. 13/10 https://t.co/0Xxu71qeIV | 13 | 10 | Tilly | NaN | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | True | True | True | Chihuahua | 0.323581 |
| 1 | 891815181378084864 | 4328 | 25461 | 2017-07-31 00:18:03 | This is Archie. He is a rare Norwegian Pouncing Corgo. Lives in the tall grass. You never know when one may strike. 12/10 https://t.co/wUnZnhtVJB | 12 | 10 | Archie | NaN | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | True | True | True | Chihuahua | 0.716012 |
| 2 | 891327558926688256 | 9774 | 41048 | 2017-07-29 16:00:24 | This is Franklin. He would like you to stop calling him "cute." He is a very fierce shark and should be respected as such. 12/10 #BarkWeek https://t.co/AtUZn91f7f | 12 | 10 | Franklin | NaN | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | True | True | True | Basset | 0.555712 |
| 3 | 891087950875897856 | 3261 | 20562 | 2017-07-29 00:08:17 | Here we have a majestic great white breaching off South Africa's coast. Absolutely h*ckin breathtaking. 13/10 (IG: tucker_marlo) #BarkWeek https://t.co/kQ04fDDRmh | 13 | 10 | None | NaN | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | True | True | False | Chesapeake_bay_retriever | 0.425595 |
| 4 | 890971913173991426 | 2158 | 12041 | 2017-07-28 16:27:12 | Meet Jax. He enjoys ice cream so much he gets nervous around it. 13/10 help Jax enjoy more things by clicking below\n\nhttps://t.co/Zr4hWfAs1H https://t.co/tVJBRMnhxl | 13 | 10 | Jax | NaN | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | True | True | False | Appenzeller | 0.341703 |
In this section, analyze and visualize your wrangled data. You must produce at least three (3) insights and one (1) visualization.
Dog breeds with the highest ratings
Most popular dog breeds: This can be calculated based on the engagement of the tweet, number of tweets,retweets and likes(favs)
Accuracy of the predictions made by checking if there is a positive correlation between the img_num column and the confidence levels columns.
The img_num column is an indication of how confident the neural network prediction is, ideally as the confidence value increases, the img_num is supposed to decrease(an indication of a confident prediction). This can be analyzed by plotting a scatterplot of img_num against the confidence levels columns.
df.img_num.mean()
1.1654287643484131
df.confidence_levels.mean()
0.6078582949358543
base_color = sn.color_palette()[4]
sn.regplot(data= df, x = 'img_num',y = 'confidence_levels', color = base_color).set(title = 'Correlation of confidence levels and img_num');
plt.gca().invert_xaxis()
#most popular dog breeds based on number of tweets
df.dog_breed.value_counts()[10::-1].plot(kind = 'barh',x= 'count',y ='dog_breed', title = 'Top 10 Popular Dog Dreeds Based On number of Tweets');
#Most popular dogs based on retweets and favourit counts
# creation of the dataframe that will be used,involving only certain columns
columns = ['dog_breed', 'retweet_count', 'favorite_count']
df_breed = df[columns]
breed_retweet = df_breed.groupby('dog_breed')['retweet_count'].agg('sum').sort_values(ascending=False)[10::-1]
breed_favorite = df_breed.groupby('dog_breed')['favorite_count'].agg('sum').sort_values(ascending=False)[10::-1]
# Plot horizontal bar chart
fig, (ax1, ax2) = plt.subplots(2, 1)
# Top 10 breeds based on number of retweets
breed_retweet.plot.barh(ax=ax1, figsize=(8,12), color='#6A6ACD')
ax1.set_title("Top 10 Breeds Based On Retweets Count")
# Top 10 breeds based on number of favorite
breed_favorite.plot.barh(ax=ax2, color='#2E8B58')
ax2.set_title("Top 10 Breeds Based on Favorite Count")
fig.subplots_adjust(hspace=0.5)
The five most popular dog breeds based on tweets,retweets and favorite counts are the golden_retriever(no 1),labrador_retriever(no2),pembroke(no3),chihuahua(no4) and samoyed(no 5).These breeds constantly topped the charts as can be seen from the plots above.Positions 1-4 was constantly dominated by the dog_breeds holding the positions across the 3 parameters used for the analysis.The samoyed breed was the 5th most popular dog based on the retweets and favorites counts , but not tweets.Although it came in at no 7 based on tweets. These plots reveals that these dog breeds are highly popular and most talked/tweeted about amongst twitter users
# Make a list of top popular dog breeds based on number of tweets
top_tweet_count = df.dog_breed.value_counts().sort_values(ascending=False).nlargest(10).rename_axis('dog_breed').reset_index(name='tweet_counts')
breed_list = top_tweet_count.dog_breed.tolist()
# Average rating for top breeds based on number of tweets
avg_rating = df.groupby('dog_breed').rating_numerator.mean().sort_values(ascending=False).rename_axis('breed').reset_index(name='avg_rating')
breed_avg_rating = avg_rating[avg_rating['breed'].isin(breed_list)]
breed_avg_rating
| breed | avg_rating | |
|---|---|---|
| 12 | Samoyed | 11.666667 |
| 13 | Chow | 11.600000 |
| 14 | Golden_retriever | 11.544118 |
| 20 | Pembroke | 11.411765 |
| 31 | Pomeranian | 11.189189 |
| 37 | Labrador_retriever | 11.106383 |
| 40 | Toy_poodle | 11.055556 |
| 54 | Malamute | 10.821429 |
| 63 | Chihuahua | 10.657895 |
| 86 | Pug | 10.240741 |
Once again,for dogs with highest ratings amongst twitter users, we have a list similar to the popularity list earlier. The samoyed breed has the highest rating followed by the chow breed,golden retriever, pembroke,labrador retriever, toy_poodle , malamute, chihuahua and pug. The dog breeds with highest ratings all have at least appeared once in the most popular breeds contest using the retweets, tweets and favorite counts. This arouses a new insight : is there any correlation between ratings and popularity?
breed_avg_rating.plot(kind='bar', x='breed', y='avg_rating')
plt.title(' Dog Breeds With Highest Ratings')
plt.ylabel("Average_rating")
plt.xlabel("Breed");
DOG BREEDS WITH LEAST RATINGS
# Make a list of least popular dog breeds based on number of tweets
top_tweet_count = df.dog_breed.value_counts().sort_values(ascending=False).nsmallest(10).rename_axis('dog_breed').reset_index(name='tweet_counts')
breed_list = top_tweet_count.dog_breed.tolist()
# Average rating for top breeds based on number of tweets
avg_rating = df.groupby('dog_breed').rating_numerator.mean().sort_values(ascending=True).rename_axis('breed').reset_index(name='least_avg_rating')
breed_avg_rating = avg_rating[avg_rating['breed'].isin(breed_list)]
breed_avg_rating
| breed | least_avg_rating | |
|---|---|---|
| 0 | Japanese_spaniel | 5.0 |
| 4 | African_hunting_dog | 8.0 |
| 7 | Scotch_terrier | 9.0 |
| 8 | Picket_fence | 9.0 |
| 25 | Groenendael | 10.0 |
| 28 | Ice_lolly | 10.0 |
| 72 | Entlebucher | 11.0 |
| 109 | Standard_schnauzer | 12.0 |
| 110 | Rotisserie | 12.0 |
| 113 | Silky_terrier | 12.0 |
The dog breed with least rating is the japanese_spaniel followed by the african hunting dog and scotch terrier with a tie in number 2.
https://www.geeksforgeeks.org/drop-rows-from-the-dataframe-based-on-certain-condition-applied-on-a-column/ https://sparkbyexamples.com/pandas/pandas-merge-multiple-dataframes-2/ https://stackoverflow.com/questions/16424493/pandas-setting-no-of-max-rowsk https://www.geeksforgeeks.org/how-to-drop-rows-that-contain-a-specific-value-in-pandas/ https://stackoverflow.com/questions/18172851/deleting-dataframe-row-in-pandas-based-on-column-value https://stackoverflow.com/questions/43269548/pandas-how-to-remove-rows-from-a-dataframe-based-on-a-list https://github.com/Monicajhe/Wrangle-and-Analyze-Data/blob/master/wrangle_act.ipynb https://seaborn.pydata.org/examples/part_whole_bars.html